<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Stuff From an IT Slug</title>
	<atom:link href="http://blog.brettski.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.brettski.com</link>
	<description>It doesn't really get busier any given day, just more stuff doesn't get done.</description>
	<lastBuildDate>Sat, 21 Aug 2010 03:11:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.brettski.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/409788cc19140045d54de5bec24008cf?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Stuff From an IT Slug</title>
		<link>http://blog.brettski.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.brettski.com/osd.xml" title="Stuff From an IT Slug" />
	<atom:link rel='hub' href='http://blog.brettski.com/?pushpress=hub'/>
		<item>
		<title>Assembly Info&#8230; File Version</title>
		<link>http://blog.brettski.com/2010/08/20/assembly-info-file-version/</link>
		<comments>http://blog.brettski.com/2010/08/20/assembly-info-file-version/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 03:04:29 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[nerdiness]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=500</guid>
		<description><![CDATA[You would think it&#8217;s simple enough to get the file version information as it is set in Visual Studio&#8217;s UI setting, but it wasn&#8217;t for me.  Even after Googling around I only discovered how to the the Assembly version, not the file version.  Well not until I found this article. The information is at the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=500&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You would think it&#8217;s simple enough to get the file version information as it is set in Visual Studio&#8217;s UI setting, but it wasn&#8217;t for me.  Even after Googling around I only discovered how to the the Assembly version, not the file version.  Well not until I found <a href="http://all-things-pure.blogspot.com/2009/09/assembly-version-file-version-product.html" target="_blank">this article</a>. The information is at the end of it and it basically goes like this:</p>
<pre>string fileVersion = FileVersionInfo
       .GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion;
</pre>
<p>I then also wanted to get the date too.  This is how I did it:</p>
<pre>string fileDate = System.IO.File
       .GetCreationTime(Assembly.GetExecutingAssembly().Location)
       .ToString("MMMM dd, yyyy")</pre>
<p>FileVersionInfo is at System.Diagnostics<br />
Assembly is at System.Reflection</p>
<p>The best thing is I no longer have to remember to set this stuff before packaging up my app for shipment.  Like I am doing right now:  BD File Hash version 1.0.10 going out right now.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/500/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/500/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/500/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=500&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/08/20/assembly-info-file-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>Comcast Domain Helper Service will not go away</title>
		<link>http://blog.brettski.com/2010/07/30/comcast-domain-helper-service-will-not-go-away/</link>
		<comments>http://blog.brettski.com/2010/07/30/comcast-domain-helper-service-will-not-go-away/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 21:37:20 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[computer hell]]></category>
		<category><![CDATA[that poop is cold]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=496</guid>
		<description><![CDATA[Comcast Domain helper service, a DNS breaking service which shows you search results when you try to access a site which doesn&#8217;t exist on the Internet (e.g. http://blah.blah). Ever since I noticed this &#8220;service&#8221; on my Comcast account I have disabled it.  I don&#8217;t like it, I don&#8217;t want it, and basically it breaks the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=496&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Comcast Domain helper service, a DNS breaking service which shows you search results when you try to access a site which doesn&#8217;t exist on the Internet (e.g. http://blah.blah).</p>
<p>Ever since I noticed this &#8220;service&#8221; on my Comcast account I have disabled it.  I don&#8217;t like it, I don&#8217;t want it, and basically it breaks the basic workings of DNS on the internet.  If a site doesn&#8217;t exist, I want a cannot be found error, not search page which is cached in my browser and forever holds the bad domain as real in my history.</p>
<p>So this evening I jump on the internet and mistype mail.yahoo.com, as I so often do for some reason, and notice that the Domain helper service is enabled, AGAIN.  This has to be the fourth time the service has reactivated itself on my account.  So I go out to my Comcast account to shut it down and notice that the option to do so no longer exists!  What!?</p>
<p>I call Comcast and the person on the phone is as befuddled as I am, plus not so happy that the option is missing from his home account also.</p>
<p>I have been on the phone for 33 minutes now while a resolution is trying to find a solution to this.  The end result at this point is that an &#8220;IT&#8221; ticked has been opened and this support person is to call me back with a status.</p>
<p>I wonder if I will ever actually receive that call?</p>
<p><strong>UPDATE: </strong></p>
<p>It is now Friday, August 6th, basically one week since I called Comcast and I have not heard back from them at all.  Not like I really expected to, though it would have been a nice change.</p>
<p>I am not looking forward to it, but I must fight my way through Comcast option-hold hell/support once more&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/496/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=496&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/07/30/comcast-domain-helper-service-will-not-go-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>Home Router Vulnerability</title>
		<link>http://blog.brettski.com/2010/07/22/home-router-vulnerability/</link>
		<comments>http://blog.brettski.com/2010/07/22/home-router-vulnerability/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 15:58:19 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[computer hell]]></category>
		<category><![CDATA[Exploit]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=493</guid>
		<description><![CDATA[This is pretty nasty and will surly have a wide impact on home Internet users.  I just read about an exploit which has the potential of affecting millions of home internet users.  The exploit affects home routers and will be explained in detail next month at the Black Hat conference in Vegas. http://blogs.forbes.com/firewall/2010/07/13/millions-of-home-routers-vulnerable-to-web-hack/ http://www.theregister.co.uk/2010/07/19/home_router_hack/ I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=493&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is pretty nasty and will surly have a wide impact on home Internet users.  I just read about an exploit which has the potential of affecting millions of home internet users.  The exploit affects home routers and will be explained in detail next month at the Black Hat conference in Vegas.</p>
<p>http://blogs.forbes.com/firewall/2010/07/13/millions-of-home-routers-vulnerable-to-web-hack/</p>
<p>http://www.theregister.co.uk/2010/07/19/home_router_hack/</p>
<p>I shouldn&#8217;t have to say this, but <strong>IF YOU HAVE NOT CHANGED THE DEFAULT PASSWORD ON YOUR HOME ROUTER, DO IT NOW!!!</strong></p>
<p>Don&#8217;t think it really matters?  Well <a href="http://www.routerpasswords.com/">here</a> is how easy it is to get a list of default passwords.</p>
<p>If you don&#8217;t know what to do, call someone who does know what to do.  If you don&#8217;t know who to call, call me (i.e. leave me a comment) I will be more than happy to help anyone secure their home network.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/493/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=493&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/07/22/home-router-vulnerability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>To Code or Not to Code</title>
		<link>http://blog.brettski.com/2010/07/13/to-code-or-not-to-code/</link>
		<comments>http://blog.brettski.com/2010/07/13/to-code-or-not-to-code/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:31:47 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=489</guid>
		<description><![CDATA[That is the question isn&#8217;t it.  One of the single most difficult professional decisions anyone will make is, do I stay comfortable as a master code slinger, or do I step into the world of management? For me it always seems to be the other way around.  I never got into hard-core programming until I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=489&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>That is the question isn&#8217;t it.  One of the single most difficult professional decisions anyone will make is, do I stay comfortable as a master code slinger, or do I step into the world of management?</p>
<p>For me it always seems to be the other way around.  I never got into hard-core programming until I was a one man shop or in a managerial/lead role.  And I truly love to write software applications, I find it to be such a rewarding activity.  Specially when others are using, and better yet, making money using the software you have developed.</p>
<p>Though time and time again I am pulled to lead instead of producer.  Maybe I am just slow and sucky and nobody has the heart to tell me?  It&#8217;s possible, sure.</p>
<p>Fact is, I am there again at my current job and this time I am really, really OK with it.  I am managing Information Systems again, which I seem to always have a bear of a time with aystem admin&#8217;s ( I think it&#8217;s because I spent 8 years as one myself).  So that isn&#8217;t the highlight here, but a necessity of the corporation.  What I am heading up is Information Security, and that has me really charged up.  I have always worked with security, at both a technical and managerial level.  It is a really important step in my corporation&#8217;s life and I am going to bring them to that level while at the same time, bring myself up a few levels too.  It is exciting, scary, overwhelming and challenging.  What else can I ask for out of job?</p>
<p>I have made the hard and firm decision to obtain my <a title="Cerified Informaion Systrems Secuirty Professional" href="https://www.isc2.org/cissp/default.aspx" target="_blank">CISSP</a> certification.  My goal is to sit for it in October; kind of  a birthday gift to myself.  I have looked at this certification for years and shied away from it.  Not this time, I will complete it.  I know at least three of our clients have asked if we have a CISSP certified member on staff in the last year.  It&#8217;s a logical supported next step, and having support from senior management is always a big plus.</p>
<p>Now here is the other exciting side to this. I will not be coding much at all at work.  Why is this exciting to me?  Simple, I will not be tired of coding and I can work on my own projects!  There is nothing I like better than coding stuff <em>I</em> want to.  I would guess most core developers think this way.  I have lent a hand to some open source project and developed some of my own crazy stuff.  My current one, which I personally find very useful is <a title="File hashing and hash compare tool for Windows" href="http://bdfilehash.codeplex.com/" target="_blank">BD File Hash</a>.  A Windows Forms base file hashing and hash compare tool.  Hey someday ask me what the BD stands for.</p>
<p>So as you can see I am hitting the best of both worlds here.  I am greatly improving my professional aptitude and still able to do the things I really enjoy doing. On top of it, I work two miles from my house, so I am not a complete stranger to my family.</p>
<p>Don&#8217;t worry, I&#8221;ll always remain  your IT Slug!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/489/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=489&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/07/13/to-code-or-not-to-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>Wow a pain with Parrelles Plesk</title>
		<link>http://blog.brettski.com/2010/07/13/wow-a-pain-with-parrelles-plesk/</link>
		<comments>http://blog.brettski.com/2010/07/13/wow-a-pain-with-parrelles-plesk/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:00:02 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[computer hell]]></category>
		<category><![CDATA[that poop is cold]]></category>
		<category><![CDATA[ThatPoopIsCold]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=485</guid>
		<description><![CDATA[I have been using Planet SMB hosting for a year or more now, and find them to be an adequate host who give a lot of stuff for the dollar.  I wouldn&#8217;t run a high availability application on them, but than again, I am not doing that, so it all works out.  I highly recommend [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=485&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been using <a href="http://www.planetsmb.com" target="_blank">Planet SMB</a> hosting for a year or more now, and find them to be an adequate host who give a lot of stuff for the dollar.  I wouldn&#8217;t run a high availability application on them, but than again, I am not doing that, so it all works out.  I highly recommend them for any developer who needs a place to showcase stuff and use as a staging site or fee-based hosting site for their clients.  To clarify, when I say high availability, I don&#8217;t complain about them having downtime, because I really don&#8217;t experience much at all.  The issue I do have is wait times.  For applications to spin up, and the Plesk Panel which seems to always be painfully slow and times out. No phone support, though emails are usually answered in a decent amount of time.</p>
<p>The issue I had with Plesk is that when I setup my domains (I get 5!) an expiration date was set on them.  So today at some time they just stopped working!  WTF!  I know I never set this date, is this some strange default which was set?</p>
<p>I set in a critical ticket to <a href="http://www.planetsmb.com" target="_blank">PlanetSMB</a> and it&#8217;s been 15 minutes and no reply.  In this case I figured out what happened, but I still want to see how long it takes to reply to my <em>critical</em> ticket.</p>
<p><strong>UPDATE: </strong>So this is cool, I heard from PlanetSMB Support (Mike Eldredge actually, the owner) in 16 minutes with a good answer to my issue.  So he was right on it with the critical ticket, Yeah Mike!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/485/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=485&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/07/13/wow-a-pain-with-parrelles-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>Taking all the way to the stop</title>
		<link>http://blog.brettski.com/2010/06/16/taking-all-the-way-to-the-stop/</link>
		<comments>http://blog.brettski.com/2010/06/16/taking-all-the-way-to-the-stop/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 04:52:22 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[nerdiness]]></category>
		<category><![CDATA[Dreamhost]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=482</guid>
		<description><![CDATA[Happy Summer!  The kids are out of school and already bored.  My oldest son though is really into reading this year, I mean REALLY into it.  He has probably read 10 books already on summer break. His school has a degree program for reading books during the summer.  Basically the students get a star for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=482&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Happy Summer!  The kids are out of school and already bored.  My oldest son though is really into reading this year, I mean REALLY into it.  He has probably read 10 books already on summer break.</p>
<p>His school has a degree program for reading books during the summer.  Basically the students get a star for each day they read more than twenty minutes.  My son has been doing much more than that I thought it would be great to keep track of it.  I am sure looking back at the list at the end of the Summer he would be pretty impressed by the list too.</p>
<p>My first thought is that I would set him up with a blog, and he could type in the books he read on any given day.  He and I have done some basic web page building together, so I thought he may get a kick out of this.</p>
<p>So I added a new blog to my account here at WordPress and picked a theme I hoped he didn&#8217;t think sucked.  When I went to add his as a contributor to the blog I discovered he needed an email address to that.  Hmm&#8230;.</p>
<p>Well I have thought about setting him up with an email address in the past, but never did it as there was really no reason and he is only eight.  So I went to Comcast to set him up with a family account.  The didn&#8217;t have the name I wanted, damn.  Well I found one close enough and went with that.  At least Comcast has some parental controls, I&#8217;ll have to look deeper into that.</p>
<p>I set him up with a WordPress account and when there to log him in.  When I logged in with his account to verify everything I was greeted with a page of many, many blogs.  Well this is not good, he doesn&#8217;t need to be exposed to to this, too young yet, too dangerous.</p>
<p>Going to the next level</p>
<p>As I pondered this in a background processes it hit me, what about setting up a new domain and hosting the stuff myself!?  I checked at GoDaddy and shit, the domain is available, excellent.</p>
<p>$10.67 / year for the domain, not so bad.  $9.99 for privacy, what!  that&#8217;s a bit outside.  Then it hit me again, <a href="http://www.dreamhost.com/r.cgi?490900" target="_blank">Dreamhost</a>.  Dreamhost has a free domain with a paid subscription and I never used it, perfect.  Off to <a href="http://www.dreamhost.com/r.cgi?490900" target="_blank">Dreamhost</a>&#8230;</p>
<p>I was able to create and host the the domain on my current account and loaded up a WordPress blog in about 10 seconds.  Added an email address and we are ready to go in a more &#8220;controlled&#8221; environment.</p>
<p>So a simple idea has bloomed into a fully hosted domain with private emails and sites, all for an eight year-old.  I am the Tim Allen of the Internet!</p>
<p>So my son and I went over some of the stuff I put together and he is pretty interested in it all.  As expected he is a bit overwhelmed.  That&#8217;s OK, we&#8217;ll take it a step at a time in what ever direction interests him most.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/482/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=482&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/06/16/taking-all-the-way-to-the-stop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>A new convenient way hash compare your files</title>
		<link>http://blog.brettski.com/2010/06/13/a-new-convenient-way-hash-compare-your-files/</link>
		<comments>http://blog.brettski.com/2010/06/13/a-new-convenient-way-hash-compare-your-files/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 03:52:42 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[nerdiness]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[BDFileHash]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=479</guid>
		<description><![CDATA[I just finished a new file hashing tool, BD File Hash, which is hosted on CodePlex under the Microsoft Public License (Ms-PL). The goal behind this Windows tool is an easier way to verify files you download from the internet.  Many applications, ISO&#8217;s, and other files usually list a hash with them.  This hash is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=479&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just finished a new file hashing tool, <a href="http://bdfilehash.codeplex.com/" target="_blank">BD File Hash</a>, which is hosted on <a href="http://www.codeplex.com" target="_blank">CodePlex</a> under the Microsoft Public License (Ms-PL).</p>
<p>The goal behind this Windows tool is an easier way to verify files you download from the internet.  Many applications, ISO&#8217;s, and other files usually list a hash with them.  This hash is used to verify the file you downloaded is the same file the author meant you to download.  It prevents you from using corrupt or exploited downloads by allowing you to verify the file before you use it.</p>
<p>The problem I had with most file hashing tools, is that they needed to be run from a command line, or you had to open the hash value into a text editor and copy/paste it into the hashing application to be compared. So I wanted <a href="http://bdfilehash.codeplex.com/" target="_blank">BD File Hash</a> to be a convenient way to verify files using hashes.</p>
<p>BD File Hash has the following capabilities:</p>
<ul>
<li>Right click any file and select BD File Hash from your Send To menu</li>
<li>Use a file picker to select the file with the authors hash value, it will automatically be parsed from the file and entered into the BD File has application</li>
<li>Easily hash to files to see if they are the same</li>
<li>Supports MD5, SHA-1, and SHA-256
<ul>
<li>Please recommend any other hashing algorithms you may need.</li>
</ul>
</li>
<li>Save your default hash type to the one you use most often</li>
</ul>
<p>BD File Hash requirements:</p>
<ul>
<li>.NET 3.5 SP1</li>
<li>Windows Installer 3.1</li>
</ul>
<p><strong><span style="color:#ff6600;">Give <a href="http://bdfilehash.codeplex.com/" target="_blank">BD File Hash</a> a try today!</span></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/479/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=479&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/06/13/a-new-convenient-way-hash-compare-your-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>Gas Prices, An Economic Measuring Stick</title>
		<link>http://blog.brettski.com/2010/04/19/gas-prices-an-economic-measuring-stick/</link>
		<comments>http://blog.brettski.com/2010/04/19/gas-prices-an-economic-measuring-stick/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 16:06:28 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[interesting view]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=475</guid>
		<description><![CDATA[Like most Americans I have no idea what controls the prices of gasoline.  There doesn&#8217;t seem to be any rhyme or reason to why the prices fluctuate.  The local state government lifts taxes on gas for a short period to reduce the prices (Something Illinois did a few years back).  Though for some reason the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=475&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Like most Americans I have no idea what controls the prices of gasoline.  There doesn&#8217;t seem to be any rhyme or reason to why the prices fluctuate.  The local state government lifts taxes on gas for a short period to reduce the prices (Something Illinois did a few years back).  Though for some reason the price per gallon doesn&#8217;t go down by the amount of the tax removed.  Okay, perhaps the price of gasoline kept rising and offset this a bit.  What is really disturbing is when the tax was put back on the gasoline the price rose more than the tax!</p>
<p>What I have been trying to understand is what happened in September of 2008.  Starting in September 2008 until mid December 2008 the price of gasoline dropped by $2.70 (from $4.30 -&gt; $1.65 <a title="ChicagoGasPrices.com" href="http://www.chicagogasprices.com/Retail_Price_Chart.aspx" target="_blank">ref</a>.)  No government &#8220;stimulus&#8221;, no action by other groups.  Basically the economy was officially in the shit and gas prices plummeted, but why?  I wish I have an answer, but I don&#8217;t.</p>
<p>Now, sixteen months later gasoline has been on a steady increase, rising as the &#8220;economy improves&#8221; (so they are saying).  No reasoning, no rationalization, it just is.  The true control of gasoline prices is so controlled.  I believe it is used as a way to control our economy.  If you think about it there is currency more important to the global economy than oil.  NONE.  If you come up with one, I would love to here it.  Everything relies on oil and its prices have a heavy affect on the lucrativeness of all operations.</p>
<p>We saw this prior to September 2008 when gas was expensive and everyone was crying about it.  I am not saying it wasn&#8217;t a real issue because it was.  Nobody enjoyed paying $80+ to fill up their vehicles.  But of course it hit everywhere.  Carriers increased costs and added &#8220;surcharges&#8221; to offset the increased fuel costs. Airlines did the same.  They needed to show their customers that their price is low, but there is an extra charge for gas.  To me their price is high as I always conciser the bottom line, its irrelevant how they got to it.</p>
<p>So keep an eye on the general gasoline prices in your area and listen to the Markets reports. As the markets improve you will surely see the prices rise and rise.  The will keep rising until  the masses start crying again and everyone ends up paying for their &#8216;relief&#8217; (the money has to come from some place, right?).</p>
<p>Maybe there is something to using gasoline prices as an economic measuring stick.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/475/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/475/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/475/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/475/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/475/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/475/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/475/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/475/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/475/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/475/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/475/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/475/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/475/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/475/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=475&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/04/19/gas-prices-an-economic-measuring-stick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>In Search Of A Better Mouse Trap</title>
		<link>http://blog.brettski.com/2010/04/17/in-search-of-a-better-mouse-trap/</link>
		<comments>http://blog.brettski.com/2010/04/17/in-search-of-a-better-mouse-trap/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 02:00:58 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[experiment]]></category>
		<category><![CDATA[nerdiness]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=467</guid>
		<description><![CDATA[I have this really, really bad habit; I spend a lot of time searching and trying out new tools for my tool box.  Some times to such extent I never get around to actually using the tools to build something, and that is just silly. On the positive side is have given me a lot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=467&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have this really, really bad habit; I spend a lot of time searching and trying out new tools for my tool box.  Some times to such extent I never get around to actually using the tools to build something, and that is just silly.</p>
<p>On the positive side is have given me a lot of exposure to the many, many options available to us, but on the negative side I think I use it as a form of procrastination.  If I am looking for for something, than I don&#8217;t actually have to &#8216;work&#8217; on something.  How convenient.</p>
<p>The toughest part, is that I really enjoy checking out different applications.  Experiencing what so many are putting their hard work into.</p>
<p>So I have started a <a href="http://home.brettski.com" target="_self">list</a>, it is by no means complete, nor do I really plan on making it complete.  Though it will give you a pretty good idea on all the different things I have checked out and played around with.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/467/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=467&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/04/17/in-search-of-a-better-mouse-trap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
		<item>
		<title>Purge 2010</title>
		<link>http://blog.brettski.com/2010/04/12/purge-2010/</link>
		<comments>http://blog.brettski.com/2010/04/12/purge-2010/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 02:20:38 +0000</pubDate>
		<dc:creator>Brettski</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[Purge]]></category>

		<guid isPermaLink="false">http://blog.brettski.com/?p=464</guid>
		<description><![CDATA[I back at it and nothing is safe this year.  I can&#8217;t take the clutter, it&#8217;s just too much for one person to bear.  If my wife gets in my way she may be surprised when &#8216;stuff&#8217; just starts vanishing.  Hey, you don&#8217;t want to clean, than I am making a decision on that &#8216;thing&#8217; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=464&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I back at it and nothing is safe this year.  I can&#8217;t take the clutter, it&#8217;s just too much for one person to bear.  If my wife gets in my way she may be surprised when &#8216;stuff&#8217; just starts vanishing.  Hey, you don&#8217;t want to clean, than I am making a decision on that &#8216;thing&#8217; that has been on the dining room floor for two years.</p>
<p>In boxes, empty; receipt stacks,  gone; toys, age appropriate only otherwise, GONE.  We could open our own toy store, I swear.  Actually we will be, in the form of a garage sale this Summer.  Come one by and buy our stuff, we don&#8217;t want it anymore.</p>
<p>PURGE</p>
<p>I feel better already.</p>
<p>For the record, I started the humongo pile in the corner of the office tonight.  Already have my first bag of trash for the landfill.</p>
<p>If you actually read this far you are probably thinking I am crazy, and you are half right, but you really need to try this, it is such great therapy.  Try this for size; you open your most used email client and there are zero emails in the inbox.  Everything you need is in a folder, everything else is GONE.  Honestly, how many times do you look at those 2312 emails in your inbox now, really?  Probably only the first time you read it.</p>
<p>I will let you in on a little secret for all those emails that you can&#8217;t get rid of.  You can&#8217;t leave them in your inbox, that&#8217;s just clutter and stressful.  Create one folder named <strong>archive</strong> and stick all that clutter email that you just can&#8217;t do without in there.  That simple move can clear up any email you &#8216;just not sure about deleting.&#8217;</p>
<p>Everything else DELETE!</p>
<p>If you are more anal, like I am , create a few folders and organize your emails more.  Google nailed on the head when they went with the search model of Gmail.  Absolute brilliance.</p>
<p>Another little tip.  If you are replying to an email with a question and the original doesn&#8217;t really matter, then DELETE it.  Why keep it, you will get it back with your next round of emails.</p>
<p>PURGE</p>
<p>Can&#8217;t wait to start in the freak&#8217;n garage.  I want my garage back!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brettski111.wordpress.com/464/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brettski111.wordpress.com/464/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brettski111.wordpress.com/464/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brettski111.wordpress.com/464/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brettski111.wordpress.com/464/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brettski111.wordpress.com/464/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brettski111.wordpress.com/464/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brettski111.wordpress.com/464/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brettski111.wordpress.com/464/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brettski111.wordpress.com/464/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brettski111.wordpress.com/464/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brettski111.wordpress.com/464/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brettski111.wordpress.com/464/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brettski111.wordpress.com/464/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.brettski.com&blog=730359&post=464&subd=brettski111&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.brettski.com/2010/04/12/purge-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Brettski</media:title>
		</media:content>
	</item>
	</channel>
</rss>