<?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:media="http://search.yahoo.com/mrss"
	>

<channel>
	<title>The Whole Story</title>
	<atom:link href="http://justinb.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://justinb.wordpress.com</link>
	<description>Helping the socially &#38; technologically uninitiated since 2002!</description>
	<pubDate>Thu, 24 Apr 2008 12:23:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Write Entry to Eventlog using VB.NET</title>
		<link>http://justinb.wordpress.com/2007/09/29/write-entry-to-eventlog-using-vbnet/</link>
		<comments>http://justinb.wordpress.com/2007/09/29/write-entry-to-eventlog-using-vbnet/#comments</comments>
		<pubDate>Sat, 29 Sep 2007 12:59:02 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2007/09/29/write-entry-to-eventlog-using-vbnet/</guid>
		<description><![CDATA[Are you a VB.NET programmer who&#8217;s ever looked through the windows eventlog (eventvwr.exe) thinking to yourself &#8220;How can I get my program to write events to the eventlog&#8221;? Here&#8217;s how:
 Public Function WriteToEventLog(ByVal Entry As String, Optional ByVal AppName As String = "VB.NET Application", _
Optional ByVal EventType As EventLogEntryType = EventLogEntryType.Information, Optional ByVal LogName As [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Are you a VB.NET programmer who&#8217;s ever looked through the windows eventlog (eventvwr.exe) thinking to yourself &#8220;How can I get my program to write events to the eventlog&#8221;? Here&#8217;s how:</p>
<p><code> Public Function WriteToEventLog(ByVal Entry As String, Optional ByVal AppName As String = "VB.NET Application", _<br />
Optional ByVal EventType As EventLogEntryType = EventLogEntryType.Information, Optional ByVal LogName As String = _<br />
&#8220;Application&#8221;) As Boolean</code></p>
<p><code>Dim objEventLog As New EventLog</code></p>
<p><code>Try<br />
&#8216;Register the App as an Event Source<br />
If Not objEventLog.SourceExists(AppName) Then</code></p>
<p><code>objEventLog.CreateEventSource(AppName, LogName)<br />
End If</code></p>
<p><code>objEventLog.Source = AppName</code></p>
<p><code>'WriteEntry is overloaded; this is one<br />
&#8216;of 10 ways to call it<br />
objEventLog.WriteEntry(Entry, EventType)<br />
Return True<br />
Catch Ex As Exception<br />
Return False</code></p>
<p><code>End Try<br />
End Function</code></p>
<p>The function <strong>WriteToEventLog</strong> has 1 parameter (entry to write to event log) with 3 other optional parameters specifying the Application Name, Event Type raised (Information, Warning, Critical) and the logname (whether the entry is written to Application, System, or other log within the event log).</p>
<p>I find this very useful especially in very large applications where writing an external log (besides .txt or .log files) becomes tedious. Writing entries into the event log is really create when you&#8217;re writing windows services also.</p>
<p>Hope this helps, please feel free to send me an email if you have any questions.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/381/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/381/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/381/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=381&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2007/09/29/write-entry-to-eventlog-using-vbnet/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows developer dumps &#8220;pile of crap&#8221; for MacOSX</title>
		<link>http://justinb.wordpress.com/2007/01/01/windows-developer-dumps-pile-of-crap-for-macosx/</link>
		<comments>http://justinb.wordpress.com/2007/01/01/windows-developer-dumps-pile-of-crap-for-macosx/#comments</comments>
		<pubDate>Mon, 01 Jan 2007 03:32:50 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2007/01/01/windows-developer-dumps-pile-of-crap-for-macosx/</guid>
		<description><![CDATA[Pete Wright who is was a programmer for Microsoft Windows one day dreamed of joining Microsoft to contribute to the computer industry and really change the way people use computers.
&#8220;I dreamed of working at Microsoft. When Microsoft joined up with Accenture to form Avanade the word &#8216;consultant&#8217; sounded so wonderfully romantic to me and I [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Pete Wright</strong> who <strike>is</strike> was a programmer for Microsoft Windows one day dreamed of joining Microsoft to contribute to the computer industry and really change the way people use computers.</p>
<blockquote><p><em>&#8220;<span>I dreamed of working at Microsoft. When Microsoft joined up with Accenture to form Avanade the word &#8216;consultant&#8217; sounded so wonderfully romantic to me and I wondered if ever I&#8217;d make it there as one of the elite band of Avanade consultants, spreading the Microsoft message all over the world. I dreamed of systems that would change lives, help people, and do cool new things never seen before&#8221;</span>  - </em><a href="http://www.macdailynews.com/index.php/weblog/comments/top_windows_developer_dumps_microsofts_pile_of_crap_for_apples_mac_os_x/">Pete Wright (MacDailyNews).</a></p></blockquote>
<p>Now how things change so quickly. Everybody who knows anything about computers knows that Microsoft&#8217;s flagship product &#8216;Microsoft Windows&#8217; is a spaghetti code situation at best, once with the idea that complexity in how an operating system is designed would better the overall product has eventually ended up with a product that is a nightmare to code for, and almost a bigger headache for an end-user to use.</p>
<p>So Pete has done what many programmers im sure have thought at Microsoft before, he has jumped ship to go work for <a href="http://apple.com">Apple Computer</a> to work on a project which prides it self on end-user simplicity, and a much more managable code-base&#8230;Apple MacOSX.</p>
<p>To read all about Pete&#8217;s experiences with working with Microsoft and his jump into MacOSX, be sure to check out his blog entry entitled <a href="http://peterwright.blogspot.com/2006/09/good-bye-microsoft-pete-has-now-left.html"><em>&#8220;Goodbye Microsoft, Pete has left the building!&#8221;</em></a>. It is really interesting and well worth a read if you are a programmer youself or student with the same dream of working with Microsoft has Pete once had.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/380/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/380/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/380/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=380&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2007/01/01/windows-developer-dumps-pile-of-crap-for-macosx/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>
	</item>
		<item>
		<title>Nintendo Wii controlled &#8216;Smart-Home&#8217;</title>
		<link>http://justinb.wordpress.com/2006/12/24/nintendo-wii-controlled-smart-home/</link>
		<comments>http://justinb.wordpress.com/2006/12/24/nintendo-wii-controlled-smart-home/#comments</comments>
		<pubDate>Sun, 24 Dec 2006 10:18:10 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2006/12/24/nintendo-wii-controlled-smart-home/</guid>
		<description><![CDATA[Video of a Nintendo Wii Controlled &#8216;Smart home&#8217;. This is really cool, I wish I could control my house like this&#8230;

How cool was that!
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Video of a Nintendo Wii Controlled &#8216;Smart home&#8217;. This is really cool, I wish I could control my house like this&#8230;</p>
<p><span style="text-align:center; display: block;"><a href="http://justinb.wordpress.com/2006/12/24/nintendo-wii-controlled-smart-home/"><img src="http://img.youtube.com/vi/beZC2gpFN7I/2.jpg" alt="" /></a></span></p>
<p>How cool was that!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/379/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/379/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/379/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=379&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2006/12/24/nintendo-wii-controlled-smart-home/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/beZC2gpFN7I/2.jpg" medium="image" />
	</item>
		<item>
		<title>Exams are over! How do you celebrate?</title>
		<link>http://justinb.wordpress.com/2006/11/22/exams-are-over-how-do-you-celebrate/</link>
		<comments>http://justinb.wordpress.com/2006/11/22/exams-are-over-how-do-you-celebrate/#comments</comments>
		<pubDate>Wed, 22 Nov 2006 01:13:33 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[Academics]]></category>

		<category><![CDATA[Day to Day Life]]></category>

		<category><![CDATA[Education]]></category>

		<category><![CDATA[Parties/Nightlife]]></category>

		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2006/11/22/exams-are-over-how-do-you-celebrate/</guid>
		<description><![CDATA[Yay! My university exams are finally over. I cannot believe it, there was a time there where it felt as if they would never finish. Although I have finished, I recently got a new job in Melbourne that I start tomorrow so no breaks for me, off to work I go. But it&#8217;s not all [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yay! My university exams are finally over. I cannot believe it, there was a time there where it felt as if they would never finish. Although I have finished, I recently got a new job in Melbourne that I start tomorrow so no breaks for me, off to work I go. But it&#8217;s not all that bad, I&#8217;ll be working for a month then I&#8217;ll get my christmas break from work for about two weeks or so.</p>
<p>So I&#8217;ve got a few end of year parties coming up for uni, but I found myself wondering&#8230;If I didn&#8217;t have to goto work right now, what would I be doing for end of year celebrations? How would I be celebrating? Mmm&#8230;</p>
<ul>
<li>Party all day and all night</li>
<li>Stay at home</li>
<li>Sit by the calendar and wait for the new semester!</li>
</ul>
<p>However you celebrate it, let us know in the comments section. I would be interested on any huge parties happening in your area and what other students get up to this time of year.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/378/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/378/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/378/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=378&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2006/11/22/exams-are-over-how-do-you-celebrate/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>
	</item>
		<item>
		<title>Gumball 3000: Most amazing &#8216;illegal&#8217; road race</title>
		<link>http://justinb.wordpress.com/2006/11/19/gumball-3000-most-amazing-illegal-road-race/</link>
		<comments>http://justinb.wordpress.com/2006/11/19/gumball-3000-most-amazing-illegal-road-race/#comments</comments>
		<pubDate>Sun, 19 Nov 2006 01:21:44 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2006/11/19/gumball-3000-most-amazing-illegal-road-race/</guid>
		<description><![CDATA[&#8220;The 2006 rally was the most ambitious of any rally so far, starting London and finishing in Los Angeles just 8 days later, with the organizers flying all 120 cars from Europe to Asia and again from Asia to Europe in 3 Antonov An-124&#8217;s and an Iceland Air passenger Boeing 757.&#8221;

Amazing!
     [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#8220;The 2006 rally was the most ambitious of any rally so far, starting London and finishing in Los Angeles just 8 days later, with the organizers flying all 120 cars from Europe to Asia and again from Asia to Europe in 3 Antonov An-124&#8217;s and an Iceland Air passenger Boeing 757.&#8221;</p>
<p><span style="text-align:center; display: block;"><a href="http://justinb.wordpress.com/2006/11/19/gumball-3000-most-amazing-illegal-road-race/"><img src="http://img.youtube.com/vi/0UNExJi5xIs/2.jpg" alt="" /></a></span></p>
<p>Amazing!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/377/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/377/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/377/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=377&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2006/11/19/gumball-3000-most-amazing-illegal-road-race/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/0UNExJi5xIs/2.jpg" medium="image" />
	</item>
		<item>
		<title>Five Tips for Smarter Playlists</title>
		<link>http://justinb.wordpress.com/2006/11/16/five-tips-for-smarter-playlists/</link>
		<comments>http://justinb.wordpress.com/2006/11/16/five-tips-for-smarter-playlists/#comments</comments>
		<pubDate>Wed, 15 Nov 2006 23:59:41 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2006/11/16/five-tips-for-smarter-playlists/</guid>
		<description><![CDATA[
iTunes has a really great feature which allows you to &#8217;smartly&#8217; list your songs by genre, artist, rating (favor), etc into a seperate &#8217;smart playlist&#8217; which can then be syncronized with your iPod. This makes going through thousands of songs a breeze and makes sure you&#8217;re always listening to your most favorite songs, and not [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://justinb.files.wordpress.com/2006/11/smartlists.jpg" alt="smartlists.jpg" /></p>
<p><a href="http://www.apple.com/itunes/">iTunes</a> has a really great feature which allows you to &#8217;smartly&#8217; list your songs by genre, artist, rating (favor), etc into a seperate &#8217;smart playlist&#8217; which can then be syncronized with your iPod. This makes going through thousands of songs a breeze and makes sure you&#8217;re always listening to your most favorite songs, and not &#8220;We wish you a merry christmas&#8221; in July.</p>
<p>I came across a really great article which discusses just this topic, How to make your iTunes playlist &#8217;smarter&#8217; - <strong><a href="http://www.davidgagne.net/?p=6212">Five Tips for Smarter Playlists</a></strong> by David Gagne. Its a great article and helped me get my music sorted out. I already had my music organized in some kind of fashion (I am kinda  a control freak with my music collection) but this article made me realize the myriad of features in iTunes which I had totally forgotten about and were underutilized in my playlists.</p>
<p>Check out the article above or find it <strong><a href="http://www.davidgagne.net/?p=6212">here</a></strong>, its a great read for any iTunes user.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/374/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/374/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/374/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=374&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2006/11/16/five-tips-for-smarter-playlists/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>

		<media:content url="http://justinb.files.wordpress.com/2006/11/smartlists.jpg" medium="image">
			<media:title type="html">smartlists.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>President Bush - &#8220;I hear there&#8217;s rumors on the uh&#8230; Internets&#8221;</title>
		<link>http://justinb.wordpress.com/2006/11/14/president-bush-i-hear-theres-rumors-on-the-uh-internets/</link>
		<comments>http://justinb.wordpress.com/2006/11/14/president-bush-i-hear-theres-rumors-on-the-uh-internets/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 05:19:30 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[Funnies]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2006/11/14/president-bush-i-hear-theres-rumors-on-the-uh-internets/</guid>
		<description><![CDATA[George.W.Bush has struck it again, this time with the comagulation (if that is even a word) of Internet to &#8220;Internets&#8221;. Don&#8217;t look now people&#8230;there&#8217;s rumors on the uh&#8230;Internets!!!

Oh how I love it!
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>George.W.Bush has struck it again, this time with the comagulation (if that is even a word) of Internet to &#8220;Internets&#8221;. Don&#8217;t look now people&#8230;there&#8217;s rumors on the uh&#8230;Internets!!!</p>
<p><span style="text-align:center; display: block;"><a href="http://justinb.wordpress.com/2006/11/14/president-bush-i-hear-theres-rumors-on-the-uh-internets/"><img src="http://img.youtube.com/vi/LKTH6f1JfX8/2.jpg" alt="" /></a></span></p>
<p>Oh how I love it!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/373/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/373/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=373&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2006/11/14/president-bush-i-hear-theres-rumors-on-the-uh-internets/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/LKTH6f1JfX8/2.jpg" medium="image" />
	</item>
		<item>
		<title>Gnome dock with physics engine</title>
		<link>http://justinb.wordpress.com/2006/11/13/gnome-dock-with-physics-engine/</link>
		<comments>http://justinb.wordpress.com/2006/11/13/gnome-dock-with-physics-engine/#comments</comments>
		<pubDate>Mon, 13 Nov 2006 11:05:33 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Science]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2006/11/13/gnome-dock-with-physics-engine/</guid>
		<description><![CDATA[Akamaru is a simple, but fun, physics engine prototype. It is amazing to use, and easy to install. One more reason to forget Windows Vista, embrace Open Source, and use Ubuntu or Fedora.

The dock at the moment kinda works just like the MacOSX dock at the bottom of the screen, and tests the functionality of [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://people.freedesktop.org/~krh/akamaru.git/">Akamaru</a> is a simple, but fun, physics engine prototype. It is amazing to use, and easy to install. One more reason to forget Windows Vista, embrace Open Source, and use <a href="http://www.ubuntu.com/">Ubuntu</a> or Fedora.</p>
<p><img src="http://justinb.files.wordpress.com/2006/11/akamaru.png" alt="akamaru.png" /></p>
<p>The dock at the moment kinda works just like the MacOSX dock at the bottom of the screen, and tests the functionality of the Akamaru physics engine nicely.</p>
<p><span style="text-align:center; display: block;"><a href="http://justinb.wordpress.com/2006/11/13/gnome-dock-with-physics-engine/"><img src="http://img.youtube.com/vi/M2qoF72PFic/2.jpg" alt="" /></a></span></p>
<p>This looks really great, adds some nice eye candy to the Linux desktop.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/370/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/370/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/370/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=370&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2006/11/13/gnome-dock-with-physics-engine/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>

		<media:content url="http://justinb.files.wordpress.com/2006/11/akamaru.png" medium="image">
			<media:title type="html">akamaru.png</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/M2qoF72PFic/2.jpg" medium="image" />
	</item>
		<item>
		<title>Dr. Phill busts scammers</title>
		<link>http://justinb.wordpress.com/2006/11/12/dr-phill-busts-scammers/</link>
		<comments>http://justinb.wordpress.com/2006/11/12/dr-phill-busts-scammers/#comments</comments>
		<pubDate>Sun, 12 Nov 2006 01:16:45 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[TV/Movies]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2006/11/12/dr-phill-busts-scammers/</guid>
		<description><![CDATA[This is absolutely amazing. There have been &#8216;apparently&#8217; a group of women posing as producers to the Dr. Phill show scamming money from their viewers. Check out the clip here, this is amazing.
Go Dr. Phill, Go!
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is absolutely amazing. There have been &#8216;apparently&#8217; a group of women posing as producers to the Dr. Phill show scamming money from their viewers. Check out the clip <a href="http://www.videojihad.com/videos/General_Television/Dr_Phil_busts_scammers">here</a>, this is amazing.</p>
<p>Go Dr. Phill, Go!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/369/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/369/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/369/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=369&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2006/11/12/dr-phill-busts-scammers/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>
	</item>
		<item>
		<title>What it takes to become a pro gamer</title>
		<link>http://justinb.wordpress.com/2006/11/12/what-it-takes-to-become-a-pro-gamer/</link>
		<comments>http://justinb.wordpress.com/2006/11/12/what-it-takes-to-become-a-pro-gamer/#comments</comments>
		<pubDate>Sun, 12 Nov 2006 01:06:43 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://justinb.wordpress.com/2006/11/12/what-it-takes-to-become-a-pro-gamer/</guid>
		<description><![CDATA[I recently caught an interesting clip on Youtube of Forbes talking to Johnathan &#8220;Fatality&#8221; Wendel who is a professional video gamer and discussing what it takes to get into the business. Its not all its cracked up to be, and much more harder of a job than people realize.

You can see more video clips of [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently caught an interesting clip on Youtube of Forbes talking to Johnathan &#8220;Fatality&#8221; Wendel who is a professional video gamer and discussing what it takes to get into the business. Its not all its cracked up to be, and much more harder of a job than people realize.</p>
<p><span style="text-align:center; display: block;"><a href="http://justinb.wordpress.com/2006/11/12/what-it-takes-to-become-a-pro-gamer/"><img src="http://img.youtube.com/vi/Q275Qh4ESao/2.jpg" alt="" /></a></span></p>
<p>You can see <a href="http://youtube.com/results?search_query=Johnathan+Wendel&amp;search=Search">more video clips of Johnathan Wendel</a> at Youtube. This guy is really something.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justinb.wordpress.com/368/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justinb.wordpress.com/368/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinb.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinb.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinb.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinb.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinb.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinb.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinb.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinb.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinb.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinb.wordpress.com/368/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinb.wordpress.com&blog=116062&post=368&subd=justinb&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://justinb.wordpress.com/2006/11/12/what-it-takes-to-become-a-pro-gamer/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/justinb-128.jpg" medium="image">
			<media:title type="html">justinb</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/Q275Qh4ESao/2.jpg" medium="image" />
	</item>
	</channel>
</rss>