<?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>Mike's Blog &#187; mike</title>
	<atom:link href="http://www.mikeheijmans.com/author/mike/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikeheijmans.com</link>
	<description>A site about everything and nothing at all</description>
	<lastBuildDate>Tue, 17 Nov 2009 16:44:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>rsync saves me again</title>
		<link>http://www.mikeheijmans.com/2009/11/rsync-saves-me-again/</link>
		<comments>http://www.mikeheijmans.com/2009/11/rsync-saves-me-again/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 16:42:12 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=153</guid>
		<description><![CDATA[Thank you rsync for saving my ass again.
I have an Apple Mac G5 that I use for running my DAW&#8217;s and music production. About a year ago I reinstalled the OS from scratch and set the partition type as Case-Sensitive. At the time I thought that was clever because I work in linux all day [...]]]></description>
			<content:encoded><![CDATA[<p>Thank you rsync for saving my ass again.</p>
<p>I have an Apple Mac G5 that I use for running my DAW&#8217;s and music production. About a year ago I reinstalled the OS from scratch and set the partition type as Case-Sensitive. At the time I thought that was clever because I work in linux all day and linux is case-sensitive. Wow was that a mistake. It is amazing how much case-sensitivity causes headaches on a daily basis. Adobe Photoshop (and most other adobe products) will not install. They require case-insenstive operating systems&#8230; (case-insensitive is the default for OSX). Protools, although doesn&#8217;t require it, doesn&#8217;t seem to work correctly under a case-sensitive OS. Even iTunes has it&#8217;s share of issues. Which is where rsync saved the day for me.</p>
<p>In my iTunes library I ended up with a bunch of files that named the same, some with capital letters and some without.  For example, I have a two files in a directory named: &#8220;Coheed and Cambria &#8211; Welcome Home&#8221; and &#8220;coheed and cambria &#8211; Welcome Home&#8221;. How it got like that I will never know but it really made things tough.</p>
<p>Last week I bought a 1TB SATA drive from Fry&#8217;s and installed it in the G5. I then moved all my project files and audio files and everything important off of the main hard drive to the new one, which I of coarse formatted as case-insensitive preparing for a fresh install of OSX. Well, when I dropped the iTunes folder on the new drive it started copying only to error when it hit the Coheed directory. Because in a case-sensitive environment there were two Welcome Home files (one with capitals and one without) and in a case-insensitive env they are the same file. Needless to say the finder copy failed and I would have had to wade through 19GB of music to find where this happens and clean it up to move everything over.</p>
<p>Welcome rsync to save the day. I opened up my good &#8216;ol terminal and popped off an rsync instead:</p>
<p>rsync -av &#8211;inplace /Users/heijmans/Music/iTunes /Volumes/MusicDrive/</p>
<p>rsync is able to overwrite the files without caring and TADA! all fixed! <img src='http://www.mikeheijmans.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thank you rsync for being so awesome.</p>
<p>Command expaination:</p>
<p>-av &#8211;inplace means:</p>
<p>a = archive: copy over everything. (there is more to it but you will need to go read the manual)</p>
<p>v = verbose: show me what you are doing</p>
<p>&#8211;inplace = inplace: don&#8217;t copy over to a temp file and then compare the source and dest. Just overwrite the dest file inplace. This is handy if you are running an rsync for the first time and there is nothing to compare. It speeds it up a bit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/11/rsync-saves-me-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Write tests and save time</title>
		<link>http://www.mikeheijmans.com/2009/08/write-tests-and-save-time/</link>
		<comments>http://www.mikeheijmans.com/2009/08/write-tests-and-save-time/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 23:12:21 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=148</guid>
		<description><![CDATA[I never could understand why developers didn&#8217;t write tests. The concept of a test is simple. You write a little extra code now that tests the outcome you want or have so that, in the future, when you add a feature or decide to refactor into something simpler or better, you know that you didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I never could understand why developers didn&#8217;t write tests. The concept of a test is simple. You write a little extra code now that tests the outcome you want or have so that, in the future, when you add a feature or decide to refactor into something simpler or better, you know that you didn&#8217;t break anything without having to walk through all the test cases by hand.</p>
<p>There are two approaches to writing tests and one of them is more conducive to test writing then the other.</p>
<p>The first way is to write your application code first then write the tests to back it up. The first problem with this is a matter of motivation really. After writing all the application code and making it work, I find it very hard to motivate myself to write the little extra bit of tests instead of diving right in to the new feature on the roadmap. Why write the tests after you know it works? Well, again, what if you have to wedge a feature in there or refactor? Then you have to recall all the stuff that you tested by hand while you were building it and then test it again, by hand, or write tests at that point and Murphy&#8217;s law says that you will forget at least one critical case the second time around.  That is why the second choice is the better.</p>
<p>The second way to develop with tests is to write the tests for the functionality that you want and then write the code to make the tests pass. This is the Agile approach and, in my opinion, the better. Why? Well, you are writing tests based on requirements. So you will know as soon as your code does what you want. Second, you are writing tests based on what you are encountering while writing the application. This lends itself to more coverage because you will be writing tests for all the little edge cases you will encounter while writing the application. This means that, in the future, when you refactor or go muddling around, you can verify, RIGHT THEN, if you broke anything.</p>
<p>I have heard managers complain about developers spending time on tests and not on features first because users and clients won&#8217;t see the tests and time should be spent on user/client features. Well, here is the reality, a little time spent at the beginning of a project writing tests saves a lot of time in the end because you don&#8217;t need to spend so much time verifying feature requirements while writing. Plus the QA process is much faster and smoother because you are handing of working code from the beginning. Writing tests at the beginning usually saves me more than 10% time on the same project where I write the application code only with no tests! That is 10% faster to release and ensures better user experience in the long run because I verified that the project is doing what it should and handling errors properly before I even wrote the application!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/08/write-tests-and-save-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kitty cuteness</title>
		<link>http://www.mikeheijmans.com/2009/07/kitty-cuteness/</link>
		<comments>http://www.mikeheijmans.com/2009/07/kitty-cuteness/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 14:39:07 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Animals]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/2009/07/kitty-cuteness/</guid>
		<description><![CDATA[

Kitty cuteness
Originally uploaded by parabuzzle

Random Kitty photo&#8230; This is Leo after he had a tumor removed from the top of his head. He was doing something that he knew he wasn&#8217;t supposed to be doing and after I caught him he started to ham it up so I would forget what he was doing&#8230; it [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"><a title="photo sharing" href="http://www.flickr.com/photos/parabuzzle/3707360118/"><img style="border: solid 2px #000000;" src="http://farm3.static.flickr.com/2509/3707360118_20a9336814_m.jpg" alt="" /></a></p>
<p><span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/parabuzzle/3707360118/">Kitty cuteness</a></p>
<p>Originally uploaded by <a href="http://www.flickr.com/people/parabuzzle/">parabuzzle</a><br />
</span></div>
<p>Random Kitty photo&#8230; This is Leo after he had a tumor removed from the top of his head. He was doing something that he knew he wasn&#8217;t supposed to be doing and after I caught him he started to ham it up so I would forget what he was doing&#8230; it worked.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/07/kitty-cuteness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Damnit Bluehost and your gem updates!</title>
		<link>http://www.mikeheijmans.com/2009/07/damnit-bluehost-and-your-gem-updates/</link>
		<comments>http://www.mikeheijmans.com/2009/07/damnit-bluehost-and-your-gem-updates/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 23:31:12 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/2009/07/damnit-bluehost-and-your-gem-updates/</guid>
		<description><![CDATA[I host some stuff with bluehost and I have to say that I am pretty fed up with them and shared hosting! I know shared hosting is never a good idea but for something as simple as http://isitabugorfeature.com it should be a non-issue. Bluehost has &#8220;rails support&#8221; but the assholes keep updating gems without letting [...]]]></description>
			<content:encoded><![CDATA[<p>I host some stuff with bluehost and I have to say that I am pretty fed up with them and shared hosting! I know shared hosting is never a good idea but for something as simple as http://isitabugorfeature.com it should be a non-issue. Bluehost has &#8220;rails support&#8221; but the assholes keep updating gems without letting anyone know and there isn&#8217;t a list or anything I can subscribe to that would let me know about these sort of very relevant updates. I have been burned again.</p>
<p>Today someone mentioned to me that bug or feature was down and I logged in and found that, sure enough, they had updated the rails gem. So I changed my gem requirement in my environment.rb file but my app relies on some 2.2.2 specific stuff so it wouldn&#8217;t start. So, I am forced to get the rails-2.2.2 tag from github and put it in vendor/rails to get the site back up again. I am so tired of this. I am done with bluehost and shared hosting. I am going to begin migrating everything to my slicehost slices and call it a day.</p>
<p>Goodbye bluehost, I would love to say it was all great but I can&#8217;t&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/07/damnit-bluehost-and-your-gem-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My TalkBox Project Status</title>
		<link>http://www.mikeheijmans.com/2009/02/my-talkbox-project-status/</link>
		<comments>http://www.mikeheijmans.com/2009/02/my-talkbox-project-status/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 20:53:26 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/2009/02/my-talkbox-project-status/</guid>
		<description><![CDATA[A few months back I posted that I would be building my own DIY Talk Box. I have finally gotten around to doing it. I managed to pickup a PylePro PDS772 for $20 and it was still in the box. The thing has a great frequency range (500Hz to 16KHz) and is very powerful at [...]]]></description>
			<content:encoded><![CDATA[<p>A few months back I posted that I would be building my own DIY Talk Box. I have finally gotten around to doing it. I managed to pickup a PylePro PDS772 for $20 and it was still in the box. The thing has a great frequency range (500Hz to 16KHz) and is very powerful at a whopping 300W RMS with a peak of 600W. I managed to pickup all the parts I needed from Fry&#8217;s Electronics and Home Depot and cobbled it together earlier in the week. Boy, does it sound good. I am making a HowTo video to show all the steps and explain some of the gotcha&#8217;s I expierenced on the project. So that video is coming very soon. I also had a Crown D-75 reference amp tucked away that I decided to drive the Talk Box with but I wanted to switch it to Bridge Mono and the service shop said it would cost $125 to get done so I sent an email to crown asking for the service manual and within a day I had all the schematics (including all the older revisions) emailed back to me. Upon looking at the schematics I found that it was a single jumper that needed to be changed and so it took me a total of 5 minutes to switch to bridge mono. There is a HowTo video for that coming as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/02/my-talkbox-project-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HellaNZB and HellaTweet</title>
		<link>http://www.mikeheijmans.com/2009/01/hellanzb-and-hellatweet/</link>
		<comments>http://www.mikeheijmans.com/2009/01/hellanzb-and-hellatweet/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 22:49:39 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/2009/01/hellanzb-and-hellatweet/</guid>
		<description><![CDATA[Over the weekend I was playing around with my media server, bigsur. I use HellaNZB as my downloader and I really wanted a way to know when things are finished downloading. I thought to myself, wouldn&#8217;t it be nice to have my mediaserver ping me somehow when it is done downloading and processing an nzb? [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I was playing around with my media server, bigsur. I use HellaNZB as my downloader and I really wanted a way to know when things are finished downloading. I thought to myself, wouldn&#8217;t it be nice to have my mediaserver ping me somehow when it is done downloading and processing an nzb? I then went on a search for such an application and could not find it. Could I be the first in need of such an application? Surely someone has built it&#8230; no? I couldn&#8217;t find a thing. So I decided to build my own notifier using twitter. That&#8217;s right&#8230; a twitter feed for my media server. I call it HellaTweet and you can download it from <a href="http://hellatweet.mikeheijmans.com/">hellatweet.mikeheijmans.com</a>. </p>
<p><img style="max-width: 800px;" src="http://img.skitch.com/20090120-md6thjhx3ae6k92186skr1pwiu.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/01/hellanzb-and-hellatweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Socks Proxy over SSH &#8211; Mac/Linux HowTo</title>
		<link>http://www.mikeheijmans.com/2009/01/socks-proxy-over-ssh-maclinux-howto/</link>
		<comments>http://www.mikeheijmans.com/2009/01/socks-proxy-over-ssh-maclinux-howto/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 22:44:27 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/2009/01/socks-proxy-over-ssh-maclinux-howto/</guid>
		<description><![CDATA[Here is the problem. You are at work or visiting your mom back in your home state and you want to get access to your home network. You could:

spend hours/days/years making a vpn work using a consumer grade vpn router which, lets face it, is a cheapo unreliable piece of hardware.
buy a $500+ commercial grade [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the problem. You are at work or visiting your mom back in your home state and you want to get access to your home network. You could:</p>
<ul>
<li>spend hours/days/years making a vpn work using a consumer grade vpn router which, lets face it, is a cheapo unreliable piece of hardware.</li>
<li>buy a $500+ commercial grade vpn appliance</li>
<li>spend hours/days/years building your own router using linux and add a vpn server to that</li>
</ul>
<p><b><br />OR</b></p>
<p><font face="sans-serif">You can use ssh to create a socks proxy. </p>
<p>What is a socks proxy? Socks is an internet protocol that facilitates the routing of network packets&nbsp; between client-server applications via a proxy server.</p>
<p>The first requirement is an open ssh server. You can use ssh on your router (if it has the feature &#8211; look at <a target="_blank" href="http://openwrt.org/">OpenWRT</a> if not) or you can forward the ssh port from a server inside your network using the router. Most routers have port forwarding so this is the easiest solution. Make sure you set up something like <a target="_blank" href="http://www.dyndns.com/">dyndns</a> so that you don&#8217;t have to remember your ip address. Plus most isp&#8217;s use dynamic ip addresses so your ip will change from time to time and dyndns will allow that to happen without you needing to do a thing.</p>
<p>Now that you can ssh to your home network you want to setup the tunnel. In the terminal you want to use the -D command to set the local socks port. Here is an example:</p>
<p></font><br />
<blockquote><font face="sans-serif">ssh -D 1080 -p 22 username@homenetwork.net</font></p></blockquote>
<p><font face="sans-serif"><br />In the example 1080 is the port for your socks proxy to accept connections and 22 is ssh port that you are connecting to. Lastly is your username and host to connect to. Once you have logged in to the machine you can minimize the window.</p>
<p>Next, in firefox&#8217;s Preferrences -&gt; Advanced -&gt; Network -&gt; Settings Window or your computer&#8217;s network proxy settings. You configure the socks proxy as 127.0.0.1 port 1080. </p>
<p>That&#8217;s it. Now when you browse the internet the packet is going to the machine you connected to via ssh first. This means that you are browsing as if you were at that machine. You can then browse to local ip addresses in your home network and access those pages. For example, if your router&#8217;s status page is at 192.168.1.1/status you can type that in the url and get that page. Try it. <br /></font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/01/socks-proxy-over-ssh-maclinux-howto/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Resolution List 2009</title>
		<link>http://www.mikeheijmans.com/2009/01/the-resolution-list-2009/</link>
		<comments>http://www.mikeheijmans.com/2009/01/the-resolution-list-2009/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 14:35:05 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=130</guid>
		<description><![CDATA[I have never made an official New Year&#8217;s Resolution in my life but I really have some stuff I need to do this year and I am hoping that if I write some stuff down, I can do it. So here it goes.
This year I resolve to:

Exercise 3 times a week.
Resume morning meditation
Pay off my [...]]]></description>
			<content:encoded><![CDATA[<p>I have never made an official New Year&#8217;s Resolution in my life but I really have some stuff I need to do this year and I am hoping that if I write some stuff down, I can do it. So here it goes.</p>
<p>This year I resolve to:</p>
<ul>
<li>Exercise 3 times a week.</li>
<li>Resume morning meditation</li>
<li>Pay off my credit cards</li>
<li>Finish at least one personal project that I have started</li>
<li>Write more things down so I don&#8217;t forget as much</li>
<li>Take better care of myself</li>
</ul>
<p>That&#8217;s it. Lets see how that works&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/01/the-resolution-list-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Look for the New Year</title>
		<link>http://www.mikeheijmans.com/2009/01/new-look-for-the-new-year/</link>
		<comments>http://www.mikeheijmans.com/2009/01/new-look-for-the-new-year/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 21:23:29 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=117</guid>
		<description><![CDATA[If you are one of my regular readers, I am sure that you have noticed that I changed my blog&#8217;s look. I felt it was time for a change for 2009. (Plus my old theme had a bug that pissed me off) This new theme is a tweaked version of the carrington theme featured on [...]]]></description>
			<content:encoded><![CDATA[<p>If you are one of my regular readers, I am sure that you have noticed that I changed my blog&#8217;s look. I felt it was time for a change for 2009. (Plus my old theme had a bug that pissed me off) This new theme is a tweaked version of the <a title="Carrington Theme Site" href="http://carringtontheme.com/">carrington</a> theme featured on the wordpress theme site.  I tweaked the layout to match my style as you can see from the darker body background with the white content box and the full width footer. The problem is that the theme doesn&#8217;t seem to render properly in Internet Exploder. Stoopid microsoft :=/ I don&#8217;t support that browser anyway and if you are reading my blog with Internet Explorer&#8230; you should switch to <a href="http://www.getfirefox.com">Firefox</a>, It is far superior! I have verified that it works great in Firefox and Safari. So enjoy the new look.</p>
<p><a href="http://www.apple.com/safari/download/"><img class="alignnone size-full wp-image-118" title="Safari - Better than Internet Exploder" src="http://www.mikeheijmans.com/wp-content/uploads/2009/01/safari-logo.jpg" alt="safari = good" width="95" height="95" /></a><a href="http://www.getfirefox.com"><img class="alignnone size-full wp-image-119" title="FireFox - Better than Internet Exploder" src="http://www.mikeheijmans.com/wp-content/uploads/2009/01/firefox-logo.jpg" alt="firefox = good" width="87" height="87" /></a><a title="IE=EVIL" href="http://toastytech.com/evil/index.html" target="_blank"><img class="alignnone size-full wp-image-121" title="Get outta here with that crap!" src="http://www.mikeheijmans.com/wp-content/uploads/2009/01/no-ie2-1.jpg" alt="IE = bad" width="85" height="84" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/01/new-look-for-the-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Club Nintendo Fail!</title>
		<link>http://www.mikeheijmans.com/2008/12/club-nintendo-fail/</link>
		<comments>http://www.mikeheijmans.com/2008/12/club-nintendo-fail/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 00:08:36 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Video Games]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/2008/12/club-nintendo-fail/</guid>
		<description><![CDATA[Much like many people, I got a Nintendo WII for the holidays and much like most of those people I attempted to signup for club nintendo &#8211; club.nintendo.com. I say attempted because nintendo doesn&#8217;t seem to know how to run a java web application or they didn&#8217;t plan for the kind of hit their application [...]]]></description>
			<content:encoded><![CDATA[<p>Much like many people, I got a Nintendo WII for the holidays and much like most of those people I attempted to signup for club nintendo &#8211; club.nintendo.com. I say attempted because nintendo doesn&#8217;t seem to know how to run a java web application or they didn&#8217;t plan for the kind of hit their application would receive after the holiday rush. I have been trying to register my wii serial number with them to extend my warranty and create my family account all day only to be met with 500 error after 500 error. The worst part is that they didn&#8217;t even create a custom error page. It is the standard error document. You will also notice that there was a 404 when the server attempted to fetch the error page it is supposed to display. It is bad enough that they can&#8217;t keep their app servers running but because of the sorry error document handling, I FAIL YOU NINTENDO!</p>
<p><img src="http://img.skitch.com/20081231-bbjiim466piea95unegd2tj9wr.jpg" alt="" width="400" height="186" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2008/12/club-nintendo-fail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
