<?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>WMB Dev</title>
	<atom:link href="http://blog.wmbdev.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.wmbdev.com</link>
	<description>Bill Blaettler's tech blog</description>
	<lastBuildDate>Fri, 19 Feb 2010 13:08:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Custom Delegates in Objective-C</title>
		<link>http://blog.wmbdev.com/74/custom-delegates-in-objective-c</link>
		<comments>http://blog.wmbdev.com/74/custom-delegates-in-objective-c#comments</comments>
		<pubDate>Fri, 19 Feb 2010 13:08:07 +0000</pubDate>
		<dc:creator>wmblaettler</dc:creator>
				<category><![CDATA[iPhone / iPod Touch]]></category>

		<guid isPermaLink="false">http://blog.wmbdev.com/?p=74</guid>
		<description><![CDATA[By far the most clear and concise example of writing custom delegates:
http://jonsterling.github.com/2009/08/01/using-custom-delegates-in-objective-c.html


No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>By far the most clear and concise example of writing custom delegates:</p>
<p><a href="http://jonsterling.github.com/2009/08/01/using-custom-delegates-in-objective-c.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/jonsterling.github.com');">http://jonsterling.github.com/2009/08/01/using-custom-delegates-in-objective-c.html</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wmbdev.com/74/custom-delegates-in-objective-c/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>First Test App on the iPod Touch</title>
		<link>http://blog.wmbdev.com/68/first-test-app-on-the-ipod-touc</link>
		<comments>http://blog.wmbdev.com/68/first-test-app-on-the-ipod-touc#comments</comments>
		<pubDate>Sat, 21 Feb 2009 12:58:50 +0000</pubDate>
		<dc:creator>wmblaettler</dc:creator>
				<category><![CDATA[iPhone / iPod Touch]]></category>

		<guid isPermaLink="false">http://blog.wmbdev.com/?p=68</guid>
		<description><![CDATA[I finally got a test app on my iPod Touch!  I know it&#8217;s been a while since my post about becoming an actual iPhone Developer, but this morning I buckled down and figured out what Provisioning, Certificates, and App IDs meant to get testing on an actual device.  It all makes sense it&#8217;s just a [...]


Related posts:<ol><li><a href='http://blog.wmbdev.com/56/i-am-now-an-official-iphone-developer' rel='bookmark' title='Permanent Link: I am now an official iPhone Developer!'>I am now an official iPhone Developer!</a> <small>[caption id="attachment_57" align="aligncenter" width="450" caption="Courtesy of Apple"][/caption] I received my...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id="attachment_69" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-69" title="testapp" src="http://blog.wmbdev.com/wp-content/uploads/2009/02/testapp.jpg" alt="testapp" width="450" height="338" /><p class="wp-caption-text">First test app on device</p></div>
<p>I finally got a test app on my iPod Touch!  I know it&#8217;s been a while since my post about becoming an actual iPhone Developer, but this morning I buckled down and figured out what Provisioning, Certificates, and App IDs meant to get testing on an actual device.  It all makes sense it&#8217;s just a multi-step process that is unfamiliar to me.  Now the real work begins, learning Objective C and the iPhone SDK!</p>


<p>Related posts:<ol><li><a href='http://blog.wmbdev.com/56/i-am-now-an-official-iphone-developer' rel='bookmark' title='Permanent Link: I am now an official iPhone Developer!'>I am now an official iPhone Developer!</a> <small>[caption id="attachment_57" align="aligncenter" width="450" caption="Courtesy of Apple"][/caption] I received my...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wmbdev.com/68/first-test-app-on-the-ipod-touc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renaming Multiple Files using Regular Expressions</title>
		<link>http://blog.wmbdev.com/59/renaming-multiple-files-using-regular-expressions</link>
		<comments>http://blog.wmbdev.com/59/renaming-multiple-files-using-regular-expressions#comments</comments>
		<pubDate>Wed, 04 Feb 2009 00:25:14 +0000</pubDate>
		<dc:creator>wmblaettler</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Regex]]></category>
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://blog.wmbdev.com/?p=59</guid>
		<description><![CDATA[Many times I am presented with a set of files whose names I need to rename to fit a certain pattern, for example:
Old file name pg 1.pdf
Old file name pg 2.pdf
etc.
And you want to change it to:
File_name_1.pdf
File_name_2.pdf
etc.
Well I found a nice little utility to to take a set of files and with a little regular [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Many times I am presented with a set of files whose names I need to rename to fit a certain pattern, for example:</p>
<blockquote><p>Old file name pg 1.pdf</p>
<p>Old file name pg 2.pdf</p>
<p>etc.</p></blockquote>
<p>And you want to change it to:</p>
<blockquote><p>File_name_1.pdf</p>
<p>File_name_2.pdf</p>
<p>etc.</p></blockquote>
<p>Well I found a nice little utility to to take a set of files and with a little regular expression you can do just this and more: <a href="http://www.12noon.com/renameregex.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.12noon.com');" target="_blank">RenameRegEx </a>from <a href="http://www.12noon.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.12noon.com');" target="_blank">12noon</a>.</p>
<p style="text-align: center;">
<div id="attachment_60" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-60" title="RenameRegEx" src="http://blog.wmbdev.com/wp-content/uploads/2009/02/regexrename.jpg" alt="RegExRename from 12noon" width="450" height="385" /><p class="wp-caption-text">RenameRegEx from 12noon</p></div>
<p>If you love the power of Regular Expressions but don&#8217;t have the syntax memorized, check out <a href="http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addedbytes.com');" target="_blank">AddedBytes&#8217; Regular Expressions Cheat Sheet</a> (formerly ILoveJackDaniels.com).  This cheat sheet has a permanent position on my desk.</p>
<div id="attachment_61" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-61" title="regular-expressions-cheat-sheet-v2-crop" src="http://blog.wmbdev.com/wp-content/uploads/2009/02/regular-expressions-cheat-sheet-v2-crop.jpg" alt="Regular Expressions Cheat Sheet from AddedBytes.com" width="450" height="280" /><p class="wp-caption-text">Regular Expressions Cheat Sheet from AddedBytes.com</p></div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wmbdev.com/59/renaming-multiple-files-using-regular-expressions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am now an official iPhone Developer!</title>
		<link>http://blog.wmbdev.com/56/i-am-now-an-official-iphone-developer</link>
		<comments>http://blog.wmbdev.com/56/i-am-now-an-official-iphone-developer#comments</comments>
		<pubDate>Tue, 03 Feb 2009 13:36:14 +0000</pubDate>
		<dc:creator>wmblaettler</dc:creator>
				<category><![CDATA[iPhone / iPod Touch]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[objective c]]></category>

		<guid isPermaLink="false">http://blog.wmbdev.com/?p=56</guid>
		<description><![CDATA[I received my official welcome email into the iPhone Developer Program yesterday.  I am excited to get started on some apps.
As an experienced Actionscript developer, I&#8217;ve found Keith Peters&#8217; series AS3 to iPhone Tutorial something I could easily relate to.  I am eager to soak up as much knowledge as I can regarding Cocoa/Objective C [...]


Related posts:<ol><li><a href='http://blog.wmbdev.com/68/first-test-app-on-the-ipod-touc' rel='bookmark' title='Permanent Link: First Test App on the iPod Touch'>First Test App on the iPod Touch</a> <small>[caption id="attachment_69" align="aligncenter" width="450" caption="First test app on device"][/caption] I...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id="attachment_57" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-57" title="iphone3g_appstore2" src="http://blog.wmbdev.com/wp-content/uploads/2009/02/iphone3g_appstore2.jpg" alt="Courtesy of Apple" width="450" height="704" /><p class="wp-caption-text">Courtesy of Apple</p></div>
<p>I received my official welcome email into the iPhone Developer Program yesterday.  I am excited to get started on some apps.</p>
<p>As an experienced Actionscript developer, I&#8217;ve found <a href="http://www.bit-101.com/blog/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.bit-101.com');" target="_blank">Keith Peters&#8217;</a> series <a href="http://www.bit-101.com/blog/?page_id=1868" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.bit-101.com');" target="_blank">AS3 to iPhone Tutorial</a> something I could easily relate to.  I am eager to soak up as much knowledge as I can regarding Cocoa/Objective C and the iPhone SDK.</p>


<p>Related posts:<ol><li><a href='http://blog.wmbdev.com/68/first-test-app-on-the-ipod-touc' rel='bookmark' title='Permanent Link: First Test App on the iPod Touch'>First Test App on the iPod Touch</a> <small>[caption id="attachment_69" align="aligncenter" width="450" caption="First test app on device"][/caption] I...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wmbdev.com/56/i-am-now-an-official-iphone-developer/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bulk updating A records in DNS on Windows Server 2003</title>
		<link>http://blog.wmbdev.com/45/bulk-updating-a-records-in-dns-on-windows-server-2003</link>
		<comments>http://blog.wmbdev.com/45/bulk-updating-a-records-in-dns-on-windows-server-2003#comments</comments>
		<pubDate>Mon, 02 Feb 2009 12:18:05 +0000</pubDate>
		<dc:creator>wmblaettler</dc:creator>
				<category><![CDATA[Network/Server Stuff]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[dnscmd]]></category>
		<category><![CDATA[windows 2003]]></category>

		<guid isPermaLink="false">http://blog.wmbdev.com/?p=45</guid>
		<description><![CDATA[When in a Windows server hosting environment there may come a time when you have to make DNS updates for a whole bunch of A records.  If you have a few, then the DNS MMC works fine, but if you have say 300 records that you need to change, it gets you thinking there has [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>When in a Windows server hosting environment there may come a time when you have to make DNS updates for a whole bunch of A records.  If you have a few, then the DNS MMC works fine, but if you have say 300 records that you need to change, it gets you thinking there has got to be a better way.  There is, with a tool that comes installed on Windows 2003 Server called <strong>dnscmd.exe</strong>.   (You can download dnscmd.exe in the Support Tools package for Windows XP: <a href="http://technet.microsoft.com/en-us/library/cc756116.aspx" onclick="javascript:pageTracker._trackPageview('/outbound/article/technet.microsoft.com');">http://technet.microsoft.com/en-us/library/cc756116.aspx)</a></p>
<p>dnscmd.exe is a command-line interface for DNS management.  With it you can among other things: RecordAdd and RecordDelete.  Sounds good, now we just have to write a Batch file to loop over all the zones and make our desired updates.</p>
<p>*** Note: I am not a DNS expert nor a windows scripting expert, but so the following is just one way to solve this above stated problem, there may be other &#8216;better&#8217; ways, but this one succeeded in accomplishing our goal ***</p>
<p>With dnscmd.exe we EnumZones into a text file we&#8217;ll call &#8216;zones.txt&#8217; using the following command:</p>
<blockquote>
<pre>dnscmd dns.yourdomain.net /enumzones &gt; zones.txt</pre>
</blockquote>
<p>This will result in a list of all zones you have setup (edit the file to strip out the top header and bottom footer).</p>
<p>Now to loop over all of these we&#8217;ll create a Batch file called &#8216;updateRecords.bat&#8217; with the following code:</p>
<blockquote>
<pre>for /F "tokens=1-4 delims= " %%a in (zones.txt) do (
 dnscmd dns.yourdomain.net /enumrecords %%a subdomain /type A &gt;temp.txt
 FINDSTR /L "old.ip.add.ress" temp.txt
 IF NOT errorlevel 1 (
  dnscmd dns.yourdomain.net /recorddelete %%a subdomain A old.ip.add.ress /f
  dnscmd dns.yourdomain.net /recordadd %%a subdomain A new.ip.add.ress
))</pre>
</blockquote>
<p>Now, if you&#8217;re like me and don&#8217;t script windows shell every day (more like once every 5 years for me), I found <a href="http://www.ss64.com/nt/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.ss64.com');" target="_blank">SS64.com</a> a tremendous help in finding the syntax for the commands available.</p>
<p>But what the preceding script does is loops over every line in the zones.txt, breaking it into four tokens named %%a, %%b, %%c, %%d, using &#8216; &#8216; (space) as a delimiter. Of which we are only interested in %%a; which will be the zone name.  We then Enumerate Records in the zone %%a with the record name &#8217;subdomain&#8217; (change this to whatever you are looking for) with type being &#8216;A&#8217; into a file we call temp.txt.  Next we look to see if there was a result for the &#8217;subdomain&#8217; with our &#8220;old.ip.add.ress&#8221; (again change this to the IP address you need to change).  If FINDSTR does not return an errorlevel of 1, we&#8217;ve found an A Record called subdomain with the old.ip.add.ress, so let&#8217;s change it.  As you can see we run two dnscmd&#8217;s to RecordDelete and then RecordAdd.  That&#8217;s it!</p>
<p>This script worked like a charm for some recent changes we had to make and I just wanted to share it so others may benefit from it.  I&#8217;d also like to hear feedback if there are more elegant solutions.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wmbdev.com/45/bulk-updating-a-records-in-dns-on-windows-server-2003/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spidem Villa espresso machine would not turn on this morning</title>
		<link>http://blog.wmbdev.com/7/spidem-villa-espresso-machine-would-not-turn-on-this-morning</link>
		<comments>http://blog.wmbdev.com/7/spidem-villa-espresso-machine-would-not-turn-on-this-morning#comments</comments>
		<pubDate>Sat, 31 Jan 2009 15:38:05 +0000</pubDate>
		<dc:creator>wmblaettler</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[broken]]></category>
		<category><![CDATA[espresso]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[repair]]></category>
		<category><![CDATA[Saeco]]></category>
		<category><![CDATA[Spidem]]></category>
		<category><![CDATA[Villa]]></category>

		<guid isPermaLink="false">http://blog.wmbdev.com/?p=7</guid>
		<description><![CDATA[I awoke to find our espresso machine flatlining this morning.  This machine has dutifully served my family espresso drinks, coffee and hot cocoa for well over a year now.  At an average of 4 espresso shots a day it&#8217;s probably ground, tamped and brewed 1,500 fine cups of coffee.  But this morning [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I awoke to find our espresso machine flatlining this morning.  This machine has dutifully served my family espresso drinks, coffee and hot cocoa for well over a year now.  At an average of 4 espresso shots a day it&#8217;s probably ground, tamped and brewed 1,500 fine cups of coffee.  But this morning it would not respond to any external stimulus (repeated pushing of the power button and jiggling the power cord).</p>
<div id="attachment_12" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-12" title="spidem-repair-01" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-01.jpg" alt="Flatline" width="450" height="301" /><p class="wp-caption-text">Flatline</p></div>
<p>First, I ruled out external factors such as a bad electrical outlet or tripped circuit breaker, still no power.  So after some quick searching on the internet and finding nothing other than a very generic suggestion stating &#8220;take the top off and check the fuse&#8221;  I decided to do just that &#8212; crack open the machine and poke around inside.  But before doing that, I unplugged the machine to ensure I wouldn&#8217;t electrocute myself.</p>
<p>WARNING: I take no responsibility for what you do with the information provided here.  Always have a professional service your appliances. Do not try this at home.  Now if you&#8217;re still interested, read on&#8230;</p>
<p style="text-align: center;">
<div id="attachment_13" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-13" title="spidem-repair-02" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-02.jpg" alt="No juice" width="450" height="450" /><p class="wp-caption-text">ALWAYS unplug any electrical appliance BEFORE attempting to service it</p></div>
<p>Okay, next I removed the reservoir, bottom tray and waste bin.  I dumped out the beans from the hopper into a large bowl and started looking all over to see just how I&#8217;m gonna access the inside of this thing.  Fortunately there aren&#8217;t too many choices of what to unscrew, there are 2 screws up under the front panel as seen when you open the front of the machine up.</p>
<p>Next I removed the hopper (there are two screws holding this in place), to access the 1 screw under the hopper.  Every screw has been a standard Phillips-head until the this next screw, which is on top, in the back, under where the reservoir goes.  This one is a Torx.  If you&#8217;re short on torx drivers you might be able to get lucky as I did and have an Allen wrench that fits.</p>
<p>I guess Saeco doesn&#8217;t really want people to open up their machines and they figured a Torx screw would deter them from doing so.  Well that hasn&#8217;t stopped me yet, and it didn&#8217;t this time either.</p>
<p>Okay, now that the top is unscrewed, you&#8217;ve got to removed the control panel face.  The brew strength knob (that&#8217;s not the technical name for it) is easily removed with a gentle prying action.  (NOTE: Remember where the indicator was pointing since it appears that it can be put back on the wrong way.)  Once removed, there is a screw to take out.</p>
<div id="attachment_14" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-14" title="spidem-repair-03" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-03.jpg" alt="Control panel" width="450" height="300" /><p class="wp-caption-text">Control panel</p></div>
<p>After you remove this screw, the panel pops of with a little prying.</p>
<div id="attachment_15" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-15" title="spidem-repair-04" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-04.jpg" alt="Ready to take the top off" width="450" height="300" /><p class="wp-caption-text">Ready to take the top off</p></div>
<p>And inside we go! Here is the rat&#8217;s nest of wiring and tubing that lies under the hood.</p>
<div id="attachment_16" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-16" title="spidem-repair-05" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-05.jpg" alt="The guts" width="450" height="450" /><p class="wp-caption-text">The guts</p></div>
<p>So I started looking for a fuse or anything that looked out of place.  After a few minutes of tracing wires closer to the power source, I found what appeared be the heating element.  It is located on the very bottom on the back, right-hand side of the machine.  And it looks like an electrical connector has vibrated loose from it&#8217;s connection.</p>
<div id="attachment_17" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-17" title="spidem-repair-06" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-06.jpg" alt="The problem" width="450" height="450" /><p class="wp-caption-text">The problem</p></div>
<p>Well this is in quite a tight spot and I cannot reach it to fix the problem, but fortunately I had a really handy tool to help.  It&#8217;s a 2-foot long flexible claw-like device.</p>
<div id="attachment_18" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-18" title="spidem-repair-07" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-07.jpg" alt="&quot;The Claw&quot;" width="450" height="450" /><p class="wp-caption-text">&quot;The Claw&quot;</p></div>
<p>In we go&#8230;</p>
<div id="attachment_19" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-19" title="spidem-repair-08" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-08.jpg" alt="... like a surgeon." width="450" height="300" /><p class="wp-caption-text">... like a surgeon.</p></div>
<p>Success!  I put the machine back together in reverse order and fire it up.</p>
<div id="attachment_20" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-20" title="spidem-repair-09" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-09.jpg" alt="It's ALIVE!!!" width="450" height="300" /><p class="wp-caption-text">It appears the patient will live.</p></div>
<div id="attachment_22" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-22" title="spidem-repair-10" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-10.jpg" alt="I can almost taste it" width="450" height="450" /><p class="wp-caption-text">I can almost taste it</p></div>
<div id="attachment_23" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-23" title="spidem-repair-111" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-111.jpg" alt="Espresso" width="450" height="450" /><p class="wp-caption-text">Espresso</p></div>
<div id="attachment_24" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-24" title="spidem-repair-12" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-12.jpg" alt="Delicious!" width="450" height="450" /><p class="wp-caption-text">One happy developer</p></div>
<div id="attachment_25" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-25" title="spidem-repair-13" src="http://blog.wmbdev.com/wp-content/uploads/2009/01/spidem-repair-13.jpg" alt="The end." width="450" height="300" /><p class="wp-caption-text">Until next time...</p></div>
<p>*** Note: This blog will normally deal more directly with internet-related tech, but as we all know caffeine is one of the great driving forces behind the internet, I feel this post is relevant enough. ***</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wmbdev.com/7/spidem-villa-espresso-machine-would-not-turn-on-this-morning/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Welcome to WMBDev.com!</title>
		<link>http://blog.wmbdev.com/5/welcome-to-wmbdevcom</link>
		<comments>http://blog.wmbdev.com/5/welcome-to-wmbdevcom#comments</comments>
		<pubDate>Fri, 30 Jan 2009 02:19:39 +0000</pubDate>
		<dc:creator>wmblaettler</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.wmbdev.com/?p=5</guid>
		<description><![CDATA[WMBDev.com is LOOONNGG overdue.  My name is Bill Blaettler.  I have been doing web development professionally for over 8 years and have been using computers for 22 years (yes I estimate I was 5 or 6 when my dad introduced me to the Atari 800XE with BASIC, cartridges and a 5.25&#8243; floppy drive).  This blog [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>WMBDev.com is LOOONNGG overdue.  My name is Bill Blaettler.  I have been doing web development professionally for over 8 years and have been using computers for 22 years (yes I estimate I was 5 or 6 when my dad introduced me to the Atari 800XE with BASIC, cartridges and a 5.25&#8243; floppy drive).  This blog and site are to be an internet playground for me.  I&#8217;ve chosen Wordpress for the blog portion for its ease of updating &#8211; or I&#8217;d probably only update this thing once or twice a year, plus I really just wanted to try out yet another web technology.</p>
<p>Look for posts about all things computer, internet, iphone, web development, Actionscript 3, Coldfusion, PHP, jQuery, AJAX, (oh, I really could keep going with this), and more.  Basically whatever I&#8217;m &#8216;into&#8217; at the moment.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wmbdev.com/5/welcome-to-wmbdevcom/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

