<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Don Kitchen</title>
	
	<link>http://www.donkitchen.com</link>
	<description>programming, technology, fatherhood and life</description>
	<lastBuildDate>Sat, 14 Nov 2009 14:25:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/donkitchen" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>CMD Email v2.0 released</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/Mmyj4hKauBg/</link>
		<comments>http://www.donkitchen.com/2009/11/14/cmd-email-v2-0-released/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 14:25:00 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[CMD Email]]></category>
		<category><![CDATA[cmd email]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=315</guid>
		<description><![CDATA[CMD Email, the email command line utility I developed (originally discussed here) has been updated to version 2.0.
Here are new features for v2.0:

Updated to target .NET 3.5 Framework
Added support for message body being loaded from a file
Added support for multiple file attachments
Added support for logging to the Windows Application Event Log

You can download the latest [...]]]></description>
			<content:encoded><![CDATA[<p>CMD Email, the email command line utility I developed (originally discussed <a href="http://www.donkitchen.com/2007/10/26/cmd-email-command-line-email-utility/">here</a>) has been updated to version 2.0.</p>
<p>Here are new features for v2.0:</p>
<ul>
<li>Updated to target .NET 3.5 Framework</li>
<li>Added support for message body being loaded from a file</li>
<li>Added support for multiple file attachments</li>
<li>Added support for logging to the Windows Application Event Log</li>
</ul>
<p>You can download the latest runtime or source from the <a href="http://cmdemail.codeplex.com/" target="_blank">project page on CodePlex</a>.</p>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/Mmyj4hKauBg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/11/14/cmd-email-v2-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/11/14/cmd-email-v2-0-released/</feedburner:origLink></item>
		<item>
		<title>Dynamically re-size an iFrame’s height across browsers</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/SoB1KNKc3fY/</link>
		<comments>http://www.donkitchen.com/2009/07/08/dynamically-re-size-an-iframes-height-across-browsers/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 15:40:19 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=306</guid>
		<description><![CDATA[A while back I had a need to dynamically re-size an iFrame&#8217;s height and found a solution using a jQuery plug-in called autoHeight.  What I later found was that this solution provided poor results with Internet explorer when my iFrame&#8217;s contents were fairly large and frequently changing (i.e. via navigation inside the iFrame).
It took quite [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I had a need to dynamically re-size an iFrame&#8217;s height and found a solution using a jQuery plug-in called <a href="http://lib.mobius.tw/jquery/myplugin/iframe_autoHeight/api.htm" target="_blank">autoHeight</a>.  What I later found was that this solution provided poor results with Internet explorer when my iFrame&#8217;s contents were fairly large and frequently changing (i.e. via navigation inside the iFrame).</p>
<p>It took quite a bit of tinkering but I was able to come up with a solution that works (and works well) in IE, Firefox, Safari and Chrome.  It still uses <a href="http://jquery.com/" target="_blank">jQuery</a> but doesn&#8217;t depend on a plug-in.  Here&#8217;s the code in case you&#8217;re looking for the same thing:</p>
<p>First, the iFrame&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;iframe src=&quot;Page1.htm&quot; id=&quot;MyFrame&quot; 
frameborder=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; 
width=&quot;800px&quot; height=&quot;100px&quot; scrolling=&quot;no&quot;&gt;&lt;/iframe&gt;</pre></div></div>

<p>Next, the JavaScript to resize it&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
     <span style="color: #003366; font-weight: bold;">function</span> sizeFrame<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
          jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #339933;">,</span> top.<span style="color: #660066;">document</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> height<span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #003366; font-weight: bold;">var</span> heightDiv <span style="color: #339933;">=</span> jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #339933;">,</span> top.<span style="color: #660066;">document</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">contents</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'body'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'scrollHeight'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #339933;">,</span> top.<span style="color: #660066;">document</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> height<span style="color: #339933;">:</span> heightDiv <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #009900;">&#125;</span>
&nbsp;
     jQuery<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
          sizeFrame<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">load</span><span style="color: #009900;">&#40;</span>sizeFrame<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>            
     <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>This line is needed to initially initialize the height so that it works in Safari and Chrome.  Without this line the window will never shrink to fit smaller content, it will just retain the last biggest height.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#MyFrame&quot;</span><span style="color: #339933;">,</span> top.<span style="color: #660066;">document</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> height<span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<img src="http://feeds.feedburner.com/~r/donkitchen/~4/SoB1KNKc3fY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/07/08/dynamically-re-size-an-iframes-height-across-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/07/08/dynamically-re-size-an-iframes-height-across-browsers/</feedburner:origLink></item>
		<item>
		<title>Visual Studio 2008 is a piece of shit!</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/1-v_oV-ODqU/</link>
		<comments>http://www.donkitchen.com/2009/07/03/visual-studio-2008-is-a-piece-of-shit/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 16:01:23 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=299</guid>
		<description><![CDATA[It&#8217;s been one of those weeks 



It should be noted that I was able to take a screen shot, upload it to Wordpress and make this blog post before that message went away and I was able to interact with Visual Studio.NET again!
]]></description>
			<content:encoded><![CDATA[<p><strong>It&#8217;s been one of those weeks <img src='http://www.donkitchen.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-298 aligncenter" title="visual-studio-wait" src="http://www.donkitchen.com/wp-content/uploads/2009/07/visual-studio-wait.png" alt="visual-studio-wait" width="589" height="185" /></p>
<p style="text-align: center;">
<p style="text-align: left;"><span style="color: #ff0000;"><em><strong>It should be noted that I was able to take a screen shot, upload it to Wordpress and make this blog post before that message went away and I was able to interact with Visual Studio.NET again!</strong></em></span></p>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/1-v_oV-ODqU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/07/03/visual-studio-2008-is-a-piece-of-shit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/07/03/visual-studio-2008-is-a-piece-of-shit/</feedburner:origLink></item>
		<item>
		<title>July 2009 Baltimore SQL Server Users Group Meeting</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/l5oxICqPgxw/</link>
		<comments>http://www.donkitchen.com/2009/07/02/july-2009-baltimore-sql-server-users-group-meeting/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 12:13:30 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[sql server]]></category>
		<category><![CDATA[user groups]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=295</guid>
		<description><![CDATA[Passing along the Baltimore SQL  			Server Users Group July 2009 Meeting Announcement.  I&#8217;m considering attending since we use Reporting Services and SQL Server 2008 here at work.  Here&#8217;s the information in case you may be interested in attending.  Don&#8217;t forget to RSVP via email as noted below.
General Meeting Information

Date: Monday, July 6, 2009
Time: 7:00 [...]]]></description>
			<content:encoded><![CDATA[<p>Passing along the Baltimore SQL  			Server Users Group July 2009 Meeting Announcement.  I&#8217;m considering attending since we use Reporting Services and SQL Server 2008 here at work.  Here&#8217;s the information in case you may be interested in attending.  Don&#8217;t forget to RSVP via email as noted below.</p>
<p><strong>General Meeting Information</strong></p>
<ul>
<li>Date: Monday, July 6, 2009</li>
<li>Time: 7:00 PM</li>
<li>Location:  <a href="http://rs6.net/tn.jsp?et=1102627086518&amp;s=281&amp;e=0018QRC8Rze162oD8E1bJvEdaCXHGXsrncLaPGCducpNGu3M0NKd1sU71QXDKE-KR9sUugQiUNquKPd_XP7OoAnEpwYxuGMZp4j5XHq4i3o99Wy2WvcRkoLXA==" target="_blank"> Merkle</a> located at 7001  				Columbia Gateway Drive, Columbia, MD 21046</li>
<li>Directions: Visit this 				<a href="http://rs6.net/tn.jsp?et=1102627086518&amp;s=281&amp;e=0018QRC8Rze163JSSoLGhaPihsPZVrtNc7h_vZ2k3bWEPQp6TzenJdeUPnKRLb_Vp6lLyRzaPCZEIWHpHe8PBUjOaOWYTew4XrOuefk33wz9vH24i9Q-EOBTebVtBXXZIidviYBRyeeJ950pJ9Lj_G-J8E92WdtvNzBu74AlUicjyoU6UR-F-wF5l0nr2zw4ptmY4IYvWzztbNoKX6yfWYdbvvQvd7nRWxeCGklpxQHPjBEtYt2ZmoNSg==" target="_blank"> MapQuest link for directions</a></li>
<li>RSVP: Please email  				Ray Barley (<a href="mailto:raymondbarley@gmail.com" target="_blank">raymondbarley@gmail.com</a>)  				if you are attending so we can plan appropriately</li>
<li>Web site: 				<a href="http://rs6.net/tn.jsp?et=1102627086518&amp;s=281&amp;e=0018QRC8Rze162Muiyf0Dun2p7hQPPggjyShYd56TwI_OL2bilXzmoBLnpO2epbwQOio1ETFJXpyn0_8XUteSxKxoqGeDUcxmXN3i1iiQ_Z5pI=" target="_blank">http://www.bssug.org/</a></li>
</ul>
<p><strong>Presentation Information</strong></p>
<ul>
<li>Title: SQL Server Reporting Services Report Builder 2.0</li>
<li>Speaker: Craig Guyer of Microsoft</li>
<li>Abstract: Authoring reports for SQL Server Reporting Services is even easier than before using the new stand-alone application Report Builder 2.0 (RB2). In this session we will walk through creating some basic reports, show how RB2 fits in with other report authoring applications, and discuss other new report authoring features in SQL Server 2008.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/l5oxICqPgxw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/07/02/july-2009-baltimore-sql-server-users-group-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/07/02/july-2009-baltimore-sql-server-users-group-meeting/</feedburner:origLink></item>
		<item>
		<title>Don’t pay those shipping fees!</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/gNbZ_pcqSTg/</link>
		<comments>http://www.donkitchen.com/2009/07/02/dont-pay-those-shipping-fees/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 12:05:00 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Deals]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=290</guid>
		<description><![CDATA[I buy tons of stuff from Amazon.com.  It&#8217;s convenient, the prices are usually pretty good, and most of the time you can usually get free shipping if you spend over $25 thanks to their super saving shipping (which, all though they say is the slowest method I usually get stuff in 2 days anyway).
Well, what [...]]]></description>
			<content:encoded><![CDATA[<p>I buy tons of stuff from <a href="http://www.amazon.com" target="_blank">Amazon.com</a>.  It&#8217;s convenient, the prices are usually pretty good, and most of the time you can usually get free shipping if you spend over $25 thanks to their super saving shipping (which, all though they say is the slowest method I usually get stuff in 2 days anyway).</p>
<p>Well, what happens if the thing you want is $18.50?  What about if it&#8217;s $22.53?  You only need another $2.47 to get free shipping (<strong>which may cost you 3x that much</strong>).  There must be a way you can get that free shipping without adding another $30 thing to your order that you didn&#8217;t need&#8230;</p>
<p><img class="alignnone size-full wp-image-289" title="super-saver-shipping" src="http://www.donkitchen.com/wp-content/uploads/2009/07/super-saver-shipping.png" alt="super-saver-shipping" width="709" height="278" /></p>
<p><strong>Enter item fillers</strong>.  These websites are great because they let you search by a specific amount you need in order to qualify for free shipping.  Just load up the site, put in your amount, pick some categories that you may want to look in and optionally put in a search keyword and viola&#8230; you have pages of items that are close to that $2.47 that you needed to spend in order to get free shipping!</p>
<p>Two sites that I found recently were <a href="http://slickfillers.net/" target="_blank">SlickFillers.net</a> and <a href="http://www.filleritem.com/" target="_blank">FillerItem.com</a>.  The first site is the one that I actually used earlier in the week when I was buying some stuff (see screen shot above).  I liked that site better because it showed information about most discounted items and top sellers.  I guess for me I wanted to try to get something that normally costs much more than the $7.44 that I was spending <img src='http://www.donkitchen.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So next time you&#8217;re shopping for something cheap at Amazon and you&#8217;re just shy of getting that free shipping, don&#8217;t forget about these item fillers.  You can also quickly Google <a href="http://www.google.com/search?source=ig&amp;hl=en&amp;rlz=&amp;=&amp;q=amazon+item+fillers&amp;btnG=Google+Search&amp;aq=f&amp;oq=amazon+item+filler" target="_blank">amazon item fillers</a> and you&#8217;ll find these two sites right up there at the top.</p>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/gNbZ_pcqSTg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/07/02/dont-pay-those-shipping-fees/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/07/02/dont-pay-those-shipping-fees/</feedburner:origLink></item>
		<item>
		<title>Dusting off the running shoes</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/aQ7wQJoD6UU/</link>
		<comments>http://www.donkitchen.com/2009/07/01/dusting-off-the-running-shoes/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 10:00:57 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[gadgets]]></category>
		<category><![CDATA[running]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=286</guid>
		<description><![CDATA[Thanks to a co-worker I&#8217;ve been slowly getting back into running lately.  For some reason (maybe having the kids?) I went from running a decent amount a few years ago to not running at all.  Not that having kids is a good reason to stop running and exercising, I guess I just let it become [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to a co-worker I&#8217;ve been slowly getting back into running lately.  For some reason (maybe having the kids?) I went from running a decent amount a few years ago to not running at all.  Not that having kids is a good reason to stop running and exercising, I guess I just let it become an <strong>excuse</strong>.  Either way, I&#8217;ve been much more active this year and for a good while now have been playing racquetball 4+ times a week.  Luckily now that I&#8217;ve gotten back into running I&#8217;m realizing that all that racquetball has gotten me in decent condition to get back into running starting out with 3+ mile runs without much trouble.</p>
<p>Along with dusting off my running shoes I&#8217;ve dusted off and charged back up the <a href="http://www.amazon.com/gp/product/B0000CFYCH?ie=UTF8&amp;tag=donkitchencom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0000CFYCH" target="_blank">Garmin Forerunner</a>.  What the heck is that you ask?  It&#8217;s a wrist-mounted GPS fitness computer!  Come on, you didn&#8217;t think I&#8217;d have a <a href="http://www.donkitchen.com/category/gadgets/" target="_self">gadget</a> for running?  You must not read this site or know me.  Actually, if you&#8217;re into running or thinking of getting into running you may want to consider picking up this or one of their <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref%255F%3Dnb%255Fss%255Fe%26y%3D0%26field-keywords%3Dgarmin%2520forerunner%26url%3Dsearch-alias%253Delectronics&amp;tag=donkitchencom-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957" target="_blank">other models</a>.  It&#8217;s great when you&#8217;re trying to train for a race (5-k, 10-k, half or full marathon, etc) or just want to track your routs/progress and allows you to download your data for <strong>free</strong> to the <a href="http://connect.garmin.com" target="_blank">Garmin Connect website</a>.</p>
<p>Two things to note if you already have one of these devices or consider buying this model.  1, they have a firmware (software) <a href="https://buy.garmin.com/shop/store/downloadsUpdates.jsp?product=010-00328-00&amp;cID=142&amp;pID=230" target="_blank">update</a> for the unit.  Since I hadn&#8217;t used mine in a few years mine was a few versions behind.  All you need for this is to download their <a href="http://www8.garmin.com/products/webupdater/" target="_blank">web updater</a> software and it&#8217;s pretty much automatic from there.  2, this unit only has a serial (RS-232) interface to the computer.  If you don&#8217;t know what that means all you need to know is that most new laptops and Macs don&#8217;t have serial interfaces.  You can solve this problem by picking up a <a href="http://www.amazon.com/gp/product/B00065H0QQ?ie=UTF8&amp;tag=donkitchencom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00065H0QQ" target="_blank">USB to Serial cable adapter</a>.  This will make working with any modern computers (laptops and Macs) much easier and faster.</p>
<p>Hopefully I can stick with the running now and build back up to doing some races.  My co-worker is doing the <a href="http://www.rnrvb.com/" target="_blank">Virginia Beach Half-Marathon</a> this Labor Day weekend.  I would love to go with him but we have so much else going on this summer that I really just can&#8217;t take another weekend away.  I may be able to convince him to do the <a href="http://www.thebaltimoremarathon.com/Race_Info/half22d8.htm" target="_blank">Baltimore Half-Marathon</a> this October.  We&#8217;ll have to see how that works out I guess.</p>
<p>Either way I plan on getting in at least 2 runs a week for now as I ease back into things.30</p>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/aQ7wQJoD6UU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/07/01/dusting-off-the-running-shoes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/07/01/dusting-off-the-running-shoes/</feedburner:origLink></item>
		<item>
		<title>Google or Bing?  Why not both?</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/IHmTW7uPS4M/</link>
		<comments>http://www.donkitchen.com/2009/06/30/google-or-bing-why-not-both/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 23:16:03 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=283</guid>
		<description><![CDATA[Bing is definitely nice on the eyes.  But I can&#8217;t bring myself to stray from &#8220;old faithful&#8220;.  Now, you can have the best of both worlds&#8230;
www.google-vs-bing.com
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bing.com" target="_blank">Bing</a> is definitely nice on the eyes.  But I can&#8217;t bring myself to stray from &#8220;<a href="http://www.google.com" target="_blank">old faithful</a>&#8220;.  Now, you can have the best of both worlds&#8230;</p>
<p><a href="http://www.google-vs-bing.com" target="_blank">www.google-vs-bing.com</a></p>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/IHmTW7uPS4M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/06/30/google-or-bing-why-not-both/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/06/30/google-or-bing-why-not-both/</feedburner:origLink></item>
		<item>
		<title>Got the DSLR, a Cannon EOS Rebel XSi</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/smejHsVzCek/</link>
		<comments>http://www.donkitchen.com/2009/06/26/got-the-dslr-a-cannon-eos-rebel-xsi/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 13:45:15 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[gadgets]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[Canon Rebel XSi]]></category>
		<category><![CDATA[Digital Photography]]></category>
		<category><![CDATA[SLR]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=280</guid>
		<description><![CDATA[To follow up on a previous post about evaluating Digital SLR cameras, I picked up one a few weeks ago before Alex and Avery&#8217;s 3rd birthday party.  As stated in the title, I ended up going with the Canon EOS Rebel XSi.  I ended up picking up a kit bundled with the standard 18-55mm lens [...]]]></description>
			<content:encoded><![CDATA[<p>To follow up on a <a href="http://www.donkitchen.com/2009/05/30/considering-a-digital-slr-camera/">previous post</a> about evaluating Digital SLR cameras, I picked up one a few weeks ago before Alex and Avery&#8217;s 3rd birthday party.  As stated in the title, I ended up going with the <a href="http://www.amazon.com/gp/product/B0012Y6HC8?ie=UTF8&amp;tag=donkitchencom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0012Y6HC8" target="_blank">Canon EOS Rebel XSi</a>.  I ended up picking up a kit bundled with the standard 18-55mm lens and a <a href="http://www.amazon.com/gp/product/B0011NVMO8?ie=UTF8&amp;tag=donkitchencom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0011NVMO8" target="_blank">telephoto lens</a> (50-250mm).</p>
<p>There are definitely a ton of options, most of which I don&#8217;t understand.  I do feel like so far just using the auto-mode the photos have been awesome.  The best feature that I&#8217;ve been loving is the quick recovery time between shooting pictures.  I hope to learn more about the advanced features in the future when I have more time.  For now I&#8217;ll rely on the auto and scene modes.</p>
<p>One thing that I did do was update the camera&#8217;s firmware this week.  In case you&#8217;re not aware, it&#8217;s always a good idea when purchasing any kind of camera, camcorder, etc. to check to see if there are firmware upgrades.  Typically they fix bugs or ad support for new accessories that may have come out since the product was initially released.</p>
<p>If you&#8217;re a fellow Rebel XSi owner you can get the latest firmware and upgrade instructions <a href="http://web.canon.jp/imaging/eosd/firm-e/eosdigital4/firmware.html" target="_blank">here</a>.  The process is very easy and only requires that you have a card reader for your SD card.</p>
<p>By the way, speaking of SD cards, I highly suggest that if you&#8217;re in the market for a DSLR camera that you pickup a good quality SD memory card.  Going with a cheap generic card, which cheap, will not allow you to fully take advantage of the speed that your camera can most likely write to the card.  Generic and cheap cards are slow, and you&#8217;ll wait for the images to be written to your card between pictures.  In order to eliminate this bottleneck I went with the <a href="http://www.amazon.com/gp/product/B001EDTL52?ie=UTF8&amp;tag=donkitchencom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001EDTL52" target="_blank">SanDisk 16gb Extreme III 30MB/s Edition SDHC High Performance Card</a>.</p>
<p>They key here is the 30MB/s speed.  That&#8217;s where this card stands out above others (the 16GB of storage doesn&#8217;t hurt either). I had picked one up at Best Buy the day before the kid&#8217;s birthday party for almost $80 more and ended up ordering the one linked above from Amazon because it was much cheaper.  Once the Amazon.com one came I simply took that box back and returned it to Best Buy.</p>
<p>All in all I&#8217;ve taken a few hundred pictures with the new camera and love it.  It&#8217;s definitely bulky and not as convenient as carrying around the old point and shoot, but the end result is worth it as far as I&#8217;m concerned.</p>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/smejHsVzCek" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/06/26/got-the-dslr-a-cannon-eos-rebel-xsi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/06/26/got-the-dslr-a-cannon-eos-rebel-xsi/</feedburner:origLink></item>
		<item>
		<title>Google Chrome for Mac</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/EKbHIO2hI6k/</link>
		<comments>http://www.donkitchen.com/2009/06/09/google-chrome-for-mac/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 23:59:44 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Google Chrome]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=277</guid>
		<description><![CDATA[You can get an early build of Google Chrome for Mac here.  Use at your own risk!
I&#8217;ll let you know if it blows up my Mac in my next post&#8230;
]]></description>
			<content:encoded><![CDATA[<p>You can get an early build of Google Chrome for Mac <a href="http://www.google.com/chrome/intl/en/eula_dev.html?dl=mac" target="_blank">here</a>.  Use at your own risk!</p>
<p>I&#8217;ll let you know if it blows up my Mac in my next post&#8230;</p>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/EKbHIO2hI6k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/06/09/google-chrome-for-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/06/09/google-chrome-for-mac/</feedburner:origLink></item>
		<item>
		<title>Considering a Digital SLR camera</title>
		<link>http://feedproxy.google.com/~r/donkitchen/~3/8t6TMSiJlhg/</link>
		<comments>http://www.donkitchen.com/2009/05/30/considering-a-digital-slr-camera/#comments</comments>
		<pubDate>Sat, 30 May 2009 10:56:58 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[gadgets]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[Canon Rebel XSi]]></category>
		<category><![CDATA[Digital SLR]]></category>

		<guid isPermaLink="false">http://www.donkitchen.com/?p=273</guid>
		<description><![CDATA[After years of dealing with crummy point and shoot digital cameras with what seems like 30+ seconds wait time between shots we&#8217;re considering purchasing a SLR camera.  And with the latest Consumer Reports doing a rundown on 20+ SLRs it really has me close to making a decision now.  (It&#8217;s funny how Consumer Reports always [...]]]></description>
			<content:encoded><![CDATA[<p>After years of dealing with crummy point and shoot digital cameras with what seems like 30+ seconds wait time between shots we&#8217;re considering purchasing a SLR camera.  And with the latest Consumer Reports doing a rundown on 20+ SLRs it really has me close to making a decision now.  <em>(It&#8217;s funny how Consumer Reports always seems to sense things that I&#8217;m considering purchasing and drops a review in the next issue.  It&#8217;s almost like they&#8217;re reading my minds&#8230;. scary.)</em></p>
<p>While I don&#8217;t think the Digital SLR will completely fill all of our photography needs I think it will slowly become the better option as the kids (two of which will be 3 here in June) get into more activities which will require their own personal sports illustrated (or whatever they do) photographer.  I still see us throwing the crappy old battery hungry point and shoot into the van for occasional use where we may not feel like lugging around a bigger camera.</p>
<p>The one model I&#8217;m seriously considering is a basic/entry level SLR from Canon.  Consumer Reports recommended it and my main dilemma now is to decide if I should get a kit where they bundle in a basic lens or get the body and my own lens separately.  For simplicity sake here&#8217;s a link to the<a title="Canon Digital Rebel XSI 12.2 MP Digital SLR Camera" href="http://www.amazon.com/gp/product/B0012Y6HC8?ie=UTF8&amp;tag=donkitchencom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0012Y6HC8" target="_blank"> Canon EOS Rebel XSi </a>from Amazon.</p>
<p>As you can see from that link you can buy the camera body only or the standard bundle with the EF-S 18-55mm f/3.5-5.6 IS (Image Stabilization) Lens.  If you go by Amazon you&#8217;ll see that there&#8217;s about a $100 difference between the two models.  And while not a big deal, the standard lens is only about the same as a 3x magnification range and is about what I&#8217;d have with my standard point and shoot. While I realize the quality difference would be massive when compared to the point and shoot I feel like not having the ability for distance shots may just have me reaching for the smaller one a lot of the time.</p>
<p>I wonder if it would just be better to get the body by itself and find a full range lens (18-200mm) and carry around 1 lens vs. having two in the bag.  I guess I&#8217;ll really have to consider what the majority of the shots will be.  Maybe having standard zoom (the one you get with the bundle) will be what I use most of the time and I could pickup a <a href="http://www.amazon.com/gp/product/B0011NVMO8?ie=UTF8&amp;tag=donkitchencom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0011NVMO8" target="_blank">telephoto lens</a> (50-250mm) for when the kids start soccer or whatever.  Or, you can find other places like <a href="http://www.bhphotovideo.com/" target="_blank">B&amp;H Photo</a> that sell <a href="http://www.bhphotovideo.com/c/product/589091-REG/Canon__EOS_Rebel_XSi_a_k_a_.html" target="_blank">kits with both the standard zoom and telephoto</a> bundled together.</p>
<p>Hmmm&#8230; decisions, decisions.  If any of you guys have any suggestions I&#8217;d love to hear them.  With two vacations coming up in the next few months I think pulling the trigger soon will result in lots of nice pictures when we&#8217;re on the beach in the Outer Banks this summer and down in Florida conquering Disney this fall.</p>
<img src="http://feeds.feedburner.com/~r/donkitchen/~4/8t6TMSiJlhg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.donkitchen.com/2009/05/30/considering-a-digital-slr-camera/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.donkitchen.com/2009/05/30/considering-a-digital-slr-camera/</feedburner:origLink></item>
	</channel>
</rss>
