<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Justin Wright &#187; Social Media</title>
	<atom:link href="http://www.lifeofjustin.com/category/social-media/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lifeofjustin.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 03:45:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Use FriendFeed As A Lifestream</title>
		<link>http://www.lifeofjustin.com/use-friendfeed-as-a-lifestream-2708/</link>
		<comments>http://www.lifeofjustin.com/use-friendfeed-as-a-lifestream-2708/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 16:42:43 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/?p=2708</guid>
		<description><![CDATA[If you haven't noticed, I've been doing some cleaning up on my blog over the last week and a half. I've removed a few things from my single post pages, as well as made some changes to my sidebar. The main thing I did with the sidebar is integrated a lifestream showing all my updates from various websites and social networks. Here's how I did it:]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t noticed, I&#8217;ve been doing some cleaning up on my blog over the last week and a half. I&#8217;ve removed a few things from my single post pages, as well as made some changes to my sidebar. The main thing I did with the sidebar is integrated a lifestream showing all my updates from various websites and social networks. Here&#8217;s how I did it:</p>
<h3>1. Decided Which Tool To Use For The Content</h3>
<p>There are a few programs out there that will create a lifestream for your blog or website. However, none of them are as easy to use as a simple FriendFeed widget. I actually used the same widget I was using in the past, which looked exactly like this:</p>
<p><img class="aligncenter size-full wp-image-2709" title="friendfeed-border" src="http://www.lifeofjustin.com/wp-content/uploads/2009/07/friendfeed-border.png" alt="friendfeed-border" width="320" height="450" />As you can see, it&#8217;s a bit ugly. The border didn&#8217;t match anything else in my sidebar and it looked a little out of place. The major drawback to using the FriendFeed widget it that it doesn&#8217;t give you many options for customizing it when you set it up. Luckily they do have some custom CSS settings you can use. Which leads us to the next step.</p>
<h3>2. Styled The FriendFeed Widget</h3>
<p>The next step was a little tricky since I couldn&#8217;t get it to work at first. FriendFeed gives you some CSS codes to use, which can be added to your active WordPress theme stylesheet. I messed around with it for awhile and ended up adding the follow code to my stylesheet:</p>
<pre><strong>#friendfeed </strong>{<span style="text-decoration: underline;"> <a>border</a>: 0px !important </span>}<strong>
.widget </strong>{<span style="text-decoration: underline;"> <a>border</a>: 0px !important; <a>font-family</a>: Georgia, "Times New Roman", Times;</span>}<strong>
.feed </strong>{<span style="text-decoration: underline;"> <a>border</a>: 0px !important; <a>font-family</a>: Georgia, "Times New Roman", Times;</span>}<strong>
.body </strong>{<span style="text-decoration: underline;"> <a>border</a>: 0px !important </span>}<strong>
.logo </strong>{<span style="text-decoration: underline;"> <a>border</a>: 0px !important </span>}</pre>
<p>As you can see, I went a little overboard with the &#8220;border: 0px&#8221; but it managed to remove it. I also added the font-family my theme uses so it matches the rest of my site.</p>
<p>Here&#8217;s what the finished widget looks like:</p>
<p><img class="aligncenter size-full wp-image-2710" title="friendfeed-no-border" src="http://www.lifeofjustin.com/wp-content/uploads/2009/07/friendfeed-no-border.png" alt="friendfeed-no-border" width="308" height="518" />It looks a lot better in my opinion. I&#8217;m a big fan of no borders because it makes it look a lot cleaner.</p>
<h3>3: Added Some Links Below The Widget</h3>
<p>As you can see in the picture above, I also added some links below the widget. This was simple html code that I added directly below the widget. For the subscribe link, I simply pointed it to my FriendFeed page since I prefer people going there. You could also make the link go directly to the RSS feed of your FriendFeed.</p>
<p>I also decided to add a &#8220;view full lifestream&#8221; link, which I&#8217;ll talk about in the next step.</p>
<h3>4: Created A Lifestream Page</h3>
<p>After debating for awhile about whether or not I wanted to have a lifestream page, I decided to go with it. It allows me to list a lot more content for those who want to view it without forcing everyone to see my super long sidebar on every page.</p>
<p>To do this, I simply created a page titled Lifestream. I then embeded the same widget code I used for my sidebar into the page, which looks like this:</p>
<pre>&lt;script src="http://friendfeed.com/embed/widget/USERNAME?v=2&amp;amp;num=300
&amp;amp;hide_logo=1&amp;amp;hide_comments_likes=1&amp;amp;hide_subscribe=1" type=
"text/javascript"&gt;&lt;/script&gt;</pre>
<p>(If you want to use the code, make sure to remove the line breaks.)</p>
<p>If you look closely, you&#8217;ll notice I set the number (num) to 300. This will set the widget to list 300 of your latest items. However, I have noticed there seems to be a limit on how many items you can list. I&#8217;m not even sure if it&#8217;s listing all 300 of my latest items or not. Either way, it&#8217;s listing a lot more than I am on my sidebar.</p>
<p>Here&#8217;s what the finished product looks like:</p>
<p style="text-align: center;"><img class="size-full wp-image-2711 aligncenter" title="friendfeed-lifestream" src="http://www.lifeofjustin.com/wp-content/uploads/2009/07/friendfeed-lifestream.png" alt="friendfeed-lifestream" width="519" height="575" /></p>
<p>Of course, the main page lists a lot more stuff. Overall, it looks pretty cool.</p>
<h3>All Done!</h3>
<p>So that&#8217;s everything I did to get my lifestream up and running. It&#8217;s fairly simple to implement and makes a good addition to your blog or website. As to how useful it is, we will see. I&#8217;m not real sure how many people really use lifestreams but I figured it was worth a shot.</p>
<p>Feel free to leave a comment if you have any questions. I&#8217;ll try and help you out.</p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/use-friendfeed-as-a-lifestream-2708/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>TweetDeck Vs. Tweetie</title>
		<link>http://www.lifeofjustin.com/tweetdeck-vs-tweetie-2615/</link>
		<comments>http://www.lifeofjustin.com/tweetdeck-vs-tweetie-2615/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 14:45:14 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/?p=2615</guid>
		<description><![CDATA[<img class="aligncenter size-full wp-image-2616" title="twitter-apps" src="http://www.lifeofjustin.com/wp-content/uploads/2009/06/twitter-apps.gif" alt="twitter-apps" width="420" height="188" />I'm hanging out at WordCamp Dallas (<a href="http://www.zoopmedia.com/wordcamp-dallas-live-stream-1137/">Live Stream</a>) and it seems like everyone is using desktop applications for Twitter. However, when it comes to which one is the best it's a mixed bag. People seem to all have different opinions based on how they use Twitter.

Some people prefer <a href="http://tweetdeck.com/beta/">TweetDeck</a> while others prefer <a href="http://www.atebits.com/tweetie-mac/">Tweetie</a>. Someone even told me about <a href="http://nambu.com/">Nambu</a> which is a brand new application that's still in beta. I gave it a quick try but wasn't feeling it so I uninstalled it right away.

I've been using TweetDeck since it first came out and have been really happy with it. I like the fact you can monitor everything using columns and it has a boatload of features.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2616" title="twitter-apps" src="http://www.lifeofjustin.com/wp-content/uploads/2009/06/twitter-apps.gif" alt="twitter-apps" width="420" height="188" />I&#8217;m hanging out at WordCamp Dallas (<a href="http://www.zoopmedia.com/wordcamp-dallas-live-stream-1137/">Live Stream</a>) and it seems like everyone is using desktop applications for Twitter. However, when it comes to which one is the best it&#8217;s a mixed bag. People seem to all have different opinions based on how they use Twitter.</p>
<p>Some people prefer <a href="http://tweetdeck.com/beta/">TweetDeck</a> while others prefer <a href="http://www.atebits.com/tweetie-mac/">Tweetie</a>. Someone even told me about <a href="http://nambu.com/">Nambu</a> which is a brand new application that&#8217;s still in beta. I gave it a quick try but wasn&#8217;t feeling it so I uninstalled it right away.</p>
<p>I&#8217;ve been using TweetDeck since it first came out and have been really happy with it. I like the fact you can monitor everything using columns and it has a boatload of features.</p>
<h3>However&#8230;</h3>
<p>Since I arrived here in Dallas, I&#8217;ve been stuck using my 13&#8243; screen (which is a pain in the ass). At home, I have a 24 inch monitor and have no problems with screen real estate. I can have TweetDeck up all day and it doesn&#8217;t bother me since I have a lot of desktop space.</p>
<p>As soon as I opened TweetDeck on my MacBook, it took up my entire screen. So I narrowed my columns and hid some of them. It fits fine on my screen now, but I miss seeing all the columns for my various Twitter accounts.</p>
<h3>Tweetie Test Drive</h3>
<p>So I installed Tweetie yesterday and decided I would give it a test drive. I previously used it when it first came out but I was so used to TweetDeck that I decided it wasn&#8217;t worth my time. I uninstalled it and went on my way.</p>
<p>But now that I&#8217;m using it again, I like it far more than TweetDeck. I can add all my accounts and monitor them in a super easy way. From an interface point of view, Tweetie is amazing. You simply click on your avatar for the various accounts and you get all the features you need.</p>
<p>What I really like about Tweetie is how they have managed to do everything in one column without making you feel limited. I feel like I can do everything I can in TweetDeck without the huge command center window. Plus it looks so much better and reads like an iChat conversation.</p>
<h3>Which One&#8217;s Better?</h3>
<p>It&#8217;s a tough call. After using it all day yesterday, I&#8217;ve decided to stick with Tweetie. It&#8217;s so painless to use and takes up as much space on my screen as iChat. But I think it really comes down to what you prefer and what features you use the most.</p>
<p>As far as the iPhone goes, I still plan on using TweetDeck since I really like the interface. For an in-depth review, check out <a href="http://www.adampieniazek.com/technology/tweetdeck-on-the-iphone/">TweetDeck for the iPhone</a>.</p>
<p>I&#8217;m interested in hearing what applications everyone else is using.<br />
<strong><br />
Which Do You Use?</strong></p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/tweetdeck-vs-tweetie-2615/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Austin Tweetups</title>
		<link>http://www.lifeofjustin.com/austin-tweetups-2511/</link>
		<comments>http://www.lifeofjustin.com/austin-tweetups-2511/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 15:34:44 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Austin]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Texas]]></category>
		<category><![CDATA[Travel/Places]]></category>
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/?p=2511</guid>
		<description><![CDATA[<p>Since I&#8217;ve moved to Austin, I&#8217;ve been trying my hardest to attend every event related to social media, blogging, and business in general. I even started a <a href="http://austin.beerandblog.com/">Beer and Blog Austin</a> chapter I&#8217;m hoping to kick off soon.</p>
<p>Of all the events so far, tweetups have become one of my favorite ways to meet new people that are interested in new media and technology. And it just so happens there are a few tweetups here in Austin that are coming up over the next week that I wanted to share &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;ve moved to Austin, I&#8217;ve been trying my hardest to attend every event related to social media, blogging, and business in general. I even started a <a href="http://austin.beerandblog.com/">Beer and Blog Austin</a> chapter I&#8217;m hoping to kick off soon.</p>
<p>Of all the events so far, tweetups have become one of my favorite ways to meet new people that are interested in new media and technology. And it just so happens there are a few tweetups here in Austin that are coming up over the next week that I wanted to share with everyone.</p>
<h3>Kickball Tweetup</h3>
<p><strong>Date:</strong> Sunday, June 14th</p>
<p><strong>Time:</strong> 6:00 &#8211; 8:30 PM</p>
<p><strong>Location:</strong> <a href="http://www.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Clarksville+Park,+Austin,+TX&amp;sll=37.579413,-95.712891&amp;sspn=33.420662,78.398437&amp;ie=UTF8&amp;ll=30.28314,-97.764351&amp;spn=0.00895,0.01914&amp;z=16&amp;iwloc=A">Clarksville Park</a></p>
<p><a href="http://twitter.com/daveiam">@Daveiam</a> and <a onclick="javascript:pageTracker._trackPageview('/outbound/article/twitter.com');" href="http://twitter.com/AaronMSB"><a href="http://twitter.com/AaronMSB">@AaronMSB</a></a> are putting on a kickball tweetup that should be a bunch of fun. It&#8217;s a BYOB event which makes it perfect for people like me that like to do things on the cheap. So grab some of your favorite beer and head to the kickball tweetup Sunday night. I plan to be there so don&#8217;t forget to say hi.</p>
<p>If you plan to attend, send your RSVP&#8217;s to <a href="http://twitter.com/AaronMSB">@AaronMSB</a></p>
<h3>Statesman/AustinTweetup.com Tweetup</h3>
<p><strong>Date:</strong> Thursday, June 18th</p>
<p><strong>Time:</strong> 6:00 PM &#8211; ?</p>
<p><strong>Location: </strong>Opal Divine&#8217;s on 6th Street</p>
<p><a href="http://twitter.com/statesman">@Statesman</a> along with <a href="http://twitter.com/austintweetups">@AustinTweetups</a> are putting on this event so it should get a great turnout. There will be drink specials until 7 PM so get there early if you can. And don&#8217;t miss &#8220;The Twitter,&#8221; a special margarita that Opal Divine&#8217;s is having for the event. It sounds pretty good so I&#8217;ll do my best to try it out and put a post up about it.</p>
<h3>See You There</h3>
<p>I hope to see some of you at the events. I will continue to post the Tweetups as they come along and will try to do a recap of each of the events and let you know how it was.</p>
<p>If you know of any other tweetups happening here in Austin, please let me know and I will add them to the post.</p>
<p><a onclick="javascript:pageTracker._trackPageview('/outbound/article/twitter.com');" href="http://twitter.com/AaronMSB"><br />
</a></p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/austin-tweetups-2511/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Search Craigslist Like A Madman</title>
		<link>http://www.lifeofjustin.com/search-craigslist-like-a-madman-1641/</link>
		<comments>http://www.lifeofjustin.com/search-craigslist-like-a-madman-1641/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 14:16:16 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/?p=1641</guid>
		<description><![CDATA[I'll admit it, I spend a TON of time on Craigslist. Just yesterday, I managed to sell my old iPhone and a computer desk. However, the most time consuming part is searching for gigs and temporary jobs. Since location doesn't really matter when dealing with freelance web work, I usually search all of the big cities since they are more likely to have new posts.

The thing that sucks is manually going between all the cities and searching. Half the time I forget which city I am in and do the same searches over and over again.  It can take a lot of time, especially if you are looking for a lot of jobs and gigs.
<h3>Introducing Crazedlist.org</h3>
I managed to find <a href="http://crazedlist.org/index.cgi">Crazedlist.org</a> a few weeks ago and have been using it ever since. It lets you do a search in multiple cities and then returns the results in separate frames. It definitely cuts back on the time I spend.

Here is a quick screen capture of what it looks like when I search Phoenix and Tuscon at the same time:]]></description>
			<content:encoded><![CDATA[<p><span style="float: left; padding: 0px 15px 10px 0;margin: 0px;"><script type="text/javascript"><!--
google_ad_client = "ca-pub-3186165136466478";
/* Life of Justin - Why Do Work */
google_ad_slot = "1707270798";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></span>I&#8217;ll admit it, I spend a TON of time on Craigslist. Just yesterday, I managed to sell my old iPhone and a computer desk. However, the most time consuming part is searching for gigs and temporary jobs. Since location doesn&#8217;t really matter when dealing with freelance web work, I usually search all of the big cities since they are more likely to have new posts.</p>
<p>The thing that sucks is manually going between all the cities and searching. Half the time I forget which city I am in and do the same searches over and over again.  It can take a lot of time, especially if you are looking for a lot of jobs and gigs.</p>
<h3>Introducing Crazedlist.org</h3>
<p>I managed to find <a href="http://crazedlist.org/index.cgi">Crazedlist.org</a> a few weeks ago and have been using it ever since. It lets you do a search in multiple cities and then returns the results in separate frames. It definitely cuts back on the time I spend.</p>
<p>Here is a quick screen capture of what it looks like when I search Phoenix and Tuscon at the same time:</p>
<p><a href="http://www.lifeofjustin.com/wp-content/uploads/2009/02/crazedlistorg-search-craigslist-like-a-madman_1233820814253.png"><img class="aligncenter size-full wp-image-1642" title="crazedlistorg-search-craigslist-like-a-madman_1233820814253" src="http://www.lifeofjustin.com/wp-content/uploads/2009/02/crazedlistorg-search-craigslist-like-a-madman_1233820814253.png" alt="crazedlistorg-search-craigslist-like-a-madman_1233820814253" width="584" height="537" /></a></p>
<p>Pretty cool huh? It&#8217;s a pretty cool tool and I highly recommend it if you do a lot of stuff on Craigslist. It will really cut back on the time you waste looking for stuff.</p>
<h3>Prefer Email Updates?</h3>
<p>Another cool tool is <a href="http://www.craigslistwatch.com/">Craigslist Watch</a>. Instead of searching multiple cities, it allows you to set notifications so that you get an email when something gets posted that relates to your search. For example, I could do a search for blogging and then paste the search results URL into Craigslist Watch. I would then get notified whenever a new post goes up that contains those keywords.</p>
<p>This is a great way to automate it so you no longer have to spend time searching for everything.</p>
<h3>So Give Them A Shot</h3>
<p>The next time you find yourself on Craigslist, give these tools a shot. Eventually you will form a habit of using things like this because it really frees up your time to work on other things (like actually doing work lol).</p>
<p>Anyone know of some other cool tools for Craigslist? If so, please post a comment and let me know.</p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/search-craigslist-like-a-madman-1641/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Brand Yourself With A Twitter Background</title>
		<link>http://www.lifeofjustin.com/twitter-background-1352/</link>
		<comments>http://www.lifeofjustin.com/twitter-background-1352/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 21:09:49 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/?p=1352</guid>
		<description><![CDATA[Over the last few months, I have started to use Twitter (<a href="http://twitter.com/jjwright85">follow me</a>) more and more. I think it is a great tool to stay in touch with friends, share links and information, and meet new people. I even wrote a post explaining <a href="http://www.lifeofjustin.com/2008/09/23/13-reasons-to-follow-justin-wright-on-twitter.html">13 reasons you should follow me on Twitter</a>.

The key to being popular on Twitter is setting yourself apart from everyone else. And what better way to do that then to make a sweet twitter background to customize your profile. I first noticed this in action when I saw <a href="http://twitter.com/problogger">Darren Rowse's</a> Twitter profile, which features a huge picture of his face in the background. It sure made his profile stick out.
<h3>Generic Backgrounds Are Lame</h3>
Although people are starting to create custom backgrounds, it is still early in the game. I still see a good portion of people using the generic backgrounds provided by Twitter. People may argue that it isn't worth spending the time to create a custom one but I disagree. By spending a little time now, you can have a custom background up and running for some time to come. If you do it right the first time, you may never have to go back to edit it.

Besides, who wants to be normal? It's the same concept as a MySpace page. People love to customize them because it sets them apart from everyone else. Which leads us to the next section...<br /><br />]]></description>
			<content:encoded><![CDATA[<p>Over the last few months, I have started to use Twitter (<a href="http://twitter.com/jjwright85">follow me</a>) more and more. I think it is a great tool to stay in touch with friends, share links and information, and meet new people. I even wrote a post explaining <a href="http://www.lifeofjustin.com/2008/09/23/13-reasons-to-follow-justin-wright-on-twitter.html">13 reasons you should follow me on Twitter</a>.</p>
<p>The key to being popular on Twitter is setting yourself apart from everyone else. And what better way to do that then to make a sweet Twitter background to customize your profile. I first noticed this in action when I saw <a href="http://twitter.com/problogger">Darren Rowse&#8217;s</a> Twitter profile, which features a huge picture of his face in the background. It sure made his profile stick out.</p>
<h3>Generic Backgrounds Are Lame</h3>
<p>Although people are starting to create custom backgrounds, it is still early in the game. I still see a good portion of people using the generic backgrounds provided by Twitter. People may argue that it isn&#8217;t worth spending the time to create a custom one but I disagree. By spending a little time now, you can have a custom background up and running for some time to come. If you do it right the first time, you may never have to go back to edit it.</p>
<p>Besides, who wants to be normal? It&#8217;s the same concept as a MySpace page. People love to customize them because it sets them apart from everyone else. Which leads us to the next section&#8230;</p>
<h3>Brand Yourself</h3>
<p>Creating a custom image for your Twitter profile is a great way to brand yourself. This is especially useful if you have a blog you are trying to promote. By creating a custom Twitter background that relates to your blog, you can set a first impression that makes people want to find out more about you.</p>
<p>You can also add text your background, such as an about me section. This allows you to write a short description about who you are and what you do. You can even list your blogs below it to try and generate a little extra traffic.</p>
<p>And best of all, it is far easier to remember someone by placing an image in your head of that person. It&#8217;s sure easier to remember a Twitter profile with a custom image versus one using the default blue background. Who doesn&#8217;t want to be remembered?</p>
<h3>Time To Create A Background</h3>
<p>I have had a custom background for some time now, but my first attempt was pretty lame. So last night, I sat around in Photoshop for a little while and started brainstorming some ideas for my Twitter profile. I wanted to find a way to brand myself, promote my blog, and have it somewhat similar to the look and feel of this layout. Here is what I managed to come up with:</p>
<p><a href="http://twitter.com/jjwright85"><img class="aligncenter size-full wp-image-1353" title="twitter-background" src="http://www.lifeofjustin.com/wp-content/uploads/2008/12/twitter-background.jpg" alt="Twitter Background" width="577" height="357" /></a></p>
<p>Pretty cool huh? Like I mentioned above, I already received a few messages from people saying they liked my background. Not to mention a few of those people are now following me.</p>
<p>As far as how I created it, I simply opened up Photoshop and created a new image. My resolution ended up being around 1475 x 1,554, since this was the best size to get the layout to fit the screen correctly.</p>
<h3>So Get To Work</h3>
<p>Even a simple Twitter background with your name, bio, and blog works better than nothing. The key is just to make something instead of the default background. The more time you spend, the better result you are going to get. If you need any help in creating a background, feel free to leave a comment or send a tweet my way.</p>
<p>Follow me on Twitter @<a href="http://twitter.com/jjwright85">jjwright85</a>.</p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/twitter-background-1352/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Add Me As A Friend Buttons</title>
		<link>http://www.lifeofjustin.com/add-me-as-a-friend-buttons-969/</link>
		<comments>http://www.lifeofjustin.com/add-me-as-a-friend-buttons-969/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 06:45:29 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/?p=969</guid>
		<description><![CDATA[After looking for well...2 months, I have still not found a good add me as a friend plug-in or button for any major social networks.

I have been looking pretty intensely and even tried making a drop down list (I hated it). So after looking non-stop, I decided to create my own buttons.
<h3>Time To Share Them</h3>
Not only did I create them for my blog, but I would love more than anything to share them. So without any more introduction, here are the first three buttons I created:<br /><br />]]></description>
			<content:encoded><![CDATA[<p><span style="float: left; padding: 0px 15px 10px 0;margin: 0px;"><script type="text/javascript"><!--
google_ad_client = "ca-pub-3186165136466478";
/* Life of Justin - Why Do Work */
google_ad_slot = "1707270798";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></span>After looking for well&#8230;2 months, I have still not found a good add me as a friend plug-in or button for any major social networks.</p>
<p>I have been looking pretty intensely and even tried making a drop down list (I hated it). So after looking non-stop, I decided to create my own buttons. I wanted to keep them simple but still wanted them to look cool. So I incorporated the logos from each network into the button along with the normal &#8220;saying&#8221; for that network.</p>
<h3>Time To Share Them</h3>
<p>Not only did I create them for my blog, but I would love more than anything to share them. I figured it would benefit you as well since a lot of people like to add these to their blogs. So without any more introduction, here are the first three buttons I created:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.lifeofjustin.com/images/facebook.png" alt="Add Me on Facebook" /><img class="aligncenter" src="http://www.lifeofjustin.com/images/twitter.png" alt="Follow Me on Twitter" /><img class="aligncenter" src="http://www.lifeofjustin.com/images/technorati.png" alt="Add to Technorati Favorites" /></p>
<h3>How To Use Them</h3>
<p>Simply right click and save the image as (name it whatever). From there, you can upload them to your website and set them up to link to your profiles.</p>
<h3>Looking For Other Networks?</h3>
<p>Leave a comment and I can try and put together a button for almost any network. Hey, it&#8217;s what I do so no worries&#8230;</p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/add-me-as-a-friend-buttons-969/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>13 Reasons To Follow Me on Twitter</title>
		<link>http://www.lifeofjustin.com/13-reasons-to-follow-justin-wright-on-twitter-524/</link>
		<comments>http://www.lifeofjustin.com/13-reasons-to-follow-justin-wright-on-twitter-524/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 18:17:25 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/?p=524</guid>
		<description><![CDATA[Lately I have been getting a lot more in to <a href="http://twitter.com/jjwright85" target="_blank">Twitter</a>. Or maybe I am just that much more bored at work and need something new to waste time on. Anyways, I like how easy it is to use and really makes staying in touch a lot easier. So, I decided to come up with a short list on why you should follow me:
<a href="http://twitter.com/jjwright85" target="_blank"><img class="aligncenter size-full wp-image-525" title="twitter1" src="http://www.lifeofjustin.com/wp-content/uploads/2008/09/twitter1.jpg" alt="" width="585" height="360" /></a>
<h3>1. The sheer randomness of my tweets.</h3>
Yes, there about as random as the posts on this blog. But hey, it makes life interesting.
<h3>2. It lets you know where in the world I am (I travel a lot)</h3>
Life of Justin has a lot to do with my adventures, so I tweet as much as I can while I am on the road.
<h3>3. Because I'm hilarious and you like to laugh</h3>
At least I try to be. You could always laugh at the fact that I actually thing of myself as being hilarious.]]></description>
			<content:encoded><![CDATA[<p>Lately I have been getting a lot more in to <a href="http://twitter.com/jjwright85" target="_blank">Twitter</a>. Or maybe I am just that much more bored at work and need something new to waste time on. Anyways, I like how easy it is to use and really makes staying in touch a lot easier. So, I decided to come up with a short list on why you should follow me:<br />
<a href="http://twitter.com/jjwright85" target="_blank"><img class="aligncenter size-full wp-image-525" title="twitter1" src="http://www.lifeofjustin.com/wp-content/uploads/2008/09/twitter1.jpg" alt="" width="585" height="360" /></a></p>
<h3>1. The sheer randomness of my tweets</h3>
<p>Yes, there about as random as the posts on this blog. But hey, it makes life interesting.</p>
<h3>2. It lets you know where in the world I am (I travel a lot)</h3>
<p>Life of Justin has a lot to do with my adventures, so I tweet as much as I can while I am on the road.</p>
<h3>3. Because I&#8217;m hilarious and you like to laugh</h3>
<p>At least I try to be. You could always laugh at the fact that I actually thing of myself as being hilarious.</p>
<h3>4. Get notified of new posts on Life of Justin</h3>
<p>Whenever a new post goes up, I make a tweet to let everyone know about it.</p>
<h3>5. It&#8217;s the easiest way to get in touch with me</h3>
<p>Lets face it, I try to respond to E-mail as often as I can but it&#8217;s tough. Calling my phone is a waste of time since I never answer and am looking to get rid of it soon. Hello Skype&#8230;</p>
<h3>6. Reply to me with links to your latest posts (I&#8217;ll get some traffic for you)</h3>
<p>Shoot me a reply whenever you have a new post up and I will Stumble, Digg, or Reddit it if I like it.</p>
<h3>7. Find out what I ate for lunch</h3>
<p>This one doesn&#8217;t need an explanation.</p>
<h3>8. Ask me random questions (I&#8217;ll probably respond)</h3>
<p>Trying to solve something such as a blog issue? Or have no idea what to eat today? No problem, send me a tweet and I will answer with the best possible solution.</p>
<h3>9. Great way to get to know me (I think?)</h3>
<p>Umm yeah I don&#8217;t know about this one. I guess you could ask me what color my hair is or something?</p>
<h3>10. Get daily insights to help you through the day (probably not)</h3>
<p>Or at least get a tweet that makes you laugh everyday.</p>
<h3>11. You like having followers and I&#8217;ll most likely follow you</h3>
<p>I usually follow anyone that follows me. So it&#8217;s a great investment to follow yours truly.</p>
<h3>12. It&#8217;s easier for you to follow me first</h3>
<p>It&#8217;s true, I could go around and follow interesting people in hopes they return the favor. But, it&#8217;s a lot easier if you follow me first. Then I can just click the follow button instead of having to seek you out.</p>
<h3>13. I made this unlucky list of 13 faboulous reasons to follow me on Twitter.</h3>
<p>So please, head over to my <a href="http://twitter.com/jjwright85" target="_blank">Twitter</a> page and follow me. I suppose you could click the Follow Me button on my sidebar under My Tweets. I&#8217;ll leave that decision up to you. But just remember, there is a surprise waiting for those that follow me&#8230;</p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/13-reasons-to-follow-justin-wright-on-twitter-524/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Facebook Slapped Me On The Wrist</title>
		<link>http://www.lifeofjustin.com/facebook-slapped-me-on-the-wrist-100/</link>
		<comments>http://www.lifeofjustin.com/facebook-slapped-me-on-the-wrist-100/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 16:55:25 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/2008/03/12/facebook-slapped-me-on-the-wrist.html</guid>
		<description><![CDATA[<p><span style="float: left; padding: 0px 15px 10px 0;"><script type="text/javascript"><!--
google_ad_client = "ca-pub-3186165136466478";
/* Life of Justin - Why Do Work */
google_ad_slot = "1707270798";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></span>Facebook is mad at me, or so it seems. I think they want me to take a timeout&#8230;</p>
<p>It seems that Facebook likes to put limitations on certain things. Earlier this week, I was accepting a few friend requests and requested a few friends when I received the &#8220;strike 1&#8243; red alert message. It basically said &#8220;Stop! You are making friends too quickly!.&#8221; And then it rambled on about how I would get disabled for a few days if I kept going.</p>
<p>I suppose this started happening since I created &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><span style="float: left; padding: 0px 15px 10px 0;"><script type="text/javascript"><!--
google_ad_client = "ca-pub-3186165136466478";
/* Life of Justin - Why Do Work */
google_ad_slot = "1707270798";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></span>Facebook is mad at me, or so it seems. I think they want me to take a timeout&#8230;</p>
<p>It seems that Facebook likes to put limitations on certain things. Earlier this week, I was accepting a few friend requests and requested a few friends when I received the &#8220;strike 1&#8243; red alert message. It basically said &#8220;Stop! You are making friends too quickly!.&#8221; And then it rambled on about how I would get disabled for a few days if I kept going.</p>
<p>I suppose this started happening since I created this blog and have been meeting a lot of new people from around the world. I get a few friend requests everyday but nothing I would consider &#8220;too much.&#8221;</p>
<p>So this got me to thinking, why would a social network as big as Facebook have to apply such limitations. I mean, isn&#8217;t the point of a networking site to meet new people, regardless if you have actually met them in person? I have a lot of friends that I have never met in person but still talk to them often, does this mean they are not an actual friend? I think not.</p>
<p>I decided to do some research and see what I could bring up about these Facebook limitations that no one seems to actually know about until they get a warning.</p>
<p>I managed to find a ton of people complaining about the same types of messages. I even found a great article, &#8220;<a href="http://getsatisfaction.com/facebook/topics/13_reasons_your_facebook_account_will_be_disabled" target="_blank">13 Reasons Your Facebook Account Will Be Disabled</a>,&#8221; which talks about the common reasons peoples accounts get disabled.</p>
<p>Now some of these reasons I can agree with. For example, I can see why not using your real name might cause some suspician and get you banned from Facebook. But adding to many friends and poking too many people? Come on!</p>
<p>It turns out, they even have a friend limit of 5,000 people on Facebook. Once you hit the magic number of 5,000, people will recieve the &#8220;So and So already has too many friends&#8221; message when trying to add you.</p>
<p>The creators over at Myspace have set no limitations on things like friends, messages being sent, or how many people you can send things to. I think this is the way a social networking site should be. Why limit anyone from getting what they want out of a networking site?</p>
<p>So I am interested to see if this happens to a lot of other people. If it has already happened to you, please drop me a comment and let me know how it went.</p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/facebook-slapped-me-on-the-wrist-100/feed/</wfw:commentRss>
		<slash:comments>362</slash:comments>
		</item>
		<item>
		<title>Is Web 3.0 Just Around the Corner?</title>
		<link>http://www.lifeofjustin.com/is-web-30-around-the-corner-102/</link>
		<comments>http://www.lifeofjustin.com/is-web-30-around-the-corner-102/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 16:26:56 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/2008/03/14/is-web-30-around-the-corner.html</guid>
		<description><![CDATA[<p>As I was surfing the internet this morning, I stumbled upon an article written by Tony Dokoupil over at <a href="http://www.newsweek.com" target="_blank">Newsweek.com</a>. The title of the article was &#8220;<a href="http://www.newsweek.com/id/119091/page/1" target="_blank">Revenge of the Experts</a>&#8221; and it was looking at the trends that seem to be happening on the internet lately.</p>
<p>Tony starts by saying:&#8221;By any name, the current incarnation of the Internet is known for giving power to the people. Sites like YouTube and Wikipedia collect the creations of unpaid amateurs while kicking pros to the curb—or at least deflating their &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>As I was surfing the internet this morning, I stumbled upon an article written by Tony Dokoupil over at <a href="http://www.newsweek.com" target="_blank">Newsweek.com</a>. The title of the article was &#8220;<a href="http://www.newsweek.com/id/119091/page/1" target="_blank">Revenge of the Experts</a>&#8221; and it was looking at the trends that seem to be happening on the internet lately.</p>
<p>Tony starts by saying:&#8221;By any name, the current incarnation of the Internet is known for giving power to the people. Sites like YouTube and Wikipedia collect the creations of unpaid amateurs while kicking pros to the curb—or at least deflating their stature to that of the ordinary Netizen.&#8221;But what it also points out is that many sites are now starting to lean more towards hired professionals rather than user-generated content. Accuracy always has been an important but often overlooked element of the web. Many sites allow users to post information with little or no accuracy checks. This can lead to misleading information being found all over the internet.</p>
<p>So the question is, will the internet be looking for a change soon? According to Tony,&#8221;The timing could be right for a new era in Silicon Valley, a Web 3.0. It comes, after all, during dark days for the ideal of a democratic Web. User-generated sites like Wikipedia, for all the stuff they get right, still find themselves in frequent dust-ups over inaccuracies, while community-posting boards like Craigslist have never been able to keep out scammers and frauds.&#8221; I agree with what he has to say because it is vital to have correct information available to everyone.</p>
<p>At the same time however, I feel the users of the internet deserve our share of free speech as well.Web 2.0 has brought us Facebook, Myspace, Digg, wiki&#8217;s, and tons of other social networking sites. They have all made it so much easier to share content with others from around the world. Web 2.0 has changed the way nearly everything gets done on the web. Blogging alone has created a gigantic network of people who enjoy writing about all sorts of topics. It allows us to share our thoughts, opinions, and best of all, knowledge.</p>
<p>I would really hate to see Web 2.0 get tossed to the side in favor of a new platform where hired professionals create all of the content on the internet. The reason the internet is so interesting, is because so many more people get a say. If I wanted to read nothing but articles written by professionals, I would buy a newspaper or magazine. I enjoy the options of choosing from an array of different sources because they all have a unique point of view.</p>
<p>So the question is, who is considered a professional? Bloggers writing in there niche could easily be considered professionals in the industry. So maybe if Web 3.0 does happen in the near future, us bloggers will find ourselves getting offers to write content for larger websites.</p>
<p>Who knows, only time can tell where the internet will be heading. All I can say for now is, I am still your fan Web 2.0.</p>
<p>Please feel free to share your thoughts on this and what you hope to see happen to the internet in the near future.</p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/is-web-30-around-the-corner-102/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make Money From Social Networking</title>
		<link>http://www.lifeofjustin.com/competing-with-social-networking-giants-80/</link>
		<comments>http://www.lifeofjustin.com/competing-with-social-networking-giants-80/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 16:11:25 +0000</pubDate>
		<dc:creator>Justin Wright</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.lifeofjustin.com/2008/03/03/competing-with-social-networking-giants.html/</guid>
		<description><![CDATA[<p>I created LifeofJustin.com as a way of broadcasting my life to everyone on the internet. Social networking is a hobby I enjoy doing along with web design. I also enjoy writing, photography, and creating videos. So I thought, why not try and make a living doing this?</p>
<p>I have always used other social networking sites like <a href="http://www.facebook.com/people/Justin_Wright/208200245" target="_blank">Facebook</a>, <a href="http://www.myspace.com/jjwright85" target="_blank">MySpace</a>, <a href="http://www.flickr.com/people/justinwright" target="_blank">Flickr</a>, and many more. But what I find appealing about my own website is that I can incorporate all of those into one gigantic portal. Plus I can keep &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I created LifeofJustin.com as a way of broadcasting my life to everyone on the internet. Social networking is a hobby I enjoy doing along with web design. I also enjoy writing, photography, and creating videos. So I thought, why not try and make a living doing this?</p>
<p>I have always used other social networking sites like <a href="http://www.facebook.com/people/Justin_Wright/208200245" target="_blank">Facebook</a>, <a href="http://www.myspace.com/jjwright85" target="_blank">MySpace</a>, <a href="http://www.flickr.com/people/justinwright" target="_blank">Flickr</a>, and many more. But what I find appealing about my own website is that I can incorporate all of those into one gigantic portal. Plus I can keep as much personal information to myself as I so choose, unlike some of the other sites. No longer do I have to worry about invitations to applications I do not even want. The biggest perk of all however, is monetizing the traffic vs. giving all of it to other sites. The social networking giants make millions in advertising, which is why you see so many ads on MySpace and millions of applications on Facebook. So why not try and get a little piece of the pie?</p>
<p>Using my hosting account, WordPress, and a domain I have purchased, I have managed to build a pretty handy site that is starting to get consistent traffic day in and out. At last check, I have had visitors from 32 states and 11 different countries. At the pace I am at for March already, I should easily hit the 10,000 page view mark this month. Not bad considering the site is pretty much brand new despite a few older posts I rolled over from my old blog. I have shared it with all of my friends from other social networks and I have heard a lot of good feedback.</p>
<p>The main part of my website involves the blog itself. I try and write daily about things I do, pictures I take, or simply informative articles about blogging to help others follow in my footsteps. I have embedded Google Adsense into each post and find that it does not distract the reader from the post at all. This is the easiest way to generate some income from blogging. So if you run a website and are not currently using an advertising program, I highly recommend Google Adsense. <code><script type="text/javascript"><!-- google_ad_client = "pub-3186165136466478"; /* Text link, created 3/3/08 */ google_ad_slot = "7351488979"; google_ad_output = "textlink"; google_ad_format = "ref_text"; google_cpa_choice = ""; // on file //--> </script><br />
<script type="text/javascript"> src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script></code></p>
<p>Unlike a typical blog, I have also added a lot of features that make my site feel more like a social networking type of site. I added some easy to use Friend Me links on the left sidebar that allows visitors to easily find me on the other major social networks. And this does work, because I have had friends add me that said they found me through my website.</p>
<p>I also have a <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1670760&amp;loc=en_US" target="_blank">subscribe</a> section which allows my readers to sign up for my RSS feed as well as receive E-mail updates whenever I add a new post.</p>
<p>My favorite part is that Flickr has been incorporated into my Photos page, which is actually easier to use than the application Facebook offers. I love that the tags, titles, sets, and collections all get rolled over into my site. What is nice about this is that I can now email my friends and family links to my new photo albums and they will go directly to my site.<br />
Why is this a good thing? If I were to send them a link to say, my Facebook album, how would I make money? Now, every time a image is viewed, I get a small Google Adsense impression at the bottom which gives me a potential of getting a click. Plus there is a chance my pictures get picked up by search engines, which could lead to more traffic coming to my site.</p>
<p>And last but not least, I have taken the strategies I learned from &#8220;<a href="http://gbzstyle.freegoogle.hop.clickbank.net" target="_blank">Get Google Ads for Free</a>&#8221; and applied them to my site. The sponsors section contains 6 image ads that I can sell on a month to month basis. This creates more income from the site which I eventually hope to live off of.</p>
<p>The site is nowhere near done, it just went up mid-February so it has come a long way in its short time. I plan to add more features including a YouTube section where I can display my YouTube channel and hope to bring more traffic in.</p>
<p>Please comment if you had any feedback or suggestions.</p>
        <p>© Justin Wright - This post was created by <a href="http://www.lifeofjustin.com">Justin Wright</a> Please <a href="http://feeds.feedburner.com/LifeOfJustin">subscribe to the feed</a> for more great content.      <br />
<br />
<br />
                  ]]></content:encoded>
			<wfw:commentRss>http://www.lifeofjustin.com/competing-with-social-networking-giants-80/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

