<?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>spechal.com &#187; Uncategorized</title>
	<atom:link href="http://spechal.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://spechal.com</link>
	<description>[spesh-uhl]</description>
	<lastBuildDate>Thu, 21 Jan 2010 11:50:50 +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>What is the IQ of a Raccoon?</title>
		<link>http://spechal.com/2010/01/21/what-is-the-iq-of-a-raccoon/</link>
		<comments>http://spechal.com/2010/01/21/what-is-the-iq-of-a-raccoon/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 11:50:41 +0000</pubDate>
		<dc:creator>Spechal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spechal.com/?p=128</guid>
		<description><![CDATA[This question was posed on WikiAnswers and I couldn&#8217;t resist answering&#8230;
It depends on which raccoon you select for testing.  Raccoons like shiny objects, so you should build traps using silver and gold.  You will obviously want to test the raccoon that selects the gold since gold bullion is worth more.  The other [...]]]></description>
			<content:encoded><![CDATA[<p>This question was posed on WikiAnswers and I couldn&#8217;t resist answering&#8230;</p>
<p>It depends on which raccoon you select for testing.  Raccoons like shiny objects, so you should build traps using silver and gold.  You will obviously want to test the raccoon that selects the gold since gold bullion is worth more.  The other raccoon is typical as it went for the more shiny object.</p>
]]></content:encoded>
			<wfw:commentRss>http://spechal.com/2010/01/21/what-is-the-iq-of-a-raccoon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What do you want to read?</title>
		<link>http://spechal.com/2009/12/29/what-do-you-want-to-read/</link>
		<comments>http://spechal.com/2009/12/29/what-do-you-want-to-read/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 01:56:07 +0000</pubDate>
		<dc:creator>Spechal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spechal.com/?p=109</guid>
		<description><![CDATA[So I am pretty much out of ideas for blogging as you can see from my last post being almost a month ago.
What do you want me to write about?
]]></description>
			<content:encoded><![CDATA[<p>So I am pretty much out of ideas for blogging as you can see from my last post being almost a month ago.</p>
<p>What do you want me to write about?</p>
]]></content:encoded>
			<wfw:commentRss>http://spechal.com/2009/12/29/what-do-you-want-to-read/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Epic Self Documenting Code</title>
		<link>http://spechal.com/2009/11/30/codethatdocumentsitselfsowellitdoesnotneedcomments-the-daily-wtf/</link>
		<comments>http://spechal.com/2009/11/30/codethatdocumentsitselfsowellitdoesnotneedcomments-the-daily-wtf/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 02:27:44 +0000</pubDate>
		<dc:creator>Spechal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spechal.com/?p=89</guid>
		<description><![CDATA[switch (mIntegrationDirection)
{
   case InventoryIntegrationDirection.DoTheSameChangeInShop:
      DoTheSameChangeInShop(GetChangedDataFromInventory(mLastSynchDate));
      break;

   case InventoryIntegrationDirection.DoTheSameChangeInInventory:
      DoTheSameChangeInInventory(GetChangedDataFromShop(mLastSynchDate));
      break;

   case InventoryIntegrationDirection.DoTheSameChangeInShopThenDoTheSameChangeInInventoryForNotChangedDataInInventory:
      DoTheSameChangeInShopThenDoTheSameChangeInInventoryForNotChangedDataInInventory(
	   GetChangedDataFromInventory(mLastSynchDate),
	   GetChangedDataFromShop(mLastSynchDate));
      [...]]]></description>
			<content:encoded><![CDATA[<pre class="php" name="code">switch (mIntegrationDirection)
{
   case InventoryIntegrationDirection.DoTheSameChangeInShop:
      DoTheSameChangeInShop(GetChangedDataFromInventory(mLastSynchDate));
      break;

   case InventoryIntegrationDirection.DoTheSameChangeInInventory:
      DoTheSameChangeInInventory(GetChangedDataFromShop(mLastSynchDate));
      break;

   case InventoryIntegrationDirection.DoTheSameChangeInShopThenDoTheSameChangeInInventoryForNotChangedDataInInventory:
      DoTheSameChangeInShopThenDoTheSameChangeInInventoryForNotChangedDataInInventory(
	   GetChangedDataFromInventory(mLastSynchDate),
	   GetChangedDataFromShop(mLastSynchDate));
      break;

   case InventoryIntegrationDirection.DoTheSameChangeInInventoryThenDoTheSameChangeInShopForNotChangedData:
      DoTheSameChangeInInventoryThenDoTheSameChangeInShopForNotChangedData(
	   GetChangedDataFromShop(mLastSynchDate),
	   GetChangedDataFromInventory(mLastSynchDate));
      break;

   default:
      break;
}</pre>
<p>From The Daily WTF &#8230; http://thedailywtf.com/Articles/CodeThatDocumentsItselfSoWellItDoesNotNeedComments.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://spechal.com/2009/11/30/codethatdocumentsitselfsowellitdoesnotneedcomments-the-daily-wtf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you build it, they will come.</title>
		<link>http://spechal.com/2009/11/14/if-you-build-it-they-will-come/</link>
		<comments>http://spechal.com/2009/11/14/if-you-build-it-they-will-come/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 19:06:23 +0000</pubDate>
		<dc:creator>Spechal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spechal.com/?p=5</guid>
		<description><![CDATA[Well, if you are reading this you can see that all of the other content is gone.  Why, you may be asking yourself.  I decided to downgrade to a shared hosting account and revamp my internet image in the wake of the massive recession.  I couldn&#8217;t justify paying $170 a month on a dedicated server [...]]]></description>
			<content:encoded><![CDATA[<p>Well, if you are reading this you can see that all of the other content is gone.  Why, you may be asking yourself.  I decided to downgrade to a shared hosting account and revamp my internet image in the wake of the massive recession.  I couldn&#8217;t justify paying $170 a month on a dedicated server when all I really needed it for was Subversion access and 100 shoutcast slots for a donated BassDrive relay.</p>
<p>Running phpDealer was great and was very fulfilling, but in end end I am 1 man battling a barrage of developers and companies with deep pockets.  I am a great developer with lots of great ideas, so I am sure some other application will get built.</p>
<p>Back to the new internet image.  What will this new image be?  Who knows.  I am still me, so I am sure it will be something interesting and related to technology.</p>
<p>Only time will tell.</p>
]]></content:encoded>
			<wfw:commentRss>http://spechal.com/2009/11/14/if-you-build-it-they-will-come/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
