<?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>spiroville.com</title>
	<atom:link href="http://spiroville.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://spiroville.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 07 Dec 2009 18:16:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Fog Of War</title>
		<link>http://spiroville.com/blog/2009/11/24/the-fog-of-war/</link>
		<comments>http://spiroville.com/blog/2009/11/24/the-fog-of-war/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 05:51:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=138</guid>
		<description><![CDATA[I don&#8217;t know if The Fog of War is the best documentary ever made  but it is definitely one of the most intriguing.





It works on so many levels. As an historical document of the cold war it is a fascinating look behind the curtain. As a philosophical discussion  it poses many difficult ethical questions.  [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if <a href="http://www.imdb.com/title/tt0317910/" target="_blank">The Fog of War</a> is the best documentary ever made  but it is definitely one of the most intriguing.</p>
<div class="mceTemp">
<dl class="wp-caption alignnone" style="width: 348px;">
<dt class="wp-caption-dt"><img title="The Fog of War" src="http://ecx.images-amazon.com/images/I/51G0JHDNFKL.jpg" alt="The Fog of War" width="338" height="475" /></dt>
</dl>
</div>
<p>It works on so many levels. As an historical document of the cold war it is a fascinating look behind the curtain. As a philosophical discussion  it poses many difficult ethical questions.  And as a portrait of a conflicted individual it is an engrossing look at Robert McNamara.</p>
<p>Overall, The Fog of War is a highly recommended documentary that leaves you feeling a little smarter for having seen it.</p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2009/11/24/the-fog-of-war/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exception Shielding</title>
		<link>http://spiroville.com/blog/2009/07/07/exception-shielding/</link>
		<comments>http://spiroville.com/blog/2009/07/07/exception-shielding/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 04:34:15 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=134</guid>
		<description><![CDATA[My previous post spent over 600 words knocking down the Exception Handling Block, but version 3 and higher does have one nice feature: WCF Exception Shielding.  This allows exceptions received by a WCF service to be mapped to Fault Contracts.
Exception shielding is important in order to hide internal implementation details from service consumers.  This can [...]]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://spiroville.com/blog/2009/05/17/exception-handling-block-enterprise-library/" target="_blank">previous post</a> spent over 600 words knocking down the Exception Handling Block, but version 3 and higher does have one nice feature: WCF Exception <span class="il">Shielding</span>.  This allows exceptions received by a WCF service to be mapped to Fault Contracts.</p>
<p>Exception shielding is important in order to hide internal implementation details from service consumers.  This can make your service easier to use and, more importantly, prevent exposing sensitive internal information in your exceptions.</p>
<p><a href="http://www.devx.com/dotnet/Article/35736/0/page/4" target="_blank">Enterprise Library Exception Shielding </a>seems to be a good use of configuration to decouple a service interface from the underlying implementation.</p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2009/07/07/exception-shielding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exception Handling (Block) &amp; Enterprise Library</title>
		<link>http://spiroville.com/blog/2009/05/17/exception-handling-block-enterprise-library/</link>
		<comments>http://spiroville.com/blog/2009/05/17/exception-handling-block-enterprise-library/#comments</comments>
		<pubDate>Sun, 17 May 2009 04:38:14 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=104</guid>
		<description><![CDATA[Lately, I've been thinking about exceptions vs. error codes.  As usual, Joel On Software has a couple of well thought out posts on the topic.  The first post makes the point that exceptions "create too many possible exit points for a function".  The second post, Making Wrong Code Look Wrong makes some [...]]]></description>
			<content:encoded><![CDATA[<p>Lately, I've been thinking about exceptions vs. error codes.  As usual, <a href="http://www.joelonsoftware.com" target="_blank">Joel On Software</a> has a couple of well thought out posts on the topic.  The <a href="http://www.joelonsoftware.com/items/2003/10/13.html" target="_blank">first post</a> makes the point that exceptions "create too many possible exit points for a function".  The second post, <a href="http://www.joelonsoftware.com/articles/Wrong.html" target="_blank">Making Wrong Code Look Wrong</a> makes some very good points on exception handling as well as other topics.  In the same way that compile time errors are better than runtime errors, it is better to find errors in code simply by reading the code than by being forced to run or debug the code.  That seems like a pretty straight forward statement to me but I'm wondering if people actually agree with it -- what with the popularity of various frameworks where everything is hung together with configuration files.</p>
<p>Those two ideas -- exceptions as flow control and making code look wrong -- led me to think about why I really, really dislike <a href="http://www.codeplex.com/entlib" target="_blank">Microsoft's Enterprise Library</a> <a href="http://msdn.microsoft.com/en-us/library/cc309505.aspx" target="_blank">Exception Handling Block</a>: it combines the worst parts of both.</p>
<p>Consider the following:</p>
<div class="igBar"><span id="lcsharp-2"><a href="#" onclick="javascript:showPlainTxt('csharp-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">C#:</span>
<div id="csharp-2">
<div class="csharp">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0600FF;">try</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; DoSomething<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0600FF;">catch</span> <span style="color: #000000;">&#40;</span>Exception e<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #FF0000;">bool</span> rethrow = </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; ExceptionManager.<span style="color: #0000FF;">HandleException</span><span style="color: #000000;">&#40;</span>e, </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080;">"MySpecialPolicy"</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>rethrow<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">throw</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>My objection: <strong>you have no idea what the exception handler does!</strong>  </p>
<p>Since you can't tell what will happen at this one point, you can't mentally trace the program flow to see if it's logically sound.  This makes development, tracking down bugs, and overall maintenance difficult. </p>
<p>"Wait, wait, wait", you say.  "You can create meaningful policy names to avoid this kind of confusion".  Yes, you can change the policy name to something more meaningful like "BusinessLayerMustRethrowPolicy" so you can understand the intent of the code -- which is a good thing.  However, you still have no idea of the actual behavior at run time since the configuration could be set to not rethrow (for some reason).  Plus, if you are making your exception handling configuration based, then you are implicitly saying that you allow the configuration to be changed to another setting (e.g. not rethrow an exception).  Isn't that the point of putting things in configuration?  To allow behavior to be changed without changing the code.</p>
<p>Since throwing an exception changes the flow of the program, if you modify the Exception Handling Block configuration (behavior) then you are actually creating a new execution path.  Does that mean the program should run "properly" for all possible settings of the configuration?  (Not likely!)  Do you then have to test all of those possible code paths?</p>
<p>Maybe you could implement a policy of no configuration changes without a full test cycle but then how is that much different than performing a code change?  You do skip the issue of introducing a new coding bug<br />
and you avoid a build but you still need to create some sort of deployment package and go through a release cycle (which is the most expensive part in this lifecycle).  Plus there is always the chance of the configuration becoming incorrect "by accident" and the new execution path may introduce some undesirable behavior.  e.g. maybe database changes are committed because, even though an exception occurred, the policy said to not throw an exception and the calling code assumed that all errors would be reported as exceptions.</p>
<p>Other objections to the Exception Handling Block: </p>
<ul>
<li>As a framework, the "if rethrow" construct doesn't really offer a lot of abstraction; you still need to pepper your code with "if rethrow" code in every catch block.
</li>
<li>If you try to use the logging block to log an exception, every log entry for that handler shares all of the same basic log entry information (e.g. event ID).  This can be restricting if you need that kind of control.</li>
</ul>
<p>In general, I avoid the Exception Handling Application Block because it obfuscates the functioning of the program which makes the program harder to understand and maintain.  To me this outweighs any functionality provided by the block.</p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2009/05/17/exception-handling-block-enterprise-library/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Farewell, Scrubs</title>
		<link>http://spiroville.com/blog/2009/05/12/farewell-scrubs/</link>
		<comments>http://spiroville.com/blog/2009/05/12/farewell-scrubs/#comments</comments>
		<pubDate>Tue, 12 May 2009 04:38:18 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=88</guid>
		<description><![CDATA[Scrubs wrapped up what looks to be its final season with a really good 1 hour finale.  The last 2 seasons have been hit and miss and rarely hit the incredible highs of previous years but it was nice to see Scrubs rescued by ABC so it could end its run on its own terms. [...]]]></description>
			<content:encoded><![CDATA[<p>Scrubs wrapped up what looks to be its final season with a really good 1 hour finale.  The last 2 seasons have been hit and miss and rarely hit the incredible highs of previous years but it was nice to see Scrubs rescued by ABC so it could end its run on its own terms.  The finale was a fitting end to one of the funniest and most under rated shows ever.  Scrubs, more than any other show, could play broad comedy one minute and the next minute be deadly serious.  You'd think the effect would be too jarring but somehow they made it work.</p>
<p><object width="456" height="280" data="http://www.youtube.com/v/BMvgZ5SWWFY&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/BMvgZ5SWWFY&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /></object></p>
<p>In honor of the finale here is my list of best Scrubs episodes (in no particular order -- almost):</p>
<p><strong>1. My Old Lady</strong></p>
<p><object width="320" height="265" data="http://www.youtube.com/v/He9tyk_1IAw&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/He9tyk_1IAw&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>2. My Monster</strong></p>
<p><object width="320" height="265" data="http://www.youtube.com/v/CkCGciNLYDQ&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/CkCGciNLYDQ&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /></object></p>
<p><a title="My Own American Girl" href="http://www.youtube.com/watch?v=Q9dPvKJ5L4o#t=6m24s" target="_blank"><strong>3. My Own American Girl</strong> -- Elliot gets a backbone!</a></p>
<p><strong>4. My Occurrence</strong> </p>
<p><object width="320" height="265"><param name="movie" value="http://www.youtube.com/v/HoxrBWhJtfc&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HoxrBWhJtfc&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="320" height="265"></embed></object></p>
<p><strong>5. My Screw Up</strong></p>
<p><object width="320" height="265"><param name="movie" value="http://www.youtube.com/v/CbKJW_DcWTA&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CbKJW_DcWTA&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="320" height="265"></embed></object></p>
<p>And, in my opinion, the best Scrubs episode ever:<br />
<strong>6. My Way Home</strong></p>
<p><object width="320" height="265"><param name="movie" value="http://www.youtube.com/v/H8tmmOL3wKw&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/H8tmmOL3wKw&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="320" height="265"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2009/05/12/farewell-scrubs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Foods I Miss #2</title>
		<link>http://spiroville.com/blog/2009/02/01/foods-i-miss-2/</link>
		<comments>http://spiroville.com/blog/2009/02/01/foods-i-miss-2/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 06:02:42 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=77</guid>
		<description><![CDATA[Sarasoda was "the sparkling citrus cooler for adults" (as the ad says) that had a minimal alcohol content.  It was mainly available in the 80's and I"m not sure if it was specific to Canada or if it was widely available. It was expensive for the time -- I seem to remember it selling for [...]]]></description>
			<content:encoded><![CDATA[<p>Sarasoda was "the sparkling citrus cooler for adults" (as the ad says) that had a minimal alcohol content.  It was mainly available in the 80's and I"m not sure if it was specific to Canada or if it was widely available. It was expensive for the time -- I seem to remember it selling for the very high price of 1 dollar.  Obviously, at that price this was a beverage only for special occasions.  <img src='http://spiroville.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Although I was not quite an adult, I still bought quite a few over the years and they were worth the extra money.  Yum!</p>
<div class="mceTemp">
<dl class="wp-caption alignnone" style="width: 510px;">
<dt class="wp-caption-dt"><img title="Sarasoda" src="http://www.rickfischer.com/assets%20folder/images%20large/sarasoda-1.jpg" alt="Sarasoda" width="500" height="250" /></dt>
</dl>
</div>
<p>If anyone has any other information or memories please share.</p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2009/02/01/foods-i-miss-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nice Try, QuickTax</title>
		<link>http://spiroville.com/blog/2009/01/29/nice-try-quicktax/</link>
		<comments>http://spiroville.com/blog/2009/01/29/nice-try-quicktax/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 05:49:01 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Finance]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=70</guid>
		<description><![CDATA[I got my new copy of QuickTax in the mail the other day.
No, I didn't pay for it.  I didn't even ask for it!
In a previous post, I wrote about why I wouldn't be using QuickTax any longer. It seems that Intuit has decided to mail out physical CDs of QuickTax in the hope of [...]]]></description>
			<content:encoded><![CDATA[<p>I got my new copy of QuickTax in the mail the other day.</p>
<p>No, I didn't pay for it.  I didn't even ask for it!</p>
<p>In a <a title="Not So Fast, QuickTax" href="http://spiroville.com/blog/2008/12/16/not-so-fast-quicktax/" target="_self">previous post</a>, I wrote about why I wouldn't be using QuickTax any longer. It seems that Intuit has decided to mail out physical CDs of QuickTax in the hope of getting folks to install it and then purchase the software.  I think it reeks of a desperate attempt to recapture their lost sales and I'm hoping that people don't fall for this and that this ends up costing Intuit more money than they recoup.</p>
<p>Yes, I'm still bitter over last years money grab.  <img src='http://spiroville.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2009/01/29/nice-try-quicktax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Foods I Miss #1</title>
		<link>http://spiroville.com/blog/2009/01/10/foods-i-miss-1/</link>
		<comments>http://spiroville.com/blog/2009/01/10/foods-i-miss-1/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 05:31:44 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=65</guid>
		<description><![CDATA[Number one in a series (?) of "foods that I wish I could still eat". Maybe I'm watching too much Food TV or something?
For the first installation, we honor the late great cereal: Crispy Wheats 'N Raisins.  For those of you who don't remember, Crispy Wheats 'N Raisins launched in the late 70's and, in [...]]]></description>
			<content:encoded><![CDATA[<p>Number one in a series (?) of "foods that I wish I could still eat". Maybe I'm watching too much Food TV or something?</p>
<p>For the first installation, we honor the late great cereal: Crispy Wheats 'N Raisins.  For those of you who don't remember, Crispy Wheats 'N Raisins launched in the late 70's and, in 1996, was re-branded Crispy Wheaties 'N Raisins.  Unfortunately, even that name change couldn't change the cereal's fortune and it was eventually discontinued.</p>
<p>Man, that was a good cereal.</p>
<p>I couldn't track down the classic "Wizard of Oz" commercials so here is another one:</p>
<p><object width="425" height="344" data="http://www.youtube.com/v/JO7QxVriZfQ&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/JO7QxVriZfQ&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p>Anyone have any other selections?</p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2009/01/10/foods-i-miss-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Not So Fast, QuickTax!</title>
		<link>http://spiroville.com/blog/2008/12/16/not-so-fast-quicktax/</link>
		<comments>http://spiroville.com/blog/2008/12/16/not-so-fast-quicktax/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 06:29:45 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Finance]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=60</guid>
		<description><![CDATA[A few days ago I got an email from QuickTax announcing: "QuickTax, more value now with 8 returns".  Of course, they forgot to mention that they totally ripped everyone off last year when they reduced the number of returns from 5 down to 2.  Now they increase the number of returns up and we are [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I got an email from QuickTax announcing: "QuickTax, more value now with 8 returns".  Of course, they forgot to mention that they totally ripped everyone off last year when they reduced the number of returns from 5 down to 2.  Now they increase the number of returns up and we are supposed to jump up and down?  I don't think so.  Last year, I purchased QuickTax without realizing that the number of returns was too small for my needs.  So, I actually had to go out and either buy more licenses of QuickTax (not likely!) or buy another product.  I chose to purchase UFile mainly because of the price.  Sure, it was a different way to do the tax return but, you know what?  Previous years QuickTax forms were imported fine, the return got done and it cost less than QuickTax.  I'm also thinking about not spending anything for tax software and using studiotax instead.</p>
<p>Whichever way I decide, one thing is certain, Intuit will not be receiving any more of my money.</p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2008/12/16/not-so-fast-quicktax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSI After Eight</title>
		<link>http://spiroville.com/blog/2008/10/14/csi-after-eight/</link>
		<comments>http://spiroville.com/blog/2008/10/14/csi-after-eight/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 00:32:45 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=52</guid>
		<description><![CDATA[No, not the mint.  CSI started it's 9th season last week with a great conclusion to last years Warrick cliffhanger.  It is nice to see William Petersen getting some credit after 8 years (for example, here and here).  Despite the character's introverted nature, his portrayal of Grissom has been the heart of the show since the [...]]]></description>
			<content:encoded><![CDATA[<p>No, not the mint.  CSI started it's 9th season last week with a great conclusion to last years Warrick cliffhanger.  It is nice to see William Petersen getting some credit after 8 years (for example, <a title="EW" href="http://popwatch.ew.com/popwatch/2008/10/csi.html" target="_blank">here</a> and <a title="Uncle Barky" href="http://www.unclebarky.com/reviews_files/dc8a425ba6075ea9d6f00cf16b407b82-514.html#unique-entry-id-514" target="_blank">here</a>).  Despite the character's introverted nature, his portrayal of Grissom has been the heart of the show since the debut episode.</p>
<p>The first episode of season 9 was one of the best single episodes in recent memory (the miniature killer arc was great from season 7) and Petersen's performance was masterful in its controlled emotion.  In the opening scene, Grissom's clenched jaw communicates so much.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/sAYCj7i8-3w&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/sAYCj7i8-3w&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2008/10/14/csi-after-eight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Feeble Breeze</title>
		<link>http://spiroville.com/blog/2008/10/03/a-feeble-breeze/</link>
		<comments>http://spiroville.com/blog/2008/10/03/a-feeble-breeze/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 03:58:07 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://spiroville.com/blog/?p=46</guid>
		<description><![CDATA[Heather Mallick's September 5th column (now removed) caused quite the backlash against her and the CBC.  Initially the CBC stood behind the hatchet job article.  On September 25th, the CBC Ombudsman, Vince Carlin, issued his review of the matter. He agrees that the article offers little facts to back up the "opinions" (my air quotes) [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.heathermallick.ca/cbc.ca-columns/a-mighty-wind-blows-through-republican-convention.html" target="_blank">Heather Mallick's September 5th column</a> (now removed) caused quite the backlash against her and the CBC.  Initially the CBC stood behind the <span style="text-decoration: line-through;">hatchet job</span> article.  On September 25th, the CBC Ombudsman, Vince Carlin, <a title="Ombudsman Review" href="http://www.cbc.ca/ombudsman/page/MALLICK-PALIN.pdf" target="_blank">issued his review of the matter.</a> He agrees that the article offers little facts to back up the "opinions" (my air quotes) presented in the article.  He also notes that CBCNews.ca does not present a diverse range of opinions.</p>
<p>Four days later, publisher <a title="We erred..." href="http://www.cbc.ca/canada/story/2008/09/28/f-vp-cruickshank.html" target="_blank">John Cruickshank offers up...well not quite an apology</a>.  I'm not actually sure what you would call it.  I guess the best would be an admission of judgment error.  On the plus side, Mr. Cruickshank indicates that the CBC will attempt to expand it's diversity of opinions.</p>
<p>I think that is a good step.  <span class="r">By all means let the CBC present opinions but let's focus on the ideas, reasoning and thoughts behind those opinions and not on how people look, what gender they are or what their family is like. And if opinions are presented, then please present a wide range of opinions from all sides. </span></p>
<p><span class="r">It seems like the least we could ask from Canada's public broadcaster.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://spiroville.com/blog/2008/10/03/a-feeble-breeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
