<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mike&#039;s Place</title>
	<atom:link href="http://blog.gurski.org/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gurski.org</link>
	<description>Inarticulate ramblings on whatever strikes my fancy</description>
	<lastBuildDate>Thu, 13 May 2010 14:32:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Automatic Monitoring with Puppet and Nagios</title>
		<link>http://blog.gurski.org/index.php/2010/01/28/automatic-monitoring-with-puppet-and-nagios/</link>
		<comments>http://blog.gurski.org/index.php/2010/01/28/automatic-monitoring-with-puppet-and-nagios/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 00:30:03 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Configuration Management]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[puppet]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/?p=41</guid>
		<description><![CDATA[Part of my current push at work right now is trying to get some sort of configuration management system in place, and in a usable state. Part of the reason for wanting to do this is consistency of common configuration among the many systems and virtual machines I manage, especially when several serve essentially the [...]]]></description>
			<content:encoded><![CDATA[<p>Part of my current push at work right now is trying to get some sort of configuration management system in place, and in a usable state.  Part of the reason for wanting to do this is consistency of common configuration among the many systems and virtual machines I manage, especially when several serve essentially the same function (such as webserver <acronym title="virtual machines">VMs</acronym>).  Since I&#8217;m a fallible human being, it&#8217;s easier for me to get <strong>one</strong> webserver configured so that the non-content part of the setup always passes our security scans, and then replicated <strong>that</strong> to all the other webservers.  This not only saves me time, and makes me more efficient, but helps when we do system audits, as I can easily prove that all <em>N</em> systems I manage that serve the same role have identical configurations.</p>
<p><span id="more-41"></span></p>
<p>Another push I&#8217;ve been working on for a few years now is comprehensive monitoring of our systems.  When I started at my job, monitoring was being done through a home-grown script, that would run once an hour.  While not particularly bad, it had some major shortcomings.  Primarily, the hour lag time meant that, if a problem occurred shortly after the script ran, you wouldn&#8217;t know about it for nearly an hour.  Another problem was that, while the script would make note of system problems, the <em>only</em> notification mechanism was &#8220;someone needs to visit the web page it generates&#8221;.  During a normal workday, that might be OK, but evenings and weekends?  So, at least for my benefit, I set up a monitoring system that could not only monitor systems more frequently, but monitor more systems, and send out alerts via email, cell phones, etc.</p>
<p>For reasons I won&#8217;t get into here, what I chose to use for configuration management was <a href="http://reductivelabs.com/trac/puppet/">Puppet</a>, and I&#8217;d already chosen <a href="http://www.nagios.org">Nagios</a> as my monitoring system.  So far, my biggest problem with Nagios has been finding the time to add new systems to it, figuring out what services to check, etc.  It&#8217;s not a particularly <em>difficult</em> thing to do, but in the grand scheme of things, it was just something that always fell by the wayside in the drive to get more systems set up, deal with user problems, and put out the inevitable fires.  That is, until recently.</p>
<p>My original Nagios install was done on an aging box that has been serving as a development web server for our group.  I did the install shortly after I&#8217;d started, so had I been around longer, I might have either waited, put in a request for new hardware, or found a way to get virtualization into our environment sooner.  Overall, it worked, but it was in general a pain dealing with the box, a RHEL3 server, since it was so far out of date.  Recently, I&#8217;ve set up a <acronym title="virtual machine">VM</acronym> on our XenServer cluster to be our new Nagios box.  Since I&#8217;ve also been playing with Puppet, I wanted to automate things as much as possible, since every new system created <em>should</em> be managed by Puppet (though reality slightly differs from that).</p>
<p>Fortunately, the groundwork for automating Nagios monitoring with Puppet is already <a href="http://reductivelabs.com/trac/puppet/wiki/NagiosReference">built in</a> to Puppet.  It took me a little bit to wrap my head around the concepts, but the <a href="http://reductivelabs.com/trac/puppet/wiki/ExportedResources">example</a> helped and served as a base.</p>
<p>Now, even though I&#8217;m still in the process of setting things up, I&#8217;ve gotten to the point where my <em>new</em> Nagios server is already monitoring about 30% <em>more</em> information about hosts (422 services vs 308 on the old server), even though the number of hosts is currently about half (48 hosts vs 99 on the old).  All of it done automatically, and here&#8217;s how.</p>
<p>First, set up <a href="http://reductivelabs.com/trac/puppet/wiki/UsingStoredConfiguration">stored configurations</a> on your <code>puppetmaster</code>.  You&#8217;ll need to specify a database in which to store your puppet-collected facts and resources.  While the default is <a href="http://www.sqlite.org/">SQLite</a>, I ran into problems with concurrent access.  Since I&#8217;m also currently responsible for the handful of <a href="http://mysql.com/">MySQL</a> servers we have, I decided to just use one of those.  Create a database and user for puppet to use, then tell the puppetmaster about it.  Your <code>[puppetmasterd]</code> section of <code>puppet.conf</code> should look something like this when you&#8217;re done:</p>
<div class="dean_ch" style="white-space: wrap;">
<span class="re0"><span class="br0">&#91;</span>puppetmasterd<span class="br0">&#93;</span></span><br />
<span class="re1">templatedir </span>=<span class="re2"> /var/lib/puppet/templates</span><br />
<span class="re1">storeconfigs </span>=<span class="re2"> true</span><br />
<span class="re1">dbadapter </span>=<span class="re2"> mysql</span><br />
<span class="re1">dbuser </span>=<span class="re2"> the_user_you_set_up</span><br />
<span class="re1">dbpassword </span>=<span class="re2"> the_password_for_dbuser</span><br />
<span class="re1">dbserver </span>=<span class="re2"> the_database_server</span><br />
#<span class="re1">dbsocket </span>=<span class="re2"> /var/run/mysqld/mysqld.sock</span><br />
<span class="re1">downcasefacts </span>=<span class="re2"> true</span><br />
&nbsp;</div>
<p>Your paths may likely be different than mine.  If your DB server is running on the same host as the puppetmasterd process, <code>dbserver</code> should be &#8220;localhost&#8221;, and you&#8217;d uncomment and adjust the path of the <code>dbsocket</code> line.  The <code>downcasefacts</code> line is set to &#8220;true&#8221; so that I can make use of the <code>$operatingsystem</code> fact later on without having to muck with changing the case later.</p>
<p>Next, you&#8217;ll want to create a <code>nagios</code> module in Puppet.  The Exported Resource example linked above served as my template, but I&#8217;ve made a few changes to it. My <code>puppet/modules/nagios/manifests/init.pp</code> file currently looks like this:</p>
<div class="dean_ch" style="white-space: wrap;">
<span class="kw1">class</span> nagios <span class="br0">&#123;</span></p>
<p>&nbsp; &nbsp;package <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;nagios3&#8242;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">ensure</span> &nbsp;=&gt; installed,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">alias</span> &nbsp; =&gt; <span class="st0">&#8216;nagios&#8217;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;<br />
&nbsp; &nbsp;<span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp;service <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;nagios3&#8242;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">ensure</span> &nbsp;=&gt; running,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">alias</span> &nbsp; =&gt; <span class="st0">&#8216;nagios&#8217;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;hasstatus &nbsp; &nbsp; &nbsp; =&gt; <span class="kw2">true</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;hasrestart &nbsp; &nbsp; &nbsp;=&gt; <span class="kw2">true</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw3">require</span> =&gt; Package<span class="br0">&#91;</span>nagios<span class="br0">&#93;</span>,<br />
&nbsp; &nbsp;<span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp;<span class="co1"># collect resources and populate /etc/nagios/nagios_*.cfg</span><br />
&nbsp; &nbsp;Nagios_host &lt;&lt;||&gt;&gt;<br />
&nbsp; &nbsp;Nagios_service &lt;&lt;||&gt;&gt;<br />
&nbsp; &nbsp;Nagios_hostextinfo &lt;&lt;||&gt;&gt;</p>
<p>&nbsp; &nbsp;<span class="kw1">class</span> target <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; @@nagios_host <span class="br0">&#123;</span> <span class="re0">$fqdn</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">ensure</span> =&gt; present,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">alias</span> =&gt; <span class="re0">$hostname</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;address =&gt; <span class="re0">$ipaddress</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use =&gt; <span class="st0">&quot;generic-host&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; &nbsp; @@nagios_hostextinfo <span class="br0">&#123;</span> <span class="re0">$fqdn</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">ensure</span> =&gt; present,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;icon_image_alt =&gt; <span class="re0">$operatingsystem</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;icon_image =&gt; <span class="st0">&quot;base/$operatingsystem.png&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;statusmap_image =&gt; <span class="st0">&quot;base/$operatingsystem.gd2&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; &nbsp; @@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_ping_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use =&gt; <span class="st0">&quot;check_ping&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; &nbsp; @@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_users_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use =&gt; <span class="st0">&quot;remote-nrpe-users&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; &nbsp; @@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_load_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use =&gt; <span class="st0">&quot;remote-nrpe-load&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; &nbsp; @@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_zombie_procs_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use =&gt; <span class="st0">&quot;remote-nrpe-zombie-procs&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; &nbsp; @@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_total_procs_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use =&gt; <span class="st0">&quot;remote-nrpe-total-procs&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; &nbsp; @@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_swap_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use =&gt; <span class="st0">&quot;remote-nrpe-swap&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; &nbsp; @@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_all_disks_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use =&gt; <span class="st0">&quot;remote-nrpe-all-disks&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp;<span class="br0">&#125;</span><br />
<span class="br0">&#125;</span><br />
&nbsp;</div>
<p>To use it, I simply do an <tt>include nagios</tt> in the node definition for my Nagios server in puppet, and in my <code>basenode</code> node definition, I&#8217;ve done an <tt>include nagios::target</tt>.  Each of the <code>@@</code> lines will collect information for each machine managed by puppet that inherits from <code>basenode</code>.  The &#8220;collect resources and populate /etc/nagios/nagios_*.cfg&#8221; portion is the real magic, however.  Each of those lines will cause puppet to collect all the matching resources, and output them to files in <code>/etc/nagios</code>.  The only real caveat, which I also noticed in the example I built upon, is that I&#8217;m having trouble convincing puppet to reload nagios when the files are updated, which I just brute-force solved with a periodic cronjob to run nagios&#8217; init script with &#8220;reload&#8221;.</p>
<p>I&#8217;m also slowly adding nagios entries for each service that puppet manages in some form.  Currently, that means things like apache and ssh.  For example, in my <code>apache2</code> module&#8217;s <code>init.pp</code>, I have the following in my class:</p>
<div class="dean_ch" style="white-space: wrap;">
&nbsp; &nbsp;@@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_http_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; use =&gt; <span class="st0">&quot;check-http&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp;<span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp;@@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_http_processes_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; use =&gt; <span class="st0">&quot;remote-nrpe-httpd-procs&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp;<span class="br0">&#125;</span><br />
&nbsp;</div>
<p>This both monitors over-the-wire connections to port 80 on webservers, via the <code>check-http</code> command, but also monitors the number of httpd processes running on each host, via <code>remote-nrpe-httpd-procs</code>.</p>
<p>Similarly, for ssh, I have:</p>
<div class="dean_ch" style="white-space: wrap;">
&nbsp; &nbsp;@@nagios_service <span class="br0">&#123;</span> <span class="st0">&quot;check_ssh_${hostname}&quot;</span>:<br />
&nbsp; &nbsp; &nbsp; use =&gt; <span class="st0">&quot;check-ssh&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; host_name =&gt; <span class="st0">&quot;$fqdn&quot;</span>,<br />
&nbsp; &nbsp;<span class="br0">&#125;</span><br />
&nbsp;</div>
<p>to monitor whether <code>sshd</code> is accepting connections on my systems.</p>
<p>And that, basically, is how I&#8217;m automatically monitoring all puppet-managed hosts in my environment.  Whenever I set up a new host, I activate puppet on the host to ensure configurations I care about are synced to my master templates, and now as a bonus, puppet automatically tells nagios to start monitoring the services it knows about on the host.  By expending a little extra effort once now, I&#8217;ve managed to be lazy later on multiple times over, truly something a Systems Administrator should be doing!</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;bodytext=Part%20of%20my%20current%20push%20at%20work%20right%20now%20is%20trying%20to%20get%20some%20sort%20of%20configuration%20management%20system%20in%20place%2C%20and%20in%20a%20usable%20state.%20%20Part%20of%20the%20reason%20for%20wanting%20to%20do%20this%20is%20consistency%20of%20common%20configuration%20among%20the%20many%20systems%20and%20virt" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;notes=Part%20of%20my%20current%20push%20at%20work%20right%20now%20is%20trying%20to%20get%20some%20sort%20of%20configuration%20management%20system%20in%20place%2C%20and%20in%20a%20usable%20state.%20%20Part%20of%20the%20reason%20for%20wanting%20to%20do%20this%20is%20consistency%20of%20common%20configuration%20among%20the%20many%20systems%20and%20virt" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;t=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;annotation=Part%20of%20my%20current%20push%20at%20work%20right%20now%20is%20trying%20to%20get%20some%20sort%20of%20configuration%20management%20system%20in%20place%2C%20and%20in%20a%20usable%20state.%20%20Part%20of%20the%20reason%20for%20wanting%20to%20do%20this%20is%20consistency%20of%20common%20configuration%20among%20the%20many%20systems%20and%20virt" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Part%20of%20my%20current%20push%20at%20work%20right%20now%20is%20trying%20to%20get%20some%20sort%20of%20configuration%20management%20system%20in%20place%2C%20and%20in%20a%20usable%20state.%20%20Part%20of%20the%20reason%20for%20wanting%20to%20do%20this%20is%20consistency%20of%20common%20configuration%20among%20the%20many%20systems%20and%20virt" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;t=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;s=Part%20of%20my%20current%20push%20at%20work%20right%20now%20is%20trying%20to%20get%20some%20sort%20of%20configuration%20management%20system%20in%20place%2C%20and%20in%20a%20usable%20state.%20%20Part%20of%20the%20reason%20for%20wanting%20to%20do%20this%20is%20consistency%20of%20common%20configuration%20among%20the%20many%20systems%20and%20virt" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2010%2F01%2F28%2Fautomatic-monitoring-with-puppet-and-nagios%2F&amp;title=Automatic%20Monitoring%20with%20Puppet%20and%20Nagios&amp;body=Part%20of%20my%20current%20push%20at%20work%20right%20now%20is%20trying%20to%20get%20some%20sort%20of%20configuration%20management%20system%20in%20place%2C%20and%20in%20a%20usable%20state.%20%20Part%20of%20the%20reason%20for%20wanting%20to%20do%20this%20is%20consistency%20of%20common%20configuration%20among%20the%20many%20systems%20and%20virt" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=41&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2010/01/28/automatic-monitoring-with-puppet-and-nagios/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Getting back in the habit</title>
		<link>http://blog.gurski.org/index.php/2009/09/30/getting-back-in-the-habit/</link>
		<comments>http://blog.gurski.org/index.php/2009/09/30/getting-back-in-the-habit/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 08:17:46 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[aquarium]]></category>
		<category><![CDATA[fish]]></category>
		<category><![CDATA[hobbies]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/?p=37</guid>
		<description><![CDATA[So, in the past couple weeks, with prodding from the wife, I&#8217;ve gotten back into a highly addictive and potentially expensive habit. It&#8217;s one that requires specialized lighting, heating, and fertilizers, but probably not what some may be thinking. No worries about DEA raids, RICO seizures, or failed random drug tests here, the habit is&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>So, in the past couple weeks, with prodding from the wife, I&#8217;ve gotten back into a highly addictive and potentially expensive habit. It&#8217;s one that requires specialized lighting, heating, and fertilizers, but probably not what some may be thinking. No worries about DEA raids, RICO seizures, or failed random drug tests here, the habit is&#8230;</p>
<p><span id="more-37"></span></p>
<p>Fish keeping. With live plants. In a 150 gallon aquarium.</p>
<p>I first got into the hobby several years ago, when Cathy brought home a small aquarium and fish she&#8217;d been keeping at work. It soon grew from that first 5 gallons to a 10 gallon tank, then a 29 gallon one, then the 10 *and* 29, then finally 2 29 gallon tanks.</p>
<p>Somewhere along the way, fairly early on, I decided that we needed something other than the plastic plants we were using. So we started replacing all the plastic with live plants. At that point, we started replacing the tiny under powered single-tube lighting with more and more fluorescent lights, until the 29s were maxed out at 4 24&#8243; (well, really 20&#8243;, if I remember correctly) tubes.</p>
<p>This provided at least a minimum amount of light to allow plants to grow, and some to even flourish. The addition of more fish, aquatic fertilizers, carbon dioxide (both in liquid additive and yeast fermentation forms), etc just made the addiction worse.</p>
<p>When we moved from our apartment to a house, we got. 150 gallon tank, to consolidate both of the 29 gallon ones we&#8217;d been keeping. Unfortunately, the lighting levels weren&#8217;t the best, and as time went on, aquarium maintenance started to slip from every week to every few, to once a month, and beyond. Compounding the problem, the 150 gallon was in the basement, which still doesn&#8217;t qualify as a &#8220;living area&#8221;, because we were worried that approximately 1500 pounds in a 4 ft by 2 ft area would cause problems on the main level.</p>
<p>Since we&#8217;ve had a dog for over a year now, we&#8217;ve been passing through the basement on our way to the back yard for &#8220;potty time&#8221; (dogs, kids, apparently it&#8217;s common to use the same euphemisms for things&#8230;), and I&#8217;d gotten really good at ignoring the tank sitting against the wall.</p>
<p>After regular prompting for a few months, however, we finally found the time one weekend to perform a much-needed water change and filter cleaning. We&#8217;d lost some fish and all the plants, but enough fish survived to guilt us into getting back into the maintenance habit again.</p>
<p>At this point, we&#8217;ve mostly fought off a blue-green algae infestation (brought on by an overabundance of nutrients and poor lighting), cleaned up an embarrassingly-thick layer of mulm (a nice term for fish food, fish poop, and&#8230;dead fish &#038; plants), and mostly have what&#8217;s left of the tank under control.  We&#8217;re planning to restock in the near future, building up schools of fish around the current survivors. I&#8217;d also like to take the time to get a sufficient amount of lighting in place to make the place viable for a range of plants.</p>
<p>Why plants? Because most of the &#8220;waste&#8221; in an aquarium can be used by plants, keeping the water cleaner, which keeps the fish happy. That, and live plants just *look* better, providing homes and hiding places for various aquarium fauna, as well as some supplemental food. I&#8217;d also like to introduce Malaysian Trumpet Snails to the tank, which will act as scavengers while leaving the living plants alone, as well as burrow through the gravel, to keep that healthy.</p>
<p>Going forward, some of the challenges I see are;<br />
1. Maintaining the current weekly water changes and other routine maintenance, which has obviously been a problem<br />
2. Slowly increasing the fish population, to avoid overloading the current biological filter (bacteria that convert poisonous ammonia into poisonous nitrite, and other bacteria that convert the nitrite into much less harmful nitrate)<br />
3. Getting enough lighting into the tank to make plant growth possible, without turning the tank into a bubbleless hot tub<br />
4. Finding and arranging plants to soak up nitrates and all the other by-products of keeping live fish that can tolerate the likely low light levels (1 watt/gallon is &#8220;low&#8221;, 2 wpg is &#8220;medium&#8221;ish, 3-4 wpg is &#8220;high&#8221;&#8230;that&#8217;s 150W, 300W, and 450W-600W, respectively, with a 4 foot fluorescent tube putting out about 40W)</p>
<p>Something tells me this is going to get expensive, especially when you start to factor in items like a carbon dioxide injector (for the plants), heaters &#038; chillers (to maintain a constant water temperature), additional fish food variety, and liquid fertilizer for the plants. Then again, I&#8217;ve managed to do this on a smaller scale already, so hopefully I can use that experience.</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit&amp;bodytext=So%2C%20in%20the%20past%20couple%20weeks%2C%20with%20prodding%20from%20the%20wife%2C%20I%27ve%20gotten%20back%20into%20a%20highly%20addictive%20and%20potentially%20expensive%20habit.%20It%27s%20one%20that%20requires%20specialized%20lighting%2C%20heating%2C%20and%20fertilizers%2C%20but%20probably%20not%20what%20some%20may%20be%20thinking.%20No" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit&amp;notes=So%2C%20in%20the%20past%20couple%20weeks%2C%20with%20prodding%20from%20the%20wife%2C%20I%27ve%20gotten%20back%20into%20a%20highly%20addictive%20and%20potentially%20expensive%20habit.%20It%27s%20one%20that%20requires%20specialized%20lighting%2C%20heating%2C%20and%20fertilizers%2C%20but%20probably%20not%20what%20some%20may%20be%20thinking.%20No" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;t=Getting%20back%20in%20the%20habit" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Getting%20back%20in%20the%20habit&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit&amp;annotation=So%2C%20in%20the%20past%20couple%20weeks%2C%20with%20prodding%20from%20the%20wife%2C%20I%27ve%20gotten%20back%20into%20a%20highly%20addictive%20and%20potentially%20expensive%20habit.%20It%27s%20one%20that%20requires%20specialized%20lighting%2C%20heating%2C%20and%20fertilizers%2C%20but%20probably%20not%20what%20some%20may%20be%20thinking.%20No" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=So%2C%20in%20the%20past%20couple%20weeks%2C%20with%20prodding%20from%20the%20wife%2C%20I%27ve%20gotten%20back%20into%20a%20highly%20addictive%20and%20potentially%20expensive%20habit.%20It%27s%20one%20that%20requires%20specialized%20lighting%2C%20heating%2C%20and%20fertilizers%2C%20but%20probably%20not%20what%20some%20may%20be%20thinking.%20No" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Getting%20back%20in%20the%20habit&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;t=Getting%20back%20in%20the%20habit&amp;s=So%2C%20in%20the%20past%20couple%20weeks%2C%20with%20prodding%20from%20the%20wife%2C%20I%27ve%20gotten%20back%20into%20a%20highly%20addictive%20and%20potentially%20expensive%20habit.%20It%27s%20one%20that%20requires%20specialized%20lighting%2C%20heating%2C%20and%20fertilizers%2C%20but%20probably%20not%20what%20some%20may%20be%20thinking.%20No" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Getting%20back%20in%20the%20habit%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Getting%20back%20in%20the%20habit&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Getting%20back%20in%20the%20habit&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2009%2F09%2F30%2Fgetting-back-in-the-habit%2F&amp;title=Getting%20back%20in%20the%20habit&amp;body=So%2C%20in%20the%20past%20couple%20weeks%2C%20with%20prodding%20from%20the%20wife%2C%20I%27ve%20gotten%20back%20into%20a%20highly%20addictive%20and%20potentially%20expensive%20habit.%20It%27s%20one%20that%20requires%20specialized%20lighting%2C%20heating%2C%20and%20fertilizers%2C%20but%20probably%20not%20what%20some%20may%20be%20thinking.%20No" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=37&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2009/09/30/getting-back-in-the-habit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Phone Wishlist</title>
		<link>http://blog.gurski.org/index.php/2008/03/06/mobile-phone-wishlist/</link>
		<comments>http://blog.gurski.org/index.php/2008/03/06/mobile-phone-wishlist/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 03:09:45 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2008/03/06/mobile-phone-wishlist/</guid>
		<description><![CDATA[It seems that I&#8217;m either currently, or will soon be, in the market for a new phone. This is actually a fall-out effect from the marriage, as well as timing on getting my last phone, a T-Mobile Sidekick 3. As I&#8217;ve checked the notes I made when I last upgraded, I realized my 2 year [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that I&#8217;m either currently, or will soon be, in the market for a new phone.  This is actually a fall-out effect from the marriage, as well as timing on getting my last phone, a T-Mobile Sidekick 3.  As I&#8217;ve checked the notes I made when I last upgraded, I realized my 2 year contract extension is up in July.  In fact, it&#8217;s up on July 4, Independence Day.  There&#8217;s some sort of nice congruity to that.</p>
<p><span id="more-29"></span></p>
<p>Anyway, Cathy and I have been in the process of merging our separate lives, from bills for things like the landline &#038; TV, to bank accounts, to now cellphones.  After all, we already tend to the same network for coverage, and we&#8217;re each the primary person the other calls, SMSes, and IMs from our phones, and so it makes some degree of sense to stop paying for wholly separate plans, and start taking advantage of &#8220;family&#8221; plans.  You know, since we&#8217;re now a family&#8230;</p>
<p>For me, part of the process involves looking back at what I&#8217;ve liked and disliked about my current and past phones, and what I&#8217;d like to see in a new one.  In the interest of being more positive, I think I&#8217;ll mostly enumerate the things I&#8217;ve liked, and what I want in addition.  With the <acronym title="Sidekick 3">SK3</acronym>, I knew a lot of the restrictions going in, and while some of them I hoped would have been fixed in firmware updates, that never turned out to be the case.</p>
<p>So, what I&#8217;m looking for, in no real order, is:</p>
<ul>
<li><strong><acronym title="Global System for Mobile Communications">GSM</acronym></strong>, most of the rest of the world uses it, I&#8217;d like to continue using it as well</li>
<li><strong>Data connectivity</strong> such as <acronym title="General Packet Radio Service">GPRS</acronym> or <acronym title="Enhanced Data rate for GSM Evolution">EDGE</acronym>, because I really have gotten used to web surfing on a phone to look things up or just fill time while waiting somewhere</li>
<li><strong>QWERTY keyboard</strong>, I&#8217;ve gotten used to having one, to the point where typing on a numeric pad is painful, in part because I use <acronym title="Short Message Service">SMS</acronym> a lot, and in part because I also want&#8230;</li>
<li><strong>An <acronym title="Secure Shell">SSH</acronym> client</strong>, as there are times I&#8217;m not near a computer or Wi-Fi connection, and still need/want to access machines directly.  Also, <a href="http://blog.gurski.org/index.php/2007/08/16/finally-back-on-the-air/">broadband where I live sucks</a> and goes out in the rain</li>
<li><strong>Wi-Fi</strong>, because there are times I <em>am</em> covered by a Wi-Fi signal, but have almost no cell reception, but don&#8217;t have a laptop with me (or I only have computers I don&#8217;t trust, namely ones I don&#8217;t have sole control over)</li>
<li><strong>Bluetooth</strong>, because, well, it&#8217;s nice to not be tethered to an earpiece for hands-free calling, and my last 2 phones and current <acronym title="Personal Digital Assistant">PDA</acronym> have it</li>
<li><strong>Decent battery life</strong>, I shouldn&#8217;t <em>have</em> to charge my phone every day if I&#8217;m not actively using it, and shouldn&#8217;t have to worry that it will completely drain if it&#8217;s sitting idle from a full charge in &#8220;airplane mode&#8221; (all radio transmitters/receivers turned off) in 2 days.  My <acronym title="Personal Digital Assistant">PDA</acronym> lasts at least a week, if not more, with light usage on a single charge</li>
<li><strong><acronym title="Personal Digital Assistant">PDA</acronym> capabilities</strong>, as I&#8217;m getting tired of carrying around multiple devices to do everything I want/need to do to manage my life</li>
<li><strong>Decent data sync</strong>, especially address books, calendars, reminders, etc, since I manage a lot of that through desktop apps (and use WebCal/iCalendar for calendaring, especially sharing with my wife and/or coworkers)</li>
<li><strong>Expandable/removable storage</strong>, since nothing&#8217;s worse than running out of space.  Carrying a few flash cards in a pocket takes almost no space</li>
<li><strong>Somewhat open platform</strong>, so I&#8217;m not spending a small fortune on adding software.  Yes, I knew this wasn&#8217;t the case with my <acronym title="Sidekick 3">SK3</acronym>, and accepted it at the time, thinking I&#8217;d get around to qualifying for a developer&#8217;s key, allowing me to directly load apps, but I never seemed to find the time to write something ever-so-slightly more complex than a Java &#8220;Hello, world&#8221;, despite so many plans. It would also be nice to be able to get not-officially-sanctioned apps like the mobile Google apps or Opera Mini</li>
<li><strong><acronym title="Instant Message">IM</acronym> clients</strong>, yes I&#8217;m addicted to <acronym title="Instant Message">IM</acronym>, but it also seems to be the way I keep in touch with the majority of people I know.  <em>At least</em> <acronym title="AOL Instant Messenger">AIM</acronym> and Y!<acronym title="Instant Message">IM</acronym>, since that&#8217;s where the majority of the people I know reside.  <acronym title="Microsoft Network">MSN</acronym> Messenger would be nice, and a Jabber/XMPP client would be fantastic</li>
<li><strong>Email</strong>, as I do a lot of reading/responding while killing a few minutes here and there.  I&#8217;d really prefer <acronym title="Internet Message Access Protocol 4">IMAP4</acronym> (with <acronym title="Secure Sockets Layer">SSL</acronym>), but will settle for <acronym title="Post Office Protocol 3">POP3</acronym> (with <acronym title="Secure Sockets Layer">SSL</acronym>).  Non-<acronym title="Secure Sockets Layer">SSL</acronym> is likely a non-starter for me.</li>
<li><strong><acronym title="Internet Relay Chat">IRC</acronym></strong>, hell, let&#8217;s go for broke!  This isn&#8217;t <em>really</em> a requirement, as I would likely just <acronym title="Secure Shell">SSH</acronym> into my remote server, and reattach to my <code>screen</code> session that&#8217;s always running <code>irssi</code> if I really needed to hop on <acronym title="Internet Relay Chat">IRC</acronym>&#8230;</li>
<li><strong>Media player</strong>, ideally something supporting WAV, FLAC, and Ogg Vorbis, though I can deal with MP3.  I&#8217;m trying to consolidate devices, after all, and both my current phone and my <acronym title="Personal Digital Assistant">PDA</acronym> can both play audio</li>
<li><strong>User-installable ringtones</strong>, since most every ringtone out there seems to suck, and the ones I can currently install on the <acronym title="Sidekick 3">SK3</acronym> <em>really</em> suck, since my tastes seem to be decidely outside the demographics they&#8217;re targetting.  Why <em>can&#8217;t</em> I use something like the Imperial March from Star Wars for work-related calls, or some Billy Joel, the Beatles, Styx, or Nine Inch Nails, when I already have the CDs, have them ripped, and plan to listen to them anyway on the device?</li>
</ul>
<p>Ideally, if Palm could release a <acronym title="Global System for Mobile Communications">GSM</acronym> PalmOS-based Treo that had Wi-Fi (the Palm TX has been out for <em>how many</em> years now with Wi-Fi?), and wasn&#8217;t just another tired rehash of the Treo 650 or Treo 680, that would probably be an ideal phone for me, as my <acronym title="Personal Digital Assistant">PDA</acronym> is a Palm Tungsten|T3, so I have almost all the software I&#8217;d need/want, and could easily transfer over all my existing data.  Alas, Wi-Fi at this point seems like a determining factor.  I&#8217;ve considered the various Microsoft PocketPC/Windows Mobile/whatever it&#8217;s called this month phones, and I&#8217;m sort of lukewarm on the whole idea there.  Sure, they&#8217;ve got the largest market segment right now, and even Palm is releasing Windows-based phones, but what little I&#8217;ve seen of the interface (and what lot I&#8217;ve read from people that have devices with it), makes me hesitant.</p>
<p>Symbian-based could be nice, I really liked my old Nokia 6600.  Unfortunately, what I&#8217;ve heard of recent &#8220;advances&#8221; with the Symbian <acronym title="Operating System">OS</acronym> make me think that it&#8217;s diverging greatly from where I want to be, what with locking down the installation of 3rd-party software.  I&#8217;m also wishy-washy on <del>Black</del><ins>Crack</ins>berries.  I admittedly don&#8217;t have much of any exposure to them, so it could be entirely just my unfamiliarity with them.  As for the iPhone, well, talk about locked down&#8230;updates that brick phones that people have liberated, software <em>only</em> installable through the just-announced App Store, and the requirement to use iTunes to even activate the thing?  Maybe if iTunes were available for Linux, which will not be happening any time soon, or more likely ever&#8230;</p>
<p>Ideally, when we&#8217;re ready to switch, and both of us are off-contract, the <a href="http://www.openmoko.com/">OpenMoko</a> will be in mass-production.  It&#8217;s Linux-based, seems to have almost all the features I want (except maybe a keyboard), has a <a href="http://www.openmoko.org/">community</a> already, and looks to be fairly extensible.  Whether it will actually pan out or be available at that point, though, is anybody&#8217;s guess.</p>
<p>Looking at <a href="http://www.phonescoop.com/phones/finder_results.php?m=s&#038;w=w&#038;sao=y&#038;car=0&#038;avr=3&#038;av_1=y&#038;av_2=y&#038;rlr=1&#038;rl_1=y&#038;mar=0&#038;rar=0&#038;ter=3&#038;te_3=y&#038;te_6=y&#038;wer=0&#038;ffr=0&#038;plr=0&#038;ttr=0&#038;str=0&#038;dsr=3&#038;ds_64-100=y&#038;ds_100-90000=y&#038;dtr=3&#038;dt_2=y&#038;dt_3=y&#038;dt_4=y&#038;dt_6=y&#038;dt_7=y&#038;atr=0&#038;pbr=0&#038;dir=0&#038;adr=0&#038;wor=2&#038;g8r=1&#038;f52r=1&#038;f39r=1&#038;f3r=3&#038;f38r=r&#038;f36r=1&#038;f20r=3&#038;f70r=1&#038;f32r=3&#038;f60r=r&#038;f23r=3&#038;f28r=2&#038;f44r=1&#038;f12r=3&#038;f42r=1&#038;f34r=1&#038;f75r=1&#038;f25r=3&#038;f77r=3&#038;f48r=1&#038;f30r=r&#038;f30_1=y&#038;f30_2=y&#038;f30_6=y&#038;f30_8=y&#038;f30_12=y&#038;f30_13=y&#038;f80r=1&#038;f6r=3&#038;f31r=0&#038;f58r=r&#038;f21r=3&#038;f55r=r&#038;f55_8=y&#038;f55_6=y&#038;f55_1=y&#038;f55_10=y&#038;f55_9=y&#038;f55_7=y&#038;f55_5=y&#038;f46r=r&#038;f43r=1&#038;f10r=r&#038;f73r=0&#038;f27r=2&#038;f72r=1&#038;f56r=1&#038;f56_10=y&#038;f56_11=y&#038;f56_12=y&#038;f65r=1&#038;f14r=3&#038;f18r=3&#038;f15r=r&#038;f19r=3&#038;f45r=3&#038;f16r=3&#038;f53r=e&#038;f13r=0&#038;f7r=0&#038;f4r=0">phonescoop</a>, it appears that I&#8217;ve got a choice of a lot of Windows-based phones, some Symbian ones, a handful of Blackberries, as well as a few undetermined phones.  Honestly, I don&#8217;t know what I&#8217;m likely to choose at this point.  Maybe a few more months will produce a clear winner&#8230;</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist&amp;bodytext=It%20seems%20that%20I%27m%20either%20currently%2C%20or%20will%20soon%20be%2C%20in%20the%20market%20for%20a%20new%20phone.%20%20This%20is%20actually%20a%20fall-out%20effect%20from%20the%20marriage%2C%20as%20well%20as%20timing%20on%20getting%20my%20last%20phone%2C%20a%20T-Mobile%20Sidekick%203.%20%20As%20I%27ve%20checked%20the%20notes%20I%20made%20when%20I%20las" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist&amp;notes=It%20seems%20that%20I%27m%20either%20currently%2C%20or%20will%20soon%20be%2C%20in%20the%20market%20for%20a%20new%20phone.%20%20This%20is%20actually%20a%20fall-out%20effect%20from%20the%20marriage%2C%20as%20well%20as%20timing%20on%20getting%20my%20last%20phone%2C%20a%20T-Mobile%20Sidekick%203.%20%20As%20I%27ve%20checked%20the%20notes%20I%20made%20when%20I%20las" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;t=Mobile%20Phone%20Wishlist" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Mobile%20Phone%20Wishlist&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist&amp;annotation=It%20seems%20that%20I%27m%20either%20currently%2C%20or%20will%20soon%20be%2C%20in%20the%20market%20for%20a%20new%20phone.%20%20This%20is%20actually%20a%20fall-out%20effect%20from%20the%20marriage%2C%20as%20well%20as%20timing%20on%20getting%20my%20last%20phone%2C%20a%20T-Mobile%20Sidekick%203.%20%20As%20I%27ve%20checked%20the%20notes%20I%20made%20when%20I%20las" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=It%20seems%20that%20I%27m%20either%20currently%2C%20or%20will%20soon%20be%2C%20in%20the%20market%20for%20a%20new%20phone.%20%20This%20is%20actually%20a%20fall-out%20effect%20from%20the%20marriage%2C%20as%20well%20as%20timing%20on%20getting%20my%20last%20phone%2C%20a%20T-Mobile%20Sidekick%203.%20%20As%20I%27ve%20checked%20the%20notes%20I%20made%20when%20I%20las" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Mobile%20Phone%20Wishlist&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;t=Mobile%20Phone%20Wishlist&amp;s=It%20seems%20that%20I%27m%20either%20currently%2C%20or%20will%20soon%20be%2C%20in%20the%20market%20for%20a%20new%20phone.%20%20This%20is%20actually%20a%20fall-out%20effect%20from%20the%20marriage%2C%20as%20well%20as%20timing%20on%20getting%20my%20last%20phone%2C%20a%20T-Mobile%20Sidekick%203.%20%20As%20I%27ve%20checked%20the%20notes%20I%20made%20when%20I%20las" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Mobile%20Phone%20Wishlist%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Mobile%20Phone%20Wishlist&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Mobile%20Phone%20Wishlist&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F06%2Fmobile-phone-wishlist%2F&amp;title=Mobile%20Phone%20Wishlist&amp;body=It%20seems%20that%20I%27m%20either%20currently%2C%20or%20will%20soon%20be%2C%20in%20the%20market%20for%20a%20new%20phone.%20%20This%20is%20actually%20a%20fall-out%20effect%20from%20the%20marriage%2C%20as%20well%20as%20timing%20on%20getting%20my%20last%20phone%2C%20a%20T-Mobile%20Sidekick%203.%20%20As%20I%27ve%20checked%20the%20notes%20I%20made%20when%20I%20las" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=29&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2008/03/06/mobile-phone-wishlist/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sorry, Ladies!</title>
		<link>http://blog.gurski.org/index.php/2008/03/03/sorry-ladies/</link>
		<comments>http://blog.gurski.org/index.php/2008/03/03/sorry-ladies/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 02:59:47 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Love]]></category>
		<category><![CDATA[Marriage]]></category>
		<category><![CDATA[Relationships]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2008/03/03/sorry-ladies/</guid>
		<description><![CDATA[Sorry to disappoint all the other ladies out there (all zero of you), but a little over 2 weeks ago, I became a married man. My lovely wife has a write-up of the wedding over at her blog, so go check it out. The entire day seemed like a blur, both the longest and shortest [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry to disappoint all the other ladies out there (all zero of you), but a little over 2 weeks ago, I became a married man.  My lovely wife has <a href="http://blog.catherinesandy.com/index.php/2008/02/25/a-busy-busy-week/">a write-up of the wedding</a> over at her blog, so go check it out.</p>
<p><span id="more-28"></span></p>
<p>The entire day seemed like a blur, both the longest and shortest day of my life, and the scariest and happiest day as well.  It still feels surreal to say things like &#8220;my wife&#8221; or &#8220;I&#8217;m married&#8221; or to look at my ring.  I know that it will probably start to seem more normal as time goes on, but I&#8217;m enjoying the weirdness right now.</p>
<p>About the only things I can add to Cathy&#8217;s account of the wedding is the bachelor party, on Saturday, February 16.  As far as I know, no one had a camera, so there aren&#8217;t any pics, but it was rather tame, if not late.</p>
<p>Sean, my best man, organized a dinner at <a href="http://www.claddaghonline.com/">Claddagh Pub</a> in Baltimore, where we kept things pretty much low-key.  There were at least two separate bachelorette parties that were taking place there at the same time, and near as we can figure, that means everyone dresses up in silly outfits and gets drunk.  After dinner, we went over to <a href="http://www.edgarsclub.com/">Edgar&#8217;s</a> to play pool until something like 2 in the morning.  The entire time, I proved yet again that I can&#8217;t play pool to save my life.  After we closed Edgar&#8217;s, we went back to Sean&#8217;s hotel, to swap cars, and then drove back to Frederick.  I figure we got in sometime around 3:30 in the morning.  After a nice 4-5 hour nap, Sean made sure I was awake, then we got into our tuxes and drove back to Baltimore, arriving right when we were supposed to, at 12:30pm.</p>
<p>We spent most of the next hour+ just waiting, with me basically trapped in a room so that I wouldn&#8217;t inadvertently see Cathy in her dress.  Groomsmen and bridesmaids were going back and forth between our room and Cathy&#8217;s, and I got fitted with a lapel mic and had a few pictures snapped by the photographer.  The hour seemed to drag on, but eventually we were told to get ready.  Sean, Morty (our officiant), and I were led through back hallways at Martin&#8217;s to the room where the ceremony and reception were to take place, and we got to wait some more behind the curtains until the rest of the wedding party was ready, then we walked out and took our places.</p>
<p>I couldn&#8217;t really tell you what happened during the ceremony, but I remember when I first saw Cathy, radiant in her gown, and thinking how beautiful she looked.  After that, everything up until we left the reception is nothing but a blur.  I can&#8217;t wait to see the video to find out what the ceremony and reception were like.</p>
<p>Incidentally, we and others have put up some pictures.  Some of the links will be updated, so be sure to check back, and as we learn of more, I&#8217;ll add them to the post.  So far we have:</p>
<ul>
<li><a href="http://www.flickr.com/photos/98064212@N00/sets/72157603996281569/">Debra and Cedric&#8217;s pictures</a> that Cathy&#8217;s put up in her account</li>
<li><a href="http://www.flickr.com/photos/ravensnbluedevils/sets/72157603943362352/">Leigh&#8217;s pictures</a></li>
<li><a href="http://www.flickr.com/photos/coraline97/">Sabrina&#8217;s pictures</a></li>
<li><a href="http://www.flickr.com/photos/magurski/collections/72157603996376662/">A collection of multiple sets</a> that I&#8217;ve put up, where all wedding-related pictures I have will go</li>
<li><a href="http://www.theprosphotos.com/">The professional shots</a>, just enter &#8220;February&#8221; for the month, &#8220;2008&#8243; for the year, and either &#8220;Catherine&#8221; or &#8220;Michael&#8221; for the name, and it will provide a link to view/order pictures.</li>
</ul>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21&amp;bodytext=Sorry%20to%20disappoint%20all%20the%20other%20ladies%20out%20there%20%28all%20zero%20of%20you%29%2C%20but%20a%20little%20over%202%20weeks%20ago%2C%20I%20became%20a%20married%20man.%20%20My%20lovely%20wife%20has%20a%20write-up%20of%20the%20wedding%20over%20at%20her%20blog%2C%20so%20go%20check%20it%20out.%0D%0A%0D%0A%0A%0AThe%20entire%20day%20seemed%20like%20a%20blur%2C%20b" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21&amp;notes=Sorry%20to%20disappoint%20all%20the%20other%20ladies%20out%20there%20%28all%20zero%20of%20you%29%2C%20but%20a%20little%20over%202%20weeks%20ago%2C%20I%20became%20a%20married%20man.%20%20My%20lovely%20wife%20has%20a%20write-up%20of%20the%20wedding%20over%20at%20her%20blog%2C%20so%20go%20check%20it%20out.%0D%0A%0D%0A%0A%0AThe%20entire%20day%20seemed%20like%20a%20blur%2C%20b" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;t=Sorry%2C%20Ladies%21" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Sorry%2C%20Ladies%21&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21&amp;annotation=Sorry%20to%20disappoint%20all%20the%20other%20ladies%20out%20there%20%28all%20zero%20of%20you%29%2C%20but%20a%20little%20over%202%20weeks%20ago%2C%20I%20became%20a%20married%20man.%20%20My%20lovely%20wife%20has%20a%20write-up%20of%20the%20wedding%20over%20at%20her%20blog%2C%20so%20go%20check%20it%20out.%0D%0A%0D%0A%0A%0AThe%20entire%20day%20seemed%20like%20a%20blur%2C%20b" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Sorry%20to%20disappoint%20all%20the%20other%20ladies%20out%20there%20%28all%20zero%20of%20you%29%2C%20but%20a%20little%20over%202%20weeks%20ago%2C%20I%20became%20a%20married%20man.%20%20My%20lovely%20wife%20has%20a%20write-up%20of%20the%20wedding%20over%20at%20her%20blog%2C%20so%20go%20check%20it%20out.%0D%0A%0D%0A%0A%0AThe%20entire%20day%20seemed%20like%20a%20blur%2C%20b" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Sorry%2C%20Ladies%21&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;t=Sorry%2C%20Ladies%21&amp;s=Sorry%20to%20disappoint%20all%20the%20other%20ladies%20out%20there%20%28all%20zero%20of%20you%29%2C%20but%20a%20little%20over%202%20weeks%20ago%2C%20I%20became%20a%20married%20man.%20%20My%20lovely%20wife%20has%20a%20write-up%20of%20the%20wedding%20over%20at%20her%20blog%2C%20so%20go%20check%20it%20out.%0D%0A%0D%0A%0A%0AThe%20entire%20day%20seemed%20like%20a%20blur%2C%20b" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Sorry%2C%20Ladies%21%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Sorry%2C%20Ladies%21&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Sorry%2C%20Ladies%21&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2008%2F03%2F03%2Fsorry-ladies%2F&amp;title=Sorry%2C%20Ladies%21&amp;body=Sorry%20to%20disappoint%20all%20the%20other%20ladies%20out%20there%20%28all%20zero%20of%20you%29%2C%20but%20a%20little%20over%202%20weeks%20ago%2C%20I%20became%20a%20married%20man.%20%20My%20lovely%20wife%20has%20a%20write-up%20of%20the%20wedding%20over%20at%20her%20blog%2C%20so%20go%20check%20it%20out.%0D%0A%0D%0A%0A%0AThe%20entire%20day%20seemed%20like%20a%20blur%2C%20b" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=28&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2008/03/03/sorry-ladies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Finally back on the air</title>
		<link>http://blog.gurski.org/index.php/2007/08/16/finally-back-on-the-air/</link>
		<comments>http://blog.gurski.org/index.php/2007/08/16/finally-back-on-the-air/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 02:39:24 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/08/16/finally-back-on-the-air/</guid>
		<description><![CDATA[So when we were looking at houses, one of the primary things I was looking for was DSL access. With the house we finally ended up buying, I noticed that the owner had a DSL bridge up and running. Score! At closing, I asked him if he had DSL, and he said he did. Score! [...]]]></description>
			<content:encoded><![CDATA[<p>So when we were looking at houses, one of the primary things I was looking for was <acronym title="Digital Subscriber Line">DSL</acronym> access.  With the house we finally ended up buying, I noticed that the owner had a <acronym title="Digital Subscriber Line">DSL</acronym> bridge up and running.  Score!  At closing, I asked him if he had <acronym title="Digital Subscriber Line">DSL</acronym>, and he said he did.  Score!  It&#8217;s smooth sailing from here on out, right?  Wrong.  Little did I know just how much of a broadband wasteland Frederick happens to be.</p>
<p><span id="more-26"></span></p>
<p>One might think, &#8220;But the last guy had <acronym title="Digital Subscriber Line">DSL</acronym>, so what&#8217;s the big deal?&#8221;  The big deal is that Verizon really doesn&#8217;t care about the Frederick area at all.  There&#8217;s one <acronym title="Central Office">CO</acronym> in the area.  It happens to be at full <acronym title="Digital Subscriber Line">DSL</acronym> capacity.  So as soon as the previous owner terminated his service, his <acronym title="Digital Subscriber Line">DSL</acronym> circuit was snapped up by someone else.  So it wasn&#8217;t available to us.  I really didn&#8217;t want to go with cable, because I&#8217;ve had it before and haven&#8217;t been overly impressed.  For a while, I seriously considered <acronym title="Single-line Digital Subscriber Line">SDSL</acronym>, but at well over $100 a month, I convinced myself that wasn&#8217;t an option.</p>
<p>Then I found a local <acronym title="Internet Service Provider">ISP</acronym> that claimed to have <acronym title="Integrated Services Digital Network">ISDN</acronym>.  Now, this would be just as slow as <acronym title="Single-line Digital Subscriber Line">SDSL</acronym>, but for roughly $30-$40 a month, it&#8217;s much more reasonable.  I was psyched to get the service, and just had a few questions.  So I call the <acronym title="Internet Service Provider">ISP</acronym> to speak to their tech people.  They couldn&#8217;t really answer any of my technical questions, such as whether I&#8217;d need another line, and despite being right down the street they couldn&#8217;t say whether Verizon would charge per-minute fees or anything above and beyond what I was paying them.  I could have handled that, but the answer to my next question floored me.  Their website specifically stated that they would provide the <acronym title="Customer Premises Equipment">CPE</acronym>, fully configured.  The person I spoke to, when asked &#8220;Do you guys provide the <acronym title="Customer Premises Equipment">CPE</acronym>?&#8221; told me that no, they didn&#8217;t, and recommeded a specific model of <acronym title="Integrated Services Digital Network">ISDN</acronym> <acronym title="Customer Premises Equipment">CPE</acronym> and suggested I find it on eBay.  Um, yeah&#8230;  So scratch <acronym title="Integrated Services Digital Network">ISDN</acronym>.</p>
<p>By this point, you might be wondering what I finally went with, not having <acronym title="Digital Subscriber Line">DSL</acronym>, cable, <acronym title="Single-line Digital Subscriber Line">SDSL</acronym>, or <acronym title="Integrated Services Digital Network">ISDN</acronym>.  I&#8217;ll tell you&#8230; Satellite.  Yes, slow, slightly faster than dialup if it&#8217;s a clear day, expensive satellite.  We went with Dish Network, which resells WildBlue&#8217;s service.  If I&#8217;d done some homework, I might have gone elsewhere, as the overall opinion seems to be rather negative.  But, I didn&#8217;t.  So we have it.  Now.  Because we ordered on June 26th, were told an install of August 4th.  On the 3rd, we got rescheduled to the 5th for what I consider a valid reason.  On the 5th we got rescheduled to the 12th, due to lack of the right length of ladder.  On the 12th, we got rescheduled and the feces started to hit the rotating blades.</p>
<p>We were both sick and tired of being rescheduled, and this time we were told the 24th.  You know, 2 months after we ordered the service.  After several phone calls and being told there was nothing sooner, we called Dish Network to cancel all our service.  We lucked out with someone who seemed to actually care, that looked into the ticket and then got pissed on our behalf.  And then she got her supervisor, who also got pissed on our behalf.  After collecting all our details for her supervisor, to be forwarded to the district managers, we had a promise of &#8220;this week, with at least 24 hours&#8217; notice&#8221; or they&#8217;d completely release us from all their services without penalty.</p>
<p>Monday morning, we get a call, and set up a Tuesday morning install. Tuesday&#8217;s install completes with very little trouble, and we&#8217;re online by 1pm.  Since then, I&#8217;ve learned about the Fair Access Policy, and have installed <a href="http://www.wildblue.cc/wbsoft.htm">FapZilla</a> to monitor usage.  After 2 days and change, we&#8217;re at about 23% of our monthly download limit before we get cut to painfully slow speeds.  Most of this is due to having 5 computers needing a 45 days&#8217; updates, 4 of them Debian Unstable (2 i386, 2 amd64).  We&#8217;ll need to see over the next month just how bad things get, but I&#8217;m getting the impression that this service is, at best, aimed at just websurfers.  Urk.</p>
<p>So, where&#8217;s the blog now?  I ordered a <a href="http://www.linode.com/">Linode</a>, since I needed a solution for web, mail, dns, etc.  They&#8217;re really awesomely responsive, dealing with requests usually within minutes.  For root-level access and my choice of distro, with static IPs and an insane amount of bandwidth, the prices are incredibly reasonable as well.  I highly recommend them if you need your own host somewhere.</p>
<p>And so, now we&#8217;re finally back on the air.  Maybe not with the best access speeds for ourselves, but hopefully we&#8217;ll have more options once our contract with the satellite is up&#8230;</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air&amp;bodytext=So%20when%20we%20were%20looking%20at%20houses%2C%20one%20of%20the%20primary%20things%20I%20was%20looking%20for%20was%20DSL%20access.%20%20With%20the%20house%20we%20finally%20ended%20up%20buying%2C%20I%20noticed%20that%20the%20owner%20had%20a%20DSL%20bridge%20up%20and%20running.%20%20Score%21%20%20At%20closing%2C%20I%20asked%20him%20if%20he%20had%20DSL%2C%20and%20h" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air&amp;notes=So%20when%20we%20were%20looking%20at%20houses%2C%20one%20of%20the%20primary%20things%20I%20was%20looking%20for%20was%20DSL%20access.%20%20With%20the%20house%20we%20finally%20ended%20up%20buying%2C%20I%20noticed%20that%20the%20owner%20had%20a%20DSL%20bridge%20up%20and%20running.%20%20Score%21%20%20At%20closing%2C%20I%20asked%20him%20if%20he%20had%20DSL%2C%20and%20h" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;t=Finally%20back%20on%20the%20air" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Finally%20back%20on%20the%20air&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air&amp;annotation=So%20when%20we%20were%20looking%20at%20houses%2C%20one%20of%20the%20primary%20things%20I%20was%20looking%20for%20was%20DSL%20access.%20%20With%20the%20house%20we%20finally%20ended%20up%20buying%2C%20I%20noticed%20that%20the%20owner%20had%20a%20DSL%20bridge%20up%20and%20running.%20%20Score%21%20%20At%20closing%2C%20I%20asked%20him%20if%20he%20had%20DSL%2C%20and%20h" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=So%20when%20we%20were%20looking%20at%20houses%2C%20one%20of%20the%20primary%20things%20I%20was%20looking%20for%20was%20DSL%20access.%20%20With%20the%20house%20we%20finally%20ended%20up%20buying%2C%20I%20noticed%20that%20the%20owner%20had%20a%20DSL%20bridge%20up%20and%20running.%20%20Score%21%20%20At%20closing%2C%20I%20asked%20him%20if%20he%20had%20DSL%2C%20and%20h" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Finally%20back%20on%20the%20air&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;t=Finally%20back%20on%20the%20air&amp;s=So%20when%20we%20were%20looking%20at%20houses%2C%20one%20of%20the%20primary%20things%20I%20was%20looking%20for%20was%20DSL%20access.%20%20With%20the%20house%20we%20finally%20ended%20up%20buying%2C%20I%20noticed%20that%20the%20owner%20had%20a%20DSL%20bridge%20up%20and%20running.%20%20Score%21%20%20At%20closing%2C%20I%20asked%20him%20if%20he%20had%20DSL%2C%20and%20h" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Finally%20back%20on%20the%20air%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Finally%20back%20on%20the%20air&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Finally%20back%20on%20the%20air&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F08%2F16%2Ffinally-back-on-the-air%2F&amp;title=Finally%20back%20on%20the%20air&amp;body=So%20when%20we%20were%20looking%20at%20houses%2C%20one%20of%20the%20primary%20things%20I%20was%20looking%20for%20was%20DSL%20access.%20%20With%20the%20house%20we%20finally%20ended%20up%20buying%2C%20I%20noticed%20that%20the%20owner%20had%20a%20DSL%20bridge%20up%20and%20running.%20%20Score%21%20%20At%20closing%2C%20I%20asked%20him%20if%20he%20had%20DSL%2C%20and%20h" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=26&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/08/16/finally-back-on-the-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Holy shit, we are in debt!</title>
		<link>http://blog.gurski.org/index.php/2007/04/17/holy-shit-we-are-in-debt/</link>
		<comments>http://blog.gurski.org/index.php/2007/04/17/holy-shit-we-are-in-debt/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 01:21:40 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Housing]]></category>
		<category><![CDATA[Moblogging]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/04/17/holy-shit-we-are-in-debt/</guid>
		<description><![CDATA[So, we did it. We finally did it. This morning at 10am, we closed on our house. After scads and scads of signing and initialing paperwork, and handing over a huuuge check, we&#8217;re now both officially in debt. Eeeep! So, we finished up around 11:30 this morning at the title company then went back to [...]]]></description>
			<content:encoded><![CDATA[<p>So, we did it.  We finally did it.  This morning at 10am, we closed on  our house.  After scads and scads of signing and initialing paperwork,  and handing over a huuuge check, we&#8217;re now both officially in debt.   Eeeep!<br />
So, we finished up around 11:30 this morning at the title company then  went back to our agent&#8217;s office for a bit.  After that, we stopped by  the Despot of Homes for some minor supplies, and headed up to <strong>our</strong> house (after a quick lunch).</p>
<p><span id="more-24"></span></p>
<p>Add in several hours of intensive measurements (no room attempts to be a  box, so some rooms have about 16 measurements), some window  measuresments, and playing with the garage door opener, and we&#8217;re done  for the day.  We also managed to activate the major utilities.</p>
<p>Up next?  Probably moving all the accumulated junk from our  apartment&#8230; </p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;bodytext=So%2C%20we%20did%20it.%20%20We%20finally%20did%20it.%20%20This%20morning%20at%2010am%2C%20we%20closed%20on%20%20our%20house.%20%20After%20scads%20and%20scads%20of%20signing%20and%20initialing%20paperwork%2C%20%20and%20handing%20over%20a%20huuuge%20check%2C%20we%27re%20now%20both%20officially%20in%20debt.%20%20%20Eeeep%21%0D%0ASo%2C%20we%20finished%20up%20around%2011" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;notes=So%2C%20we%20did%20it.%20%20We%20finally%20did%20it.%20%20This%20morning%20at%2010am%2C%20we%20closed%20on%20%20our%20house.%20%20After%20scads%20and%20scads%20of%20signing%20and%20initialing%20paperwork%2C%20%20and%20handing%20over%20a%20huuuge%20check%2C%20we%27re%20now%20both%20officially%20in%20debt.%20%20%20Eeeep%21%0D%0ASo%2C%20we%20finished%20up%20around%2011" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;t=Holy%20shit%2C%20we%20are%20in%20debt%21" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;annotation=So%2C%20we%20did%20it.%20%20We%20finally%20did%20it.%20%20This%20morning%20at%2010am%2C%20we%20closed%20on%20%20our%20house.%20%20After%20scads%20and%20scads%20of%20signing%20and%20initialing%20paperwork%2C%20%20and%20handing%20over%20a%20huuuge%20check%2C%20we%27re%20now%20both%20officially%20in%20debt.%20%20%20Eeeep%21%0D%0ASo%2C%20we%20finished%20up%20around%2011" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=So%2C%20we%20did%20it.%20%20We%20finally%20did%20it.%20%20This%20morning%20at%2010am%2C%20we%20closed%20on%20%20our%20house.%20%20After%20scads%20and%20scads%20of%20signing%20and%20initialing%20paperwork%2C%20%20and%20handing%20over%20a%20huuuge%20check%2C%20we%27re%20now%20both%20officially%20in%20debt.%20%20%20Eeeep%21%0D%0ASo%2C%20we%20finished%20up%20around%2011" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;t=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;s=So%2C%20we%20did%20it.%20%20We%20finally%20did%20it.%20%20This%20morning%20at%2010am%2C%20we%20closed%20on%20%20our%20house.%20%20After%20scads%20and%20scads%20of%20signing%20and%20initialing%20paperwork%2C%20%20and%20handing%20over%20a%20huuuge%20check%2C%20we%27re%20now%20both%20officially%20in%20debt.%20%20%20Eeeep%21%0D%0ASo%2C%20we%20finished%20up%20around%2011" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Holy%20shit%2C%20we%20are%20in%20debt%21%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F17%2Fholy-shit-we-are-in-debt%2F&amp;title=Holy%20shit%2C%20we%20are%20in%20debt%21&amp;body=So%2C%20we%20did%20it.%20%20We%20finally%20did%20it.%20%20This%20morning%20at%2010am%2C%20we%20closed%20on%20%20our%20house.%20%20After%20scads%20and%20scads%20of%20signing%20and%20initialing%20paperwork%2C%20%20and%20handing%20over%20a%20huuuge%20check%2C%20we%27re%20now%20both%20officially%20in%20debt.%20%20%20Eeeep%21%0D%0ASo%2C%20we%20finished%20up%20around%2011" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=24&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/04/17/holy-shit-we-are-in-debt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hooray, Nationwide!</title>
		<link>http://blog.gurski.org/index.php/2007/04/16/hooray-nationwide/</link>
		<comments>http://blog.gurski.org/index.php/2007/04/16/hooray-nationwide/#comments</comments>
		<pubDate>Mon, 16 Apr 2007 16:53:55 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Raves]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/04/16/hooray-nationwide/</guid>
		<description><![CDATA[Most of the time, when I hear testimonials from customers about insurance companies, I tend to take them with a shaker of salt. Mostly because so many ads with testimonials for other products have itty-bitty disclaimers that often indicate &#8220;Results are not typical&#8221;, and what with companies always trying to put their best foot forward. [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the time, when I hear testimonials from customers about insurance companies, I tend to take them with a shaker of salt.  Mostly because so many ads with testimonials for other products have itty-bitty disclaimers that often indicate &#8220;Results are not typical&#8221;, and what with companies always trying to put their best foot forward.  Now, <a href="http://www.nationwide.com/">Nationwide</a> doesn&#8217;t have a bunch of celebrities on their commercials, or cute little reptilian mascots or anything like that.  What they do have is service.</p>
<p><span id="more-23"></span></p>
<p>I got a call from my mother a little while ago, in part asking about a friend of mine who teaches at Virginia Tech<sup><a href="#footnote-1-23" id="footnote-link-1-23" title="See the footnote.">1</a></sup>.  After assuring her that my friend was OK, she went on to tell me that she got home from work this morning, and the house was flooded.  Apparently the tank on the toilet in the powder room cracked sometime between when she left for work last night and when she got home this morning.  So there was about an inch and a half of water on the main level, and the basement was a lot worse off.  Ruined floors, carpet, tile, etc.  Frantic, she couldn&#8217;t find her homeowners policy, so called the number on her car insurance<sup><a href="#footnote-2-23" id="footnote-link-2-23" title="See the footnote.">2</a></sup>.  After they managed to calm her down, they got the insurance info squared away, and told her that within an hour and a half or so, someone would call to arrange for a crew to come out and deal with the issues within four hours.</p>
<p>Well, I didn&#8217;t get a time that she got home (though I suspect it was in the 8-8:30 or so range), but when she called me just after noon, there was already a crew there cleaning up.  Now, I don&#8217;t know what the normal turn-around time for the average company is on an issue like that, but that&#8217;s still a pretty impressive reaction time.</p>
<p>She&#8217;s had Nationwide for probably close to 25 years, and they&#8217;ve always been there, especially when my sister and I were pretty stupid teenagers with cars, with all that implies.  I&#8217;ve had them myself for over 10 years, since I got my first apartment and my car.  My fianc&eacute;e has had them since she got her car.  And we&#8217;re (my fianc&eacute;e and I) are using them for our homeowners insurance on our upcoming house.</p>
<p>Now, this blog doesn&#8217;t have the production values of of a national television or radio spot, and I certainly receive nothing other than the normal long-term &#038; multiple policy discounts that any other customer gets from them, but Nationwide has been there time and again, and have never given me or mine any hassles in dealing with them.  And that, as a completely independent customer who&#8217;s genuinely happy with the service, speaks more highly of them than any paid-for advertising.  At least, it does to me.</p><br /><ol class="footnotes"><li id="footnote-1-23">If you haven&#8217;t been following the news today, there have been shootings on-campus in Blacksburg, VA, with the casualty count mounting  [<a href="#footnote-link-1-23">back</a>]</li><li id="footnote-2-23">There are advantages to getting home/renter&#8217;s insurance and car insurance from the same company!  [<a href="#footnote-link-2-23">back</a>]</li></ol>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21&amp;bodytext=Most%20of%20the%20time%2C%20when%20I%20hear%20testimonials%20from%20customers%20about%20insurance%20companies%2C%20I%20tend%20to%20take%20them%20with%20a%20shaker%20of%20salt.%20%20Mostly%20because%20so%20many%20ads%20with%20testimonials%20for%20other%20products%20have%20itty-bitty%20disclaimers%20that%20often%20indicate%20%22Results%20" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21&amp;notes=Most%20of%20the%20time%2C%20when%20I%20hear%20testimonials%20from%20customers%20about%20insurance%20companies%2C%20I%20tend%20to%20take%20them%20with%20a%20shaker%20of%20salt.%20%20Mostly%20because%20so%20many%20ads%20with%20testimonials%20for%20other%20products%20have%20itty-bitty%20disclaimers%20that%20often%20indicate%20%22Results%20" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;t=Hooray%2C%20Nationwide%21" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Hooray%2C%20Nationwide%21&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21&amp;annotation=Most%20of%20the%20time%2C%20when%20I%20hear%20testimonials%20from%20customers%20about%20insurance%20companies%2C%20I%20tend%20to%20take%20them%20with%20a%20shaker%20of%20salt.%20%20Mostly%20because%20so%20many%20ads%20with%20testimonials%20for%20other%20products%20have%20itty-bitty%20disclaimers%20that%20often%20indicate%20%22Results%20" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Most%20of%20the%20time%2C%20when%20I%20hear%20testimonials%20from%20customers%20about%20insurance%20companies%2C%20I%20tend%20to%20take%20them%20with%20a%20shaker%20of%20salt.%20%20Mostly%20because%20so%20many%20ads%20with%20testimonials%20for%20other%20products%20have%20itty-bitty%20disclaimers%20that%20often%20indicate%20%22Results%20" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Hooray%2C%20Nationwide%21&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;t=Hooray%2C%20Nationwide%21&amp;s=Most%20of%20the%20time%2C%20when%20I%20hear%20testimonials%20from%20customers%20about%20insurance%20companies%2C%20I%20tend%20to%20take%20them%20with%20a%20shaker%20of%20salt.%20%20Mostly%20because%20so%20many%20ads%20with%20testimonials%20for%20other%20products%20have%20itty-bitty%20disclaimers%20that%20often%20indicate%20%22Results%20" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Hooray%2C%20Nationwide%21%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Hooray%2C%20Nationwide%21&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Hooray%2C%20Nationwide%21&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F04%2F16%2Fhooray-nationwide%2F&amp;title=Hooray%2C%20Nationwide%21&amp;body=Most%20of%20the%20time%2C%20when%20I%20hear%20testimonials%20from%20customers%20about%20insurance%20companies%2C%20I%20tend%20to%20take%20them%20with%20a%20shaker%20of%20salt.%20%20Mostly%20because%20so%20many%20ads%20with%20testimonials%20for%20other%20products%20have%20itty-bitty%20disclaimers%20that%20often%20indicate%20%22Results%20" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=23&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/04/16/hooray-nationwide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making some progress</title>
		<link>http://blog.gurski.org/index.php/2007/03/09/making-some-progress/</link>
		<comments>http://blog.gurski.org/index.php/2007/03/09/making-some-progress/#comments</comments>
		<pubDate>Fri, 09 Mar 2007 22:01:20 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/03/09/making-some-progress/</guid>
		<description><![CDATA[Even though I haven&#8217;t been devoting as much time to it as I either could or should, I&#8217;ve made some decent progress on my aggregator. Maybe it isn&#8217;t as much as it could be, but it&#8217;s enough to make me happy, and since I&#8217;m not getting paid, that&#8217;s all that matters right now, right? Let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Even though I haven&#8217;t been devoting as much time to it as I either could or should, I&#8217;ve made some decent progress on my aggregator.  Maybe it isn&#8217;t as much as it could be, but it&#8217;s enough to make me happy, and since I&#8217;m not getting paid, that&#8217;s all that matters right now, right?</p>
<p><span id="more-21"></span></p>
<p>Let&#8217;s see&#8230; where to begin?  Well, I guess I can list things in no particular order, and let it go from there.</p>
<ol>
<li> <strong>The &#8220;biggie&#8221; is that there&#8217;s now an official name for the project.</strong>  I thought that I&#8217;d be clever, and had been using <code>SpeedReader</code> internally, but then I decided to search for the name, and it turns out that not only is there <em>already</em> a <code>SpeedReader</code>, but it&#8217;s also an aggregator.  Damn.  So, I thought long and hard about it (a few minutes), and decided that, based on my initials and a dearth of hits from <a href="http://www.google.com/">Google</a>, that the name <code>maggregate</code> would be good.  Well, if not good, at least unique<sup><a href="#footnote-1-21" id="footnote-link-1-21" title="See the footnote.">1</a></sup>.  So, that&#8217;s what I&#8217;m calling it from now on.  <code>Maggregate</code>.</li>
<li> <strong>A lot of extraneous crashes have been dealt with.</strong>  I had been adding exception handling in the few places where it&#8217;s most likely to occur (network and parsing) on a case-by-case basis, but I kept coming up with new ones.  When I took the wireless interface down on the laptop I use to develop code on, and got yet another unhandled exception, I finally decided that adding a &#8220;catchall&#8221; <code>rescue</code> block to each place that needed it, as those errors were all technically recoverable.  Since then, no crashes.  Yay.  And logging differentiates enough (error for catchall vs warning for explicitly handled) that I can quickly see what I&#8217;ve been too lazy to explicitly deal with.</li>
<li> <strong><code>Maggregate</code> now accepts gzip-encoded content!</strong>  I knew I always wanted to do this, but my prior experiences with trying to deal with raw <code>Zlib</code> (in C) kept me from relishing having to do it.  Lucky for me, the <code>ruby</code> library is nice enough that it was <em>almost</em> trivial.  In fact, the hardest part was realizing that I needed to wrap the body from the <acronym title="HyperText Transfer Protocol">HTTP</acronym> request in a <code>StringIO</code> object instead of leaving it as a string.  Once that was done, it was dead simple.</li>
<li> <strong>Partial cookie support is in place.</strong>  Well, that should really be &#8220;preliminary&#8221;, as in there&#8217;s just a bit of code to recognize cookies, and there&#8217;s now a table in the <code>maggregate</code> database to eventually store the cookies.  So, the logs let you know that you were sent a cookie (or several), but that&#8217;s currently it.
<p>As an aside, having looked at <a href="http://www.ietf.org/rfc/rfc2109.txt">RFC 2109</a> and <a href="http://www.ietf.org/rfc/rfc2965.txt">RFC 2965</a>, it appears no one is using them&#8230;  Instead, it appears every single server out there sending cookies that I&#8217;ve come across just uses the <a href="http://wp.netscape.com/newsref/std/cookie_spec.html">Netscape cookie specification</a>.  Keep in mind, RFC 2109 dates from February 1997, and RFC 2965 dates from October 2000.  Not much of an issues, but I think my jaw will drop the first time I spy a <code>max-age</code> insead of an <code>expires</code> in a cookie header.</p>
</li>
<li> <strong>Potential support for <a href="http://www.wyman.us/main/2004/09/using_rfc3229_w.html">RFC 3229 with &#8220;feed&#8221;</a>.</strong>  This was more of a &#8220;I wonder how easy it would be&#8230;&#8221; deal than anything else.  I was reading something, followed a <acronym title="Uniform Resource Locator">URL</acronym> in a comment, and one or two clicks later, ended up at that page.  For those folks who haven&#8217;t memorized the RFC index, <a href="http://www.ietf.org/rfc/rfc3229.txt">RFC 3229</a> is &#8220;Delta encoding in <acronym title="HyperText Transfer Protocol">HTTP</acronym>&#8221;, which is basically a way to request a resource over <acronym title="HyperText Transfer Protocol">HTTP</acronym> and get just what has changed on the page instead of having to transfer the entire thing again.  The &#8220;with feed&#8221; is an extension that purports to handle feed deltas in a manner that doesn&#8217;t break encapsulation, it just gives you a &#8220;feed&#8221; with only new/changed articles in it.
<p>My biggest concern was having to support a new <acronym title="HyperText Transfer Protocol">HTTP</acronym> status code, <code>226 IM Used</code>, as the Ruby <code>Net::HTTP</code> library doesn&#8217;t have support for it.  I should have known that it wouldn&#8217;t be an issue, thanks to Ruby&#8217;s allowing one to extend existing classes fairly easily.  How easily?  This easily:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw3">require</span> <span class="st0">&#8216;net/http&#8217;</span></p>
<p><span class="kw1">module</span> Net<br />
&nbsp; <span class="kw1">class</span> HTTPIMUsed &lt; HTTPSuccess &nbsp; &nbsp; &nbsp; &nbsp;<span class="co1"># 226</span><br />
&nbsp; &nbsp; HAS_BODY = <span class="kw2">true</span><br />
&nbsp; <span class="kw1">end</span></p>
<p>&nbsp; <span class="kw1">class</span> HTTPResponse<br />
&nbsp; &nbsp; CODE_TO_OBJ<span class="br0">&#91;</span><span class="nu0">226</span><span class="br0">&#93;</span> = HTTPIMUsed<br />
&nbsp; <span class="kw1">end</span><br />
<span class="kw1">end</span></div>
<p>That&#8217;s in the <code>maggregate</code> file that does all the network and <acronym title="HyperText Transfer Protocol">HTTP</acronym> connections.  That&#8217;s it.  Now, in <code>maggregate</code> at least, <code>Net::HTTP</code> understands the proper status code for a successful response for RFC 3229.  Nice, no?</p>
<p>Now, I say it&#8217;s potential support, because so far not one single feed in over 300 has ever responded with either a 226 response OR the associated additional <acronym title="HyperText Transfer Protocol">HTTP</acronym> headers.  But due to the way that I handle adding entries now, I don&#8217;t expect any issues, if and when a server decides to respond correctly.</p>
</li>
</ol>
<p>The UI is still completely unusable, as I&#8217;ve been verifying things are working through both logging and using the <code>sqlite3</code> exectuable to examine the database by hand.  Despite the number of crashes, I&#8217;ve yet to corrupt any data, either.  I suppose that the UI is the next real step, so I should finally learn more about <code>ncurses</code> and how to interact with it.</p><br /><ol class="footnotes"><li id="footnote-1-21">I had jokingly originally referred to the project as <code>maggle</code>, a take on <a href="http://www.raggle.org/">raggle</a>, but it seemed a bit too derivative of a name.  Sorry Tim, I know you liked this one  [<a href="#footnote-link-1-21">back</a>]</li></ol>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress&amp;bodytext=Even%20though%20I%20haven%27t%20been%20devoting%20as%20much%20time%20to%20it%20as%20I%20either%20could%20or%20should%2C%20I%27ve%20made%20some%20decent%20progress%20on%20my%20aggregator.%20%20Maybe%20it%20isn%27t%20as%20much%20as%20it%20could%20be%2C%20but%20it%27s%20enough%20to%20make%20me%20happy%2C%20and%20since%20I%27m%20not%20getting%20paid%2C%20that%27s%20all%20" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress&amp;notes=Even%20though%20I%20haven%27t%20been%20devoting%20as%20much%20time%20to%20it%20as%20I%20either%20could%20or%20should%2C%20I%27ve%20made%20some%20decent%20progress%20on%20my%20aggregator.%20%20Maybe%20it%20isn%27t%20as%20much%20as%20it%20could%20be%2C%20but%20it%27s%20enough%20to%20make%20me%20happy%2C%20and%20since%20I%27m%20not%20getting%20paid%2C%20that%27s%20all%20" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;t=Making%20some%20progress" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Making%20some%20progress&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress&amp;annotation=Even%20though%20I%20haven%27t%20been%20devoting%20as%20much%20time%20to%20it%20as%20I%20either%20could%20or%20should%2C%20I%27ve%20made%20some%20decent%20progress%20on%20my%20aggregator.%20%20Maybe%20it%20isn%27t%20as%20much%20as%20it%20could%20be%2C%20but%20it%27s%20enough%20to%20make%20me%20happy%2C%20and%20since%20I%27m%20not%20getting%20paid%2C%20that%27s%20all%20" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Even%20though%20I%20haven%27t%20been%20devoting%20as%20much%20time%20to%20it%20as%20I%20either%20could%20or%20should%2C%20I%27ve%20made%20some%20decent%20progress%20on%20my%20aggregator.%20%20Maybe%20it%20isn%27t%20as%20much%20as%20it%20could%20be%2C%20but%20it%27s%20enough%20to%20make%20me%20happy%2C%20and%20since%20I%27m%20not%20getting%20paid%2C%20that%27s%20all%20" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Making%20some%20progress&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;t=Making%20some%20progress&amp;s=Even%20though%20I%20haven%27t%20been%20devoting%20as%20much%20time%20to%20it%20as%20I%20either%20could%20or%20should%2C%20I%27ve%20made%20some%20decent%20progress%20on%20my%20aggregator.%20%20Maybe%20it%20isn%27t%20as%20much%20as%20it%20could%20be%2C%20but%20it%27s%20enough%20to%20make%20me%20happy%2C%20and%20since%20I%27m%20not%20getting%20paid%2C%20that%27s%20all%20" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Making%20some%20progress%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Making%20some%20progress&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Making%20some%20progress&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F03%2F09%2Fmaking-some-progress%2F&amp;title=Making%20some%20progress&amp;body=Even%20though%20I%20haven%27t%20been%20devoting%20as%20much%20time%20to%20it%20as%20I%20either%20could%20or%20should%2C%20I%27ve%20made%20some%20decent%20progress%20on%20my%20aggregator.%20%20Maybe%20it%20isn%27t%20as%20much%20as%20it%20could%20be%2C%20but%20it%27s%20enough%20to%20make%20me%20happy%2C%20and%20since%20I%27m%20not%20getting%20paid%2C%20that%27s%20all%20" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=21&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/03/09/making-some-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I never thought I&#8217;d be happy about debt</title>
		<link>http://blog.gurski.org/index.php/2007/02/22/i-never-thought-id-be-happy-about-debt/</link>
		<comments>http://blog.gurski.org/index.php/2007/02/22/i-never-thought-id-be-happy-about-debt/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 22:05:59 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Housing]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/02/22/i-never-thought-id-be-happy-about-debt/</guid>
		<description><![CDATA[So, I just got off the phone with the mortgage consultant that works with our buyer&#8217;s agent. We had filled out some info for a good faith estimate/pre-approval a few days ago, since we&#8217;re looking to move on a home slightly faster than we&#8217;d originally thought we would. I have to say, I&#8217;m stoked. I [...]]]></description>
			<content:encoded><![CDATA[<p>So, I just got off the phone with the mortgage consultant that works with our buyer&#8217;s agent.  We had filled out some info for a good faith estimate/pre-approval a few days ago, since we&#8217;re looking to move on a home slightly faster than we&#8217;d originally thought we would.  I have to say, I&#8217;m stoked.</p>
<p><span id="more-20"></span></p>
<p>I knew roughly the price range we wanted to look in based on what I was comfortable paying each month.  After running the numbers, it turns out that even bumping up the price of a house a bit above what I originally thought was a &#8220;good&#8221; price, we&#8217;re still in the zone that I consider reasonable, even including taxes, insurance, etc.  This should expand the number of places we can look at without having to &#8220;settle&#8221; for something in our price range.</p>
<p>I really never expected to be thrilled that I could go into debt so much, but, well, it&#8217;s really time to get out of renting a place, and become an &#8220;adult&#8221;.  Something tells me that this weekend is going to be busy looking at properties within our newly-expanded range, even though we still really like one of the properties we saw our first weekend out</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;bodytext=So%2C%20I%20just%20got%20off%20the%20phone%20with%20the%20mortgage%20consultant%20that%20works%20with%20our%20buyer%27s%20agent.%20%20We%20had%20filled%20out%20some%20info%20for%20a%20good%20faith%20estimate%2Fpre-approval%20a%20few%20days%20ago%2C%20since%20we%27re%20looking%20to%20move%20on%20a%20home%20slightly%20faster%20than%20we%27d%20originall" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;notes=So%2C%20I%20just%20got%20off%20the%20phone%20with%20the%20mortgage%20consultant%20that%20works%20with%20our%20buyer%27s%20agent.%20%20We%20had%20filled%20out%20some%20info%20for%20a%20good%20faith%20estimate%2Fpre-approval%20a%20few%20days%20ago%2C%20since%20we%27re%20looking%20to%20move%20on%20a%20home%20slightly%20faster%20than%20we%27d%20originall" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;t=I%20never%20thought%20I%27d%20be%20happy%20about%20debt" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;annotation=So%2C%20I%20just%20got%20off%20the%20phone%20with%20the%20mortgage%20consultant%20that%20works%20with%20our%20buyer%27s%20agent.%20%20We%20had%20filled%20out%20some%20info%20for%20a%20good%20faith%20estimate%2Fpre-approval%20a%20few%20days%20ago%2C%20since%20we%27re%20looking%20to%20move%20on%20a%20home%20slightly%20faster%20than%20we%27d%20originall" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=So%2C%20I%20just%20got%20off%20the%20phone%20with%20the%20mortgage%20consultant%20that%20works%20with%20our%20buyer%27s%20agent.%20%20We%20had%20filled%20out%20some%20info%20for%20a%20good%20faith%20estimate%2Fpre-approval%20a%20few%20days%20ago%2C%20since%20we%27re%20looking%20to%20move%20on%20a%20home%20slightly%20faster%20than%20we%27d%20originall" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;t=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;s=So%2C%20I%20just%20got%20off%20the%20phone%20with%20the%20mortgage%20consultant%20that%20works%20with%20our%20buyer%27s%20agent.%20%20We%20had%20filled%20out%20some%20info%20for%20a%20good%20faith%20estimate%2Fpre-approval%20a%20few%20days%20ago%2C%20since%20we%27re%20looking%20to%20move%20on%20a%20home%20slightly%20faster%20than%20we%27d%20originall" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=I%20never%20thought%20I%27d%20be%20happy%20about%20debt%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fi-never-thought-id-be-happy-about-debt%2F&amp;title=I%20never%20thought%20I%27d%20be%20happy%20about%20debt&amp;body=So%2C%20I%20just%20got%20off%20the%20phone%20with%20the%20mortgage%20consultant%20that%20works%20with%20our%20buyer%27s%20agent.%20%20We%20had%20filled%20out%20some%20info%20for%20a%20good%20faith%20estimate%2Fpre-approval%20a%20few%20days%20ago%2C%20since%20we%27re%20looking%20to%20move%20on%20a%20home%20slightly%20faster%20than%20we%27d%20originall" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=20&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/02/22/i-never-thought-id-be-happy-about-debt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This is supposed to be simple, right?</title>
		<link>http://blog.gurski.org/index.php/2007/02/22/this-is-supposed-to-be-simple-right/</link>
		<comments>http://blog.gurski.org/index.php/2007/02/22/this-is-supposed-to-be-simple-right/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 07:22:12 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/02/22/this-is-supposed-to-be-simple-right/</guid>
		<description><![CDATA[So, I&#8217;ve been spending more time working on coming up with my own feed aggregator. I&#8217;ve learned some pretty interesting things so far, as well as just how FUBAR RSS and Atom happen to be. You&#8217;d think that this would all be somewhat simple, and in an ideal world, it probably would. This is the [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve been spending more time working on coming up with my own feed aggregator.  I&#8217;ve learned some pretty interesting things so far, as well as just how <acronym title="Fucked Up Beyond All Recognition">FUBAR</acronym> <acronym title="Really Simple Syndication">RSS</acronym> and Atom happen to be.  You&#8217;d think that this would all be somewhat simple, and in an ideal world, it probably would.  This is the real world though, not an ideal one.</p>
<p><span id="more-19"></span></p>
<p>Some of the fun fun things I&#8217;ve encountered thus far are:</p>
<ul>
<li>The confused server that seems to think that, instead of giving a proper <code>304 Not Modified</code> response (with no body) when the content I&#8217;m requesting hasn&#8217;t changed, it should instead give a <code>200 OK</code> response, with no body.  This kept throwing me as I was trying to debug, as I kept believing my logs that there should be new content there&#8230;</li>
<li>The confused server that gives a <code>406 Not Acceptable</code> response to requests that don&#8217;t supply a <code>User-Agent:</code> header with the request.  Admittedly, were I less lazy, I&#8217;d be specifying one anyway, just to identify the new kid on the block.  But as I haven&#8217;t even officially settled on a name yet, I was leaving things at their default (and made the assumption that Ruby&#8217;s <code>Net::HTTP</code> library had some sort of default value).  What really threw me was that <code>wget</code> would work, but <code>telnet</code> wouldn&#8217;t, even when I was listing a huge laundry list of formats I was interested in in the <code>Accept:</code> header (including the type that <code>wget</code> said was coming back).  After a little while, I decided to just pass a <code>User-Agent: moo</code>, and lo and behold, content!</li>
<li>The really confused server that would reply to all requests with a <code>Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT</code>, but would then completely bomb out with an application error if it got that value back in a <code>If-Modified-Since:</code> request header.</li>
<li>The feed that seems to randomly return something that isn&#8217;t <acronym title="Really Simple Syndication">RSS</acronym> or Atom at all, but from the exception the content generates, looks like it could be normal <acronym title="HyperText Markup Language">HTML</acronym>.  I say randomly, because after the last time it happened (and I finally got around to catching that exception to log it, deal with it, and carry on), it&#8217;s happened a grand total of once.  And in that time, it&#8217;s checked the feed a few more times, though the content hasn&#8217;t updated (from before the time stored&#8230;), with no issues.  I&#8217;m hoping something happens during the night, just so I know that <strong>I&#8217;m</strong> not the one going crazy.
</ul>
<p>Feeds in general have also been interesting.  I&#8217;ve discovered that there&#8217;s such a huge variation in the quality of the actual data that I&#8217;ve had to special-case a few things, and delve into the <acronym title="eXtensible Markup Language">XML</acronym> (or <acronym title="eXtensible Markup Language">XML</acronym>-like) content itself in order to pull out data that I&#8217;d hoped would percolate into the normal accessor methods of the classes I&#8217;m using.  It&#8217;s not a big deal, but it&#8217;s one of those things that becomes a minor annoyance after a while.  Fortunately, of the information I care about, it&#8217;s only dates and links to individual entries (or in at least one case, the complete and total lack thereof), and I think I have that in the bag.</p>
<p>Speaking of dates, one thing I&#8217;ve been noticing over the months of adding various and sundry feeds to the readers I&#8217;ve used in the past is that there are some pretty horrid implementations of Atom out there.  I&#8217;ve noticed several feeds that various apps/frameworks provide that seem to think that publication, update, etc dates should always reflect the <em>current</em> time when you make the request, and not the time that each item was actually published or underwent a major update.  This makes trying to figure out anything temporally useful about feed items a non-starter.  Such is life&#8230;</p>
<p>Now, lest folks think that all I&#8217;m doing is complaining, let me just say that I&#8217;m <em>glad</em> that I&#8217;ve been running into these problems.  I never would have discovered some rather fragile assumptions that I made without real-world data.  In order to do that, I whipped up a pretty brain-dead (but functional) <acronym title="Outline Processor Markup Language">OPML</acronym> import feature, and an add-a-feed feature, so that I could import the <acronym title="Outline Processor Markup Language">OPML</acronym> file that I&#8217;d managed to export from my other reader a short time ago.  Importing that, and adding some feeds that I&#8217;ve been pasting into a file for a week or two, I&#8217;m able to see how everything fares trying to parse 294 highly varied feeds instead of a few minor test cases.  So when I&#8217;m ready to release the first alpha version to the guinea pigs, it should at least do better than it might otherwise.</p>
<p>So, yeah, I&#8217;ve made some decent progress on a lot of the back-end code and infrastructure.  There&#8217;s just enough of a UI in place so that I can at least verify that things are working.  It&#8217;s butt-ugly, and almost completely useless, but meets my current needs.  Eventually I&#8217;ll get around to making it functional for me, maybe even functional for you. <img src='http://blog.gurski.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   There&#8217;s logging in place so that I can at least figure out where something goes wrong.  Hell, it even saves data (without corruption despite multiple crashes).  You just can&#8217;t, well, read or navigate or do anything else at the moment.</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;bodytext=So%2C%20I%27ve%20been%20spending%20more%20time%20working%20on%20coming%20up%20with%20my%20own%20feed%20aggregator.%20%20I%27ve%20learned%20some%20pretty%20interesting%20things%20so%20far%2C%20as%20well%20as%20just%20how%20FUBAR%20RSS%20and%20Atom%20happen%20to%20be.%20%20You%27d%20think%20that%20this%20would%20all%20be%20somewhat%20simple%2C%20and%20in%20a" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;notes=So%2C%20I%27ve%20been%20spending%20more%20time%20working%20on%20coming%20up%20with%20my%20own%20feed%20aggregator.%20%20I%27ve%20learned%20some%20pretty%20interesting%20things%20so%20far%2C%20as%20well%20as%20just%20how%20FUBAR%20RSS%20and%20Atom%20happen%20to%20be.%20%20You%27d%20think%20that%20this%20would%20all%20be%20somewhat%20simple%2C%20and%20in%20a" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;t=This%20is%20supposed%20to%20be%20simple%2C%20right%3F" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;annotation=So%2C%20I%27ve%20been%20spending%20more%20time%20working%20on%20coming%20up%20with%20my%20own%20feed%20aggregator.%20%20I%27ve%20learned%20some%20pretty%20interesting%20things%20so%20far%2C%20as%20well%20as%20just%20how%20FUBAR%20RSS%20and%20Atom%20happen%20to%20be.%20%20You%27d%20think%20that%20this%20would%20all%20be%20somewhat%20simple%2C%20and%20in%20a" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=So%2C%20I%27ve%20been%20spending%20more%20time%20working%20on%20coming%20up%20with%20my%20own%20feed%20aggregator.%20%20I%27ve%20learned%20some%20pretty%20interesting%20things%20so%20far%2C%20as%20well%20as%20just%20how%20FUBAR%20RSS%20and%20Atom%20happen%20to%20be.%20%20You%27d%20think%20that%20this%20would%20all%20be%20somewhat%20simple%2C%20and%20in%20a" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;t=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;s=So%2C%20I%27ve%20been%20spending%20more%20time%20working%20on%20coming%20up%20with%20my%20own%20feed%20aggregator.%20%20I%27ve%20learned%20some%20pretty%20interesting%20things%20so%20far%2C%20as%20well%20as%20just%20how%20FUBAR%20RSS%20and%20Atom%20happen%20to%20be.%20%20You%27d%20think%20that%20this%20would%20all%20be%20somewhat%20simple%2C%20and%20in%20a" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=This%20is%20supposed%20to%20be%20simple%2C%20right%3F%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F22%2Fthis-is-supposed-to-be-simple-right%2F&amp;title=This%20is%20supposed%20to%20be%20simple%2C%20right%3F&amp;body=So%2C%20I%27ve%20been%20spending%20more%20time%20working%20on%20coming%20up%20with%20my%20own%20feed%20aggregator.%20%20I%27ve%20learned%20some%20pretty%20interesting%20things%20so%20far%2C%20as%20well%20as%20just%20how%20FUBAR%20RSS%20and%20Atom%20happen%20to%20be.%20%20You%27d%20think%20that%20this%20would%20all%20be%20somewhat%20simple%2C%20and%20in%20a" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=19&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/02/22/this-is-supposed-to-be-simple-right/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Putting my money where my mouth is</title>
		<link>http://blog.gurski.org/index.php/2007/02/14/putting-my-money-where-my-mouth-is/</link>
		<comments>http://blog.gurski.org/index.php/2007/02/14/putting-my-money-where-my-mouth-is/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 18:05:25 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/02/14/putting-my-money-where-my-mouth-is/</guid>
		<description><![CDATA[So, having complained about console feed readers, I&#8217;ve decided to put up or shut up. Or put my moneycode where my mouth is. A few months before I wrote the last article, I&#8217;d started playing a little bit with ruby-feedparser. Then I promptly forgot about it, as other more pressing matters came up. However, now [...]]]></description>
			<content:encoded><![CDATA[<p>So, having <a href="http://http://blog.gurski.org/index.php/2007/01/02/desperately-seeking-a-console-feed-reader/">complained about console feed readers</a>, I&#8217;ve decided to put up or shut up.  Or put my <del>money</del><ins>code</ins> where my mouth is.  A few months before I wrote the last article, I&#8217;d started playing a little bit with <a href="http://home.gna.org/ruby-feedparser/">ruby-feedparser</a>.  Then I promptly forgot about it, as other more pressing matters came up.</p>
<p><span id="more-16"></span></p>
<p>However, now I&#8217;m dealing with one of the readers I mentioned deciding to die partway through startup, and having marked all my feeds invalid or unread.  I noticed it Saturday morning, when I went to check some news before <a href="http://blog.catherinesandy.com/index.php/2007/02/10/be-vewwy-vewwy-quiet/">heading out to look at houses</a>, when the window that I keep the reader in was sitting at a prompt with an error on the screen.  So I re-ran the command, and within a minute, it had crashed again.  As near as I can guess, either some bad data came through on a feed, or its constantly-growing cache got corrupted.  Either way, even with logging set to <code>DEBUG</code> and the &#8220;diagnostic&#8221; flag specified, there&#8217;s no indication at all what is causing the problem.</p>
<p>So, instead of fighting with it, I&#8217;m writing my own feed reader.  I&#8217;ve dusted off the really simplistic &#8220;playing around&#8221; code, and have been working on turning it into a full-featured (or at least itch-scratching) <acronym title="Really Simple Syndication">RSS</acronym> and ATOM feed reader.  It&#8217;s nowhere near usable yet, but I&#8217;m currently able to pull down, parse, and save feeds, as well as check intelligently for updates (thanks, in part, to &#8220;<a href="http://metacircular.wordpress.com/2007/02/07/towards-polite-http-retrieval-in-scala/">Towards polite <acronym title="HyperText Transfer Protocol">HTTP</acronym> retrieval in Scala</a>&#8220;, which gave me the idea to let the remote webservers tell me whether a feed&#8217;s changed, in order to reduce load on everyone).</p>
<p>Instead of raw on-disk storage, or fairly opaque language-specific storage formats, I&#8217;ve been playing with using <a href="http://www.sqlite.org/index.html">SQLite</a> for storage.  It seems fairly lightweight (especially in comparison to MySQL or Postgres) while still providing a nice familiar <acronym title="Structured Query Language">SQL</acronym> engine, gives me a decent command-line tool to inspect and modify data, is fairly portable, and I was able to get up and running with <a href="http://rubyforge.org/projects/sqlite-ruby">sqlite-ruby</a> in practically no time at all.</p>
<p>I&#8217;m currently working on a functional (read: ugly, but it works for my purposes) interface in <a href="http://invisible-island.net/ncurses/">ncurses</a>, threads to deal with fetching &#038; updating in the background, category and configuration management, etc.  As I work on it off-and-on as I grab a few spare minutes, I&#8217;m not sure on the ETA right now, but hopefully something that I&#8217;m willing to let others see will be available &#8220;soon&#8221;.</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is&amp;bodytext=So%2C%20having%20complained%20about%20console%20feed%20readers%2C%20I%27ve%20decided%20to%20put%20up%20or%20shut%20up.%20%20Or%20put%20my%20moneycode%20where%20my%20mouth%20is.%20%20A%20few%20months%20before%20I%20wrote%20the%20last%20article%2C%20I%27d%20started%20playing%20a%20little%20bit%20with%20ruby-feedparser.%20%20Then%20I%20promptly%20forgot" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is&amp;notes=So%2C%20having%20complained%20about%20console%20feed%20readers%2C%20I%27ve%20decided%20to%20put%20up%20or%20shut%20up.%20%20Or%20put%20my%20moneycode%20where%20my%20mouth%20is.%20%20A%20few%20months%20before%20I%20wrote%20the%20last%20article%2C%20I%27d%20started%20playing%20a%20little%20bit%20with%20ruby-feedparser.%20%20Then%20I%20promptly%20forgot" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;t=Putting%20my%20money%20where%20my%20mouth%20is" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Putting%20my%20money%20where%20my%20mouth%20is&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is&amp;annotation=So%2C%20having%20complained%20about%20console%20feed%20readers%2C%20I%27ve%20decided%20to%20put%20up%20or%20shut%20up.%20%20Or%20put%20my%20moneycode%20where%20my%20mouth%20is.%20%20A%20few%20months%20before%20I%20wrote%20the%20last%20article%2C%20I%27d%20started%20playing%20a%20little%20bit%20with%20ruby-feedparser.%20%20Then%20I%20promptly%20forgot" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=So%2C%20having%20complained%20about%20console%20feed%20readers%2C%20I%27ve%20decided%20to%20put%20up%20or%20shut%20up.%20%20Or%20put%20my%20moneycode%20where%20my%20mouth%20is.%20%20A%20few%20months%20before%20I%20wrote%20the%20last%20article%2C%20I%27d%20started%20playing%20a%20little%20bit%20with%20ruby-feedparser.%20%20Then%20I%20promptly%20forgot" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Putting%20my%20money%20where%20my%20mouth%20is&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;t=Putting%20my%20money%20where%20my%20mouth%20is&amp;s=So%2C%20having%20complained%20about%20console%20feed%20readers%2C%20I%27ve%20decided%20to%20put%20up%20or%20shut%20up.%20%20Or%20put%20my%20moneycode%20where%20my%20mouth%20is.%20%20A%20few%20months%20before%20I%20wrote%20the%20last%20article%2C%20I%27d%20started%20playing%20a%20little%20bit%20with%20ruby-feedparser.%20%20Then%20I%20promptly%20forgot" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Putting%20my%20money%20where%20my%20mouth%20is%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Putting%20my%20money%20where%20my%20mouth%20is&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Putting%20my%20money%20where%20my%20mouth%20is&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F14%2Fputting-my-money-where-my-mouth-is%2F&amp;title=Putting%20my%20money%20where%20my%20mouth%20is&amp;body=So%2C%20having%20complained%20about%20console%20feed%20readers%2C%20I%27ve%20decided%20to%20put%20up%20or%20shut%20up.%20%20Or%20put%20my%20moneycode%20where%20my%20mouth%20is.%20%20A%20few%20months%20before%20I%20wrote%20the%20last%20article%2C%20I%27d%20started%20playing%20a%20little%20bit%20with%20ruby-feedparser.%20%20Then%20I%20promptly%20forgot" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=16&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/02/14/putting-my-money-where-my-mouth-is/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Package Tracking Sucks</title>
		<link>http://blog.gurski.org/index.php/2007/02/09/package-tracking-sucks/</link>
		<comments>http://blog.gurski.org/index.php/2007/02/09/package-tracking-sucks/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 16:03:20 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/02/09/package-tracking-sucks/</guid>
		<description><![CDATA[All the major package carriers, even the USPS, offers some form of package tracking. They all work slightly differently, and all have their plusses and minuses, but they all suck. Why? It doesn&#8217;t have to be that way, if only they&#8217;d make an effort to provide more visibility into routing information that most of them [...]]]></description>
			<content:encoded><![CDATA[<p>All the major package carriers, even the <acronym title="United States Postal Service">USPS</acronym>, offers some form of package tracking.  They all work slightly differently, and all have their plusses and minuses, but they all suck.  Why?  It doesn&#8217;t have to be that way, if only they&#8217;d make an effort to provide more visibility into routing information that most of them already have.</p>
<p><span id="more-15"></span></p>
<p>I think in part it has to do with consumers not demanding more information.  While within minutes of a failed delivery the online trackers are updated, there&#8217;s this huge black hole from the time a package is loaded onto a truck and when delivery is attempted.  Last year I read an article on how <a href="http://www.jsonline.com/story/index.aspx?id=544520">UPS uses computerized routing</a> to help increase efficiency.  Everything from the truck loading order to the exact route to take to deliver packages is pre-determined.  If a package is missed, the driver is notified.</p>
<p>So why can&#8217;t this information be provided to people tracking packages?  A spokesperson in the article says a residential delivery should take 30 seconds, steering wheel to steering wheel.  Combine that (or even a fudge factor) with the number of packages loaded on the truck on scheduled before the specific one being tracked, and you have the &#8220;non-driving delay&#8221;.  Factor in an approximate travel time between stops, which it would surprise me if they didn&#8217;t already know down to at least a 5 minute window.  Update periodically throughout the day, especially since successful and failed deliveries are already being reported back with a time of (non)delivery.  Now, instead of just knowing that your package is &#8220;Out for Delivery&#8221; as of 6:35 AM, and having it be delivered randomly between 11:30 AM and 8:00 PM, you can now see that your package has an &#8220;expected delivery window&#8221; of 4:00-6:00 PM.</p>
<p>Am I picking on UPS?  No, they just happen to be the one that I remember reading about having the type of infrastructure that could handle this with probably just changes to their web interface.  FedEx, DHL, and maybe even the <acronym title="United States Postal Service">USPS</acronym> (though it&#8217;s more likely they show up at a specific time every single day) could implement the same thing.  In fact, I&#8217;d be surprised if FedEx and DHL didn&#8217;t have similar automated routing and planning systems<sup><a href="#footnote-1-15" id="footnote-link-1-15" title="See the footnote.">1</a></sup> already in place.  As all three major carriers seem to be able to update quickly in the event of a delivery or failure to deliver, it&#8217;s not even an issue of adding more equipment to the delivery vehicles.</p>
<p>Online package tracking used to be a differentiator between services, but now everyone does it.  Is a finer-grained view of when the packages are expected to be delivered the next step?</p><br /><ol class="footnotes"><li id="footnote-1-15">Though FedEx seems to have completely separate facilities for Ground, Express, Home, etc.  Having basically bought other delivery services to get into the various markets, this makes some degree of sense, unless you&#8217;re a customer trying to pick up a package, and discover &#8220;the&#8221; FedEx facility you&#8217;ve been to several times isn&#8217;t the one that your package has been sitting at for several days&#8230;  And that the facility it is sitting at is inexplicably not listed at all on the FedEx site.  No, I&#8217;m not still slightly annoyed about that in the slightest.  [<a href="#footnote-link-1-15">back</a>]</li></ol>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks&amp;bodytext=All%20the%20major%20package%20carriers%2C%20even%20the%20USPS%2C%20offers%20some%20form%20of%20package%20tracking.%20%20They%20all%20work%20slightly%20differently%2C%20and%20all%20have%20their%20plusses%20and%20minuses%2C%20but%20they%20all%20suck.%20%20Why%3F%20%20It%20doesn%27t%20have%20to%20be%20that%20way%2C%20if%20only%20they%27d%20make%20an%20effort%20" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks&amp;notes=All%20the%20major%20package%20carriers%2C%20even%20the%20USPS%2C%20offers%20some%20form%20of%20package%20tracking.%20%20They%20all%20work%20slightly%20differently%2C%20and%20all%20have%20their%20plusses%20and%20minuses%2C%20but%20they%20all%20suck.%20%20Why%3F%20%20It%20doesn%27t%20have%20to%20be%20that%20way%2C%20if%20only%20they%27d%20make%20an%20effort%20" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;t=Package%20Tracking%20Sucks" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Package%20Tracking%20Sucks&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks&amp;annotation=All%20the%20major%20package%20carriers%2C%20even%20the%20USPS%2C%20offers%20some%20form%20of%20package%20tracking.%20%20They%20all%20work%20slightly%20differently%2C%20and%20all%20have%20their%20plusses%20and%20minuses%2C%20but%20they%20all%20suck.%20%20Why%3F%20%20It%20doesn%27t%20have%20to%20be%20that%20way%2C%20if%20only%20they%27d%20make%20an%20effort%20" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=All%20the%20major%20package%20carriers%2C%20even%20the%20USPS%2C%20offers%20some%20form%20of%20package%20tracking.%20%20They%20all%20work%20slightly%20differently%2C%20and%20all%20have%20their%20plusses%20and%20minuses%2C%20but%20they%20all%20suck.%20%20Why%3F%20%20It%20doesn%27t%20have%20to%20be%20that%20way%2C%20if%20only%20they%27d%20make%20an%20effort%20" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Package%20Tracking%20Sucks&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;t=Package%20Tracking%20Sucks&amp;s=All%20the%20major%20package%20carriers%2C%20even%20the%20USPS%2C%20offers%20some%20form%20of%20package%20tracking.%20%20They%20all%20work%20slightly%20differently%2C%20and%20all%20have%20their%20plusses%20and%20minuses%2C%20but%20they%20all%20suck.%20%20Why%3F%20%20It%20doesn%27t%20have%20to%20be%20that%20way%2C%20if%20only%20they%27d%20make%20an%20effort%20" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Package%20Tracking%20Sucks%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Package%20Tracking%20Sucks&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Package%20Tracking%20Sucks&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F02%2F09%2Fpackage-tracking-sucks%2F&amp;title=Package%20Tracking%20Sucks&amp;body=All%20the%20major%20package%20carriers%2C%20even%20the%20USPS%2C%20offers%20some%20form%20of%20package%20tracking.%20%20They%20all%20work%20slightly%20differently%2C%20and%20all%20have%20their%20plusses%20and%20minuses%2C%20but%20they%20all%20suck.%20%20Why%3F%20%20It%20doesn%27t%20have%20to%20be%20that%20way%2C%20if%20only%20they%27d%20make%20an%20effort%20" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=15&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/02/09/package-tracking-sucks/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>We have a date! (and location!)</title>
		<link>http://blog.gurski.org/index.php/2007/01/31/we-have-a-date-and-location/</link>
		<comments>http://blog.gurski.org/index.php/2007/01/31/we-have-a-date-and-location/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 05:01:47 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Marriage]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/01/31/we-have-a-date-and-location/</guid>
		<description><![CDATA[Ok, I suppose it&#8217;s now official. Tonight we went to sign the contract and put down a deposit on the ceremony/reception site. So we&#8217;ve now officially locked-in a date for the wedding. It&#8217;s a little earlier than we were originally planning, but I think it will work out well nonetheless. Our original planned date had [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I suppose it&#8217;s now official.  Tonight we went to sign the contract and put down a deposit on the ceremony/reception site.  So we&#8217;ve now officially locked-in a date for the wedding.  It&#8217;s a little earlier than we were originally planning, but I think it will work out well nonetheless.</p>
<p><span id="more-14"></span></p>
<p>Our original planned date had been March 23, 2008.  It sounded good at the time, until we asked the place we ultimately decided upon (<a href="http://www.martinscaterers.com/">Martin&#8217;s West</a>) if it was available.  They pointed out that, while it was free, it was also Easter Sunday. Errrr&#8230;  So, after some brainstorming, we finally came up with a new date.  The advantage is, the following Monday should be a day off for a lot of people.  The date?  February 17, 2008.</p>
<p>Like I said, it&#8217;s a little earlier than we originally wanted, but now that we&#8217;ve thought about it, it works for us.  It&#8217;s close to Valentine&#8217;s Day, which we don&#8217;t tend to celebrate much, meaning we won&#8217;t get overwhelmed.  And it should be close to a holiday, meaning we can probably get away for a long weekend near our anniversary every year.  Not to mention we&#8217;ll probably <em>want</em> to get away from the cold&#8230;</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29&amp;bodytext=Ok%2C%20I%20suppose%20it%27s%20now%20official.%20%20Tonight%20we%20went%20to%20sign%20the%20contract%20and%20put%20down%20a%20deposit%20on%20the%20ceremony%2Freception%20site.%20%20So%20we%27ve%20now%20officially%20locked-in%20a%20date%20for%20the%20wedding.%20%20It%27s%20a%20little%20earlier%20than%20we%20were%20originally%20planning%2C%20but%20I%20th" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29&amp;notes=Ok%2C%20I%20suppose%20it%27s%20now%20official.%20%20Tonight%20we%20went%20to%20sign%20the%20contract%20and%20put%20down%20a%20deposit%20on%20the%20ceremony%2Freception%20site.%20%20So%20we%27ve%20now%20officially%20locked-in%20a%20date%20for%20the%20wedding.%20%20It%27s%20a%20little%20earlier%20than%20we%20were%20originally%20planning%2C%20but%20I%20th" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;t=We%20have%20a%20date%21%20%28and%20location%21%29" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=We%20have%20a%20date%21%20%28and%20location%21%29&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29&amp;annotation=Ok%2C%20I%20suppose%20it%27s%20now%20official.%20%20Tonight%20we%20went%20to%20sign%20the%20contract%20and%20put%20down%20a%20deposit%20on%20the%20ceremony%2Freception%20site.%20%20So%20we%27ve%20now%20officially%20locked-in%20a%20date%20for%20the%20wedding.%20%20It%27s%20a%20little%20earlier%20than%20we%20were%20originally%20planning%2C%20but%20I%20th" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Ok%2C%20I%20suppose%20it%27s%20now%20official.%20%20Tonight%20we%20went%20to%20sign%20the%20contract%20and%20put%20down%20a%20deposit%20on%20the%20ceremony%2Freception%20site.%20%20So%20we%27ve%20now%20officially%20locked-in%20a%20date%20for%20the%20wedding.%20%20It%27s%20a%20little%20earlier%20than%20we%20were%20originally%20planning%2C%20but%20I%20th" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=We%20have%20a%20date%21%20%28and%20location%21%29&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;t=We%20have%20a%20date%21%20%28and%20location%21%29&amp;s=Ok%2C%20I%20suppose%20it%27s%20now%20official.%20%20Tonight%20we%20went%20to%20sign%20the%20contract%20and%20put%20down%20a%20deposit%20on%20the%20ceremony%2Freception%20site.%20%20So%20we%27ve%20now%20officially%20locked-in%20a%20date%20for%20the%20wedding.%20%20It%27s%20a%20little%20earlier%20than%20we%20were%20originally%20planning%2C%20but%20I%20th" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=We%20have%20a%20date%21%20%28and%20location%21%29%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=We%20have%20a%20date%21%20%28and%20location%21%29&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=We%20have%20a%20date%21%20%28and%20location%21%29&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F31%2Fwe-have-a-date-and-location%2F&amp;title=We%20have%20a%20date%21%20%28and%20location%21%29&amp;body=Ok%2C%20I%20suppose%20it%27s%20now%20official.%20%20Tonight%20we%20went%20to%20sign%20the%20contract%20and%20put%20down%20a%20deposit%20on%20the%20ceremony%2Freception%20site.%20%20So%20we%27ve%20now%20officially%20locked-in%20a%20date%20for%20the%20wedding.%20%20It%27s%20a%20little%20earlier%20than%20we%20were%20originally%20planning%2C%20but%20I%20th" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=14&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/01/31/we-have-a-date-and-location/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Major Theme Change</title>
		<link>http://blog.gurski.org/index.php/2007/01/30/major-theme-change/</link>
		<comments>http://blog.gurski.org/index.php/2007/01/30/major-theme-change/#comments</comments>
		<pubDate>Tue, 30 Jan 2007 20:12:37 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Meta]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/01/30/major-theme-change/</guid>
		<description><![CDATA[The few people who read this blog probably noticed a major appearance change late this weekend. I finally decided to get around to changing the theme used, as while the default Kubrick theme shipped with WordPress was nice, it&#8217;s the default, and so it&#8217;s so&#8230;default. True, changing the colors to that puky green was a [...]]]></description>
			<content:encoded><![CDATA[<p>The few people who read this blog probably noticed a major appearance change late this weekend.  I finally decided to get around to changing the theme used, as while the default Kubrick theme shipped with WordPress was nice, it&#8217;s the default, and so it&#8217;s so&#8230;default.  True, changing the colors to that puky green was a way to differentiate it, but even I had trouble keeping track of when I was quickly glancing at my own blog versus someone else&#8217;s where they&#8217;d been too lazy to change the theme.</p>
<p><span id="more-13"></span></p>
<p>So this weekend I activated the <a href="http://www.plaintxt.org/themes/sandbox/">Sandbox</a> theme, using the Spartan skin.  Maybe it&#8217;s just me, but I really like the cleanliness of the thing.  I&#8217;m typically a big fan of using minimal decoration for web pages, and Sandbox w/ Spartan really adheres well to that.  Plus, literally all the styling and layout are done through <acronym title="Cascading Style Sheets">CSS</acronym>, so if I get the urge, I can always start hacking the <acronym title="Cascading Style Sheets">CSS</acronym> to change things up a bit.</p>
<p>Another motivator was that I wanted to start using <a href="http://svn.wp-plugins.org/widgets/trunk">Sidebar Widgets</a>, as I prefer to customize without having to edit theme files directly.  Call me crazy, but it seems so much easier to keep as much as possible out of files that WordPress in no way versions<sup><a href="#footnote-1-13" id="footnote-link-1-13" title="See the footnote.">1</a></sup>, and most of what I want to do, I can find widgets for anyway.</p>
<p>So, yeah, new theme.  Spartan.  Sandbox.  <acronym title="Cascading Style Sheets">CSS</acronym>.  Yeah, that.  So enjoy.  Or not.</p><br /><ol class="footnotes"><li id="footnote-1-13">And this happens to be why I don&#8217;t consider most blog software or most of the Open Source <acronym title="Content Management System">CMS</acronym> to really <strong>be</strong> anything approaching a <acronym title="Content Management System">CMS</acronym>.  I want versioning, damn it.  Maybe it comes from having worked for a <del><acronym title="Content Management System">CMS</acronym></del> <ins><acronym title="Web Content Management">WCM</acronym></ins> company that does version everything  [<a href="#footnote-link-1-13">back</a>]</li></ol>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change&amp;bodytext=The%20few%20people%20who%20read%20this%20blog%20probably%20noticed%20a%20major%20appearance%20change%20late%20this%20weekend.%20%20I%20finally%20decided%20to%20get%20around%20to%20changing%20the%20theme%20used%2C%20as%20while%20the%20default%20Kubrick%20theme%20shipped%20with%20Wordpress%20was%20nice%2C%20it%27s%20the%20default%2C%20and%20so%20" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change&amp;notes=The%20few%20people%20who%20read%20this%20blog%20probably%20noticed%20a%20major%20appearance%20change%20late%20this%20weekend.%20%20I%20finally%20decided%20to%20get%20around%20to%20changing%20the%20theme%20used%2C%20as%20while%20the%20default%20Kubrick%20theme%20shipped%20with%20Wordpress%20was%20nice%2C%20it%27s%20the%20default%2C%20and%20so%20" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;t=Major%20Theme%20Change" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Major%20Theme%20Change&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change&amp;annotation=The%20few%20people%20who%20read%20this%20blog%20probably%20noticed%20a%20major%20appearance%20change%20late%20this%20weekend.%20%20I%20finally%20decided%20to%20get%20around%20to%20changing%20the%20theme%20used%2C%20as%20while%20the%20default%20Kubrick%20theme%20shipped%20with%20Wordpress%20was%20nice%2C%20it%27s%20the%20default%2C%20and%20so%20" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=The%20few%20people%20who%20read%20this%20blog%20probably%20noticed%20a%20major%20appearance%20change%20late%20this%20weekend.%20%20I%20finally%20decided%20to%20get%20around%20to%20changing%20the%20theme%20used%2C%20as%20while%20the%20default%20Kubrick%20theme%20shipped%20with%20Wordpress%20was%20nice%2C%20it%27s%20the%20default%2C%20and%20so%20" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Major%20Theme%20Change&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;t=Major%20Theme%20Change&amp;s=The%20few%20people%20who%20read%20this%20blog%20probably%20noticed%20a%20major%20appearance%20change%20late%20this%20weekend.%20%20I%20finally%20decided%20to%20get%20around%20to%20changing%20the%20theme%20used%2C%20as%20while%20the%20default%20Kubrick%20theme%20shipped%20with%20Wordpress%20was%20nice%2C%20it%27s%20the%20default%2C%20and%20so%20" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Major%20Theme%20Change%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Major%20Theme%20Change&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Major%20Theme%20Change&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F30%2Fmajor-theme-change%2F&amp;title=Major%20Theme%20Change&amp;body=The%20few%20people%20who%20read%20this%20blog%20probably%20noticed%20a%20major%20appearance%20change%20late%20this%20weekend.%20%20I%20finally%20decided%20to%20get%20around%20to%20changing%20the%20theme%20used%2C%20as%20while%20the%20default%20Kubrick%20theme%20shipped%20with%20Wordpress%20was%20nice%2C%20it%27s%20the%20default%2C%20and%20so%20" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=13&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/01/30/major-theme-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wedding Planning is Hard&#8230;</title>
		<link>http://blog.gurski.org/index.php/2007/01/06/wedding-planning-is-hard/</link>
		<comments>http://blog.gurski.org/index.php/2007/01/06/wedding-planning-is-hard/#comments</comments>
		<pubDate>Sat, 06 Jan 2007 05:43:35 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Love]]></category>
		<category><![CDATA[Marriage]]></category>
		<category><![CDATA[Relationships]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/01/06/wedding-planning-is-hard/</guid>
		<description><![CDATA[&#8230; let&#8217;s go drinking! I was hoping to avoid getting mired in the details myself with the planning of our wedding. At least, that was the plan when we initially discussed not planning until after the holidays. I had these visions of sitting back, being blissfully unaware of all the legwork, details, dealing with weeding [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230; let&#8217;s go drinking!</p>
<p>I was hoping to avoid getting mired in the details myself with the planning of our wedding.  At least, that was the plan when we initially discussed not planning until after the holidays.  I had these visions of sitting back, being blissfully unaware of all the legwork, details, dealing with weeding out selections for food, venue, etc.  I had thought that I could stay detached and just give my final consent on whatever decisions had been made, as while I can deal with most kinds of stress, this personal stuff really gets me in my gut.</p>
<p><span id="more-11"></span></p>
<p>However, it&#8217;s already becoming apparent, just a few days after &#8220;the holidays&#8221; are over, that I&#8217;m going to have to be more involved.  Partly it&#8217;s because Cathy&#8217;s already stressing out and feeling overwhelmed.  Partly it&#8217;s because as she&#8217;s starting to initially look into these things, I realize that it&#8217;s better to give my input sooner rather than later.  And partly it&#8217;s because it&#8217;d be a real bastard move on my part to just let her deal with everything on her own.  But mostly, I think it&#8217;s because, despite how I thought I&#8217;d feel about it, I really <strong>want</strong> to be involved<sup><a href="#footnote-1-11" id="footnote-link-1-11" title="See the footnote.">1</a></sup>.</p>
<p>What complicates matters somewhat is that we&#8217;re planning to pay for everything ourselves.  This will actually help force us to keep things small (read: affordable) and things in-check.  I know I&#8217;m definitely not the type for those big elaborate weddings with hundreds of guests, big to-dos, and all sorts of extravagances.  I&#8217;ve been to those types of weddings, and they&#8217;re&#8230;not my thing at all.  Something smaller and more intimate, probably under 100 people, is more my style.   I&#8217;m lucky that Cathy feels the same way.</p>
<p>As far as dates go, we&#8217;re still shooting for sometime in March of 2008, though that might change based on venue availability.  Neither of us are seriously considering a church wedding at this point, since we&#8217;re both oh-so-incredibly religious.  Honest.  We don&#8217;t know where that whiff of brimstone comes from when we walk into a place of worship.  It&#8217;s purely coincidence, as is the rising temperature in the room.  I think the current plan is to find a hotel or some other place that can accomodate both the wedding itself and the reception, though that might change as we explore our options.</p>
<p>The same issues with having the ceremony in a church is going to probably affect our choice of an officiant.  Fortunately we have several friends who are qualified to perform, and have performed, weddings.  That could be an interesting solution, as having a friend do the honors would mean we at least avoid a lot of the rigmarole that would go along with a traditional approach.  Also, if I remember correctly, in Maryland as long as the couple recognizes and acknowledges the authority of the person performing the ceremony, they&#8217;re qualified.  We definitely need to look into that&#8230;</p>
<p>As much as I don&#8217;t even want to think about the food<sup><a href="#footnote-2-11" id="footnote-link-2-11" title="See the footnote.">2</a></sup> right now, it basically comes bundled with the location. Joy.  We&#8217;ll have to get a better estimate of how many people we want first.  Then there&#8217;s music, a photographer, flowers<sup><a href="#footnote-3-11" id="footnote-link-3-11" title="See the footnote.">3</a></sup>, etc.  Those, at least, should be things we can put off for a while.  Maybe I should look at the insane book of lists that Cathy picked up, broken down by time until the wedding, just so we don&#8217;t get ahead of ourselves.</p>
<p>At least the cake is mostly taken care of, as we&#8217;ve already talked with the best cake artist we know, Cathy&#8217;s sister&#8217;s mother-in-law, who has done all the cakes for Cathy&#8217;s nephews&#8217; birthdays, Cathy&#8217;s graduation, and so forth, all of them excellent.  One detail&#8217;s taken care of! Whee!</p>
<p>Now, how about that drink?</p><br /><ol class="footnotes"><li id="footnote-1-11">Cathy now tells me, several hours after she found out I started this, that she&#8217;s glad I came to this conclusion on my own  [<a href="#footnote-link-1-11">back</a>]</li><li id="footnote-2-11">And what kind of alcohol to have.  I&#8217;ve always, as a guest, preferred the open bar approach, though a cash bar is&#8230;acceptable too  [<a href="#footnote-link-2-11">back</a>]</li><li id="footnote-3-11">But two people have recommended just getting them from the grocery store.  Maybe if costs are getting out of control  [<a href="#footnote-link-3-11">back</a>]</li></ol>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard...&amp;bodytext=...%20let%27s%20go%20drinking%21%0D%0A%0D%0AI%20was%20hoping%20to%20avoid%20getting%20mired%20in%20the%20details%20myself%20with%20the%20planning%20of%20our%20wedding.%20%20At%20least%2C%20that%20was%20the%20plan%20when%20we%20initially%20discussed%20not%20planning%20until%20after%20the%20holidays.%20%20I%20had%20these%20visions%20of%20sitting%20back" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard...&amp;notes=...%20let%27s%20go%20drinking%21%0D%0A%0D%0AI%20was%20hoping%20to%20avoid%20getting%20mired%20in%20the%20details%20myself%20with%20the%20planning%20of%20our%20wedding.%20%20At%20least%2C%20that%20was%20the%20plan%20when%20we%20initially%20discussed%20not%20planning%20until%20after%20the%20holidays.%20%20I%20had%20these%20visions%20of%20sitting%20back" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard..." title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard..." title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;t=Wedding%20Planning%20is%20Hard..." title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Wedding%20Planning%20is%20Hard...&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard...&amp;annotation=...%20let%27s%20go%20drinking%21%0D%0A%0D%0AI%20was%20hoping%20to%20avoid%20getting%20mired%20in%20the%20details%20myself%20with%20the%20planning%20of%20our%20wedding.%20%20At%20least%2C%20that%20was%20the%20plan%20when%20we%20initially%20discussed%20not%20planning%20until%20after%20the%20holidays.%20%20I%20had%20these%20visions%20of%20sitting%20back" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard...&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=...%20let%27s%20go%20drinking%21%0D%0A%0D%0AI%20was%20hoping%20to%20avoid%20getting%20mired%20in%20the%20details%20myself%20with%20the%20planning%20of%20our%20wedding.%20%20At%20least%2C%20that%20was%20the%20plan%20when%20we%20initially%20discussed%20not%20planning%20until%20after%20the%20holidays.%20%20I%20had%20these%20visions%20of%20sitting%20back" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Wedding%20Planning%20is%20Hard...&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard..." title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;t=Wedding%20Planning%20is%20Hard...&amp;s=...%20let%27s%20go%20drinking%21%0D%0A%0D%0AI%20was%20hoping%20to%20avoid%20getting%20mired%20in%20the%20details%20myself%20with%20the%20planning%20of%20our%20wedding.%20%20At%20least%2C%20that%20was%20the%20plan%20when%20we%20initially%20discussed%20not%20planning%20until%20after%20the%20holidays.%20%20I%20had%20these%20visions%20of%20sitting%20back" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Wedding%20Planning%20is%20Hard...%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Wedding%20Planning%20is%20Hard...&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Wedding%20Planning%20is%20Hard...&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard..." title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F06%2Fwedding-planning-is-hard%2F&amp;title=Wedding%20Planning%20is%20Hard...&amp;body=...%20let%27s%20go%20drinking%21%0D%0A%0D%0AI%20was%20hoping%20to%20avoid%20getting%20mired%20in%20the%20details%20myself%20with%20the%20planning%20of%20our%20wedding.%20%20At%20least%2C%20that%20was%20the%20plan%20when%20we%20initially%20discussed%20not%20planning%20until%20after%20the%20holidays.%20%20I%20had%20these%20visions%20of%20sitting%20back" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=11&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/01/06/wedding-planning-is-hard/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mmmmm&#8230;salsa</title>
		<link>http://blog.gurski.org/index.php/2007/01/03/mmmmmsalsa/</link>
		<comments>http://blog.gurski.org/index.php/2007/01/03/mmmmmsalsa/#comments</comments>
		<pubDate>Thu, 04 Jan 2007 03:25:03 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Moblogging]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/01/03/mmmmmsalsa/</guid>
		<description><![CDATA[Is there anything better to munch on while waiting for a meal? Chips and salsa, especially complimentary, freshly made chips and salsa, are where it&#8217;s at. Of course, the trick is to get as much salsa-y and chippy goodness without filling up to the point where you can&#8217;t eat your meal. I mean, just look: [...]]]></description>
			<content:encoded><![CDATA[<p>Is there anything better to munch on while waiting for a meal?  Chips  and salsa, especially complimentary, freshly made chips and salsa, are  where it&#8217;s at.  Of course, the trick is to get as much salsa-y and  chippy goodness without filling up to the point where you can&#8217;t eat your  meal.</p>
<p><span id="more-7"></span></p>
<p>I mean, just look: <!--Mime Type of File is image/jpeg -->
<div><a href="http://blog.gurski.org/wp-photos/20070103-222502-1.jpg"><img src="http://blog.gurski.org/wp-photos/thumb.20070103-222502-1.jpg" alt="" /></a></div>
<p>   Who can possibly resist that?!</p>
<p>Ok, if you&#8217;ve stayed on this long, I have a confessioin to make:  this  was just a thinly-veilled excuse to test an email posting plugin,  sending from my <a href="http://www.sidekick.com/">Sidekick3</a> to the  blog.  I hope it worked!</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa&amp;bodytext=Is%20there%20anything%20better%20to%20munch%20on%20while%20waiting%20for%20a%20meal%3F%20%20Chips%20%20and%20salsa%2C%20especially%20complimentary%2C%20freshly%20made%20chips%20and%20salsa%2C%20are%20%20where%20it%27s%20at.%20%20Of%20course%2C%20the%20trick%20is%20to%20get%20as%20much%20salsa-y%20and%20%20chippy%20goodness%20without%20filling%20up%20to%20t" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa&amp;notes=Is%20there%20anything%20better%20to%20munch%20on%20while%20waiting%20for%20a%20meal%3F%20%20Chips%20%20and%20salsa%2C%20especially%20complimentary%2C%20freshly%20made%20chips%20and%20salsa%2C%20are%20%20where%20it%27s%20at.%20%20Of%20course%2C%20the%20trick%20is%20to%20get%20as%20much%20salsa-y%20and%20%20chippy%20goodness%20without%20filling%20up%20to%20t" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;t=Mmmmm...salsa" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Mmmmm...salsa&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa&amp;annotation=Is%20there%20anything%20better%20to%20munch%20on%20while%20waiting%20for%20a%20meal%3F%20%20Chips%20%20and%20salsa%2C%20especially%20complimentary%2C%20freshly%20made%20chips%20and%20salsa%2C%20are%20%20where%20it%27s%20at.%20%20Of%20course%2C%20the%20trick%20is%20to%20get%20as%20much%20salsa-y%20and%20%20chippy%20goodness%20without%20filling%20up%20to%20t" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Is%20there%20anything%20better%20to%20munch%20on%20while%20waiting%20for%20a%20meal%3F%20%20Chips%20%20and%20salsa%2C%20especially%20complimentary%2C%20freshly%20made%20chips%20and%20salsa%2C%20are%20%20where%20it%27s%20at.%20%20Of%20course%2C%20the%20trick%20is%20to%20get%20as%20much%20salsa-y%20and%20%20chippy%20goodness%20without%20filling%20up%20to%20t" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Mmmmm...salsa&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;t=Mmmmm...salsa&amp;s=Is%20there%20anything%20better%20to%20munch%20on%20while%20waiting%20for%20a%20meal%3F%20%20Chips%20%20and%20salsa%2C%20especially%20complimentary%2C%20freshly%20made%20chips%20and%20salsa%2C%20are%20%20where%20it%27s%20at.%20%20Of%20course%2C%20the%20trick%20is%20to%20get%20as%20much%20salsa-y%20and%20%20chippy%20goodness%20without%20filling%20up%20to%20t" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Mmmmm...salsa%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Mmmmm...salsa&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Mmmmm...salsa&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F03%2Fmmmmmsalsa%2F&amp;title=Mmmmm...salsa&amp;body=Is%20there%20anything%20better%20to%20munch%20on%20while%20waiting%20for%20a%20meal%3F%20%20Chips%20%20and%20salsa%2C%20especially%20complimentary%2C%20freshly%20made%20chips%20and%20salsa%2C%20are%20%20where%20it%27s%20at.%20%20Of%20course%2C%20the%20trick%20is%20to%20get%20as%20much%20salsa-y%20and%20%20chippy%20goodness%20without%20filling%20up%20to%20t" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=7&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/01/03/mmmmmsalsa/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Desperately seeking a (console) feed reader</title>
		<link>http://blog.gurski.org/index.php/2007/01/02/desperately-seeking-a-console-feed-reader/</link>
		<comments>http://blog.gurski.org/index.php/2007/01/02/desperately-seeking-a-console-feed-reader/#comments</comments>
		<pubDate>Wed, 03 Jan 2007 04:54:22 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2007/01/02/desperately-seeking-a-console-feed-reader/</guid>
		<description><![CDATA[Ok, I&#8217;ll admit, I&#8217;m a little addicted to RSS/Atom feeds. At current count, I have close to 400 feeds (though a lot of them are Flickr pools). My problem is, I&#8217;ve yet to find a feed reader that has everything I want. First off, let me just limit things to console-based feed readers. I do [...]]]></description>
			<content:encoded><![CDATA[<div class='series_toc'><h3>Table of contents for feed_reader</h3><ol><li>Desperately seeking a (console) feed reader</li></ol></div> <p>Ok, I&#8217;ll admit, I&#8217;m a little addicted to <acronym title="Really Simple Syndication">RSS</acronym>/Atom feeds.  At current count, I have close to 400 feeds (though a lot of them are <a href="http://flickr.com">Flickr</a> pools).  My problem is, I&#8217;ve yet to find a feed reader that has everything I want.  First off, let me just limit things to <em>console-based</em> feed readers.  I do a lot of work in screen, and don&#8217;t even have X configured on my main system currently, so something that works in text mode is an absolute must, as it&#8217;s the only system that&#8217;s mostly guaranteed to be on at any given time, and have network access&#8230;</p>
<p><span id="more-6"></span></p>
<p>Now, I started with <a href="http://www.mozilla.org/">Firefox</a>&#8216;s live pages, or whatever it&#8217;s called.  When I finally got fed up with the stability issues and loss of open tabs even with extensions, I switched to <a href="http://www.opera.com">Opera</a>, with its feed reader.  It was OK for a while, but it would regularly, but inconsistently, corrupt its storage, mis-filing feeds in other random feed folders.  It would also slow dow a <strong>lot</strong> if there were a lot of unread articles in the feeds (or even just a couple slow sites).  It also ran on my laptop, which wasn&#8217;t connected all the time, not to mention that there are some feeds that aren&#8217;t exactly work-appropriate.</p>
<p>So I started looking at <a href="http://www.raggle.org/">raggle</a>, and it seemed to be good.  Except within minutes, i managed to crash it.  And raggle has this&#8230;nasty&#8230;habit of wiping out your entire feed list when it crashes.  I figured it was a fluke, until I did it again.  And again.  And again.  By this time, I was making manual backups of my <code>feeds.yaml</code> file, to the point when I have a cronjob set up to back it up hourly.</p>
<p>I decided to just live with it for a while, as I could anticipate when I would cause a crash, and modify my behavior to avoid it.  That was until the day that raggle decided to refuse to start back up.  After a couple hours futzing around, I determined that it had something to do with its cache of articles (mostly unread by me, of course).  Nuke that, and it starts&#8230;and crashes as soon as some undetermined feed updated and sent down whatever data it didn&#8217;t like.  Time to move on, I thought.</p>
<p>Next I tried <a href="http://snownews.kcore.de">snownews</a>, which seems rock solid.  Except&#8230;it doesn&#8217;t handle Atom feeds (just strictly <acronym title="Really Simple Syndication">RSS</acronym>), even though there&#8217;s a &#8220;plugin&#8221; of sorts that uses <code>xsltproc</code> to convert Atom to <acronym title="Really Simple Syndication">RSS</acronym>.  It&#8230;worked sometimes.  Unfortunately, a lot of the feeds I do read regularly don&#8217;t provide anything other than Atom feeds that don&#8217;t seem to parse.</p>
<p>There&#8217;s also the problem with updating.  <code>snownews</code> doesn&#8217;t.  At least, not automatically.  You either need to restart, or issue a command to explicitly update one or all feeds.  Not a problem, right?  Right, unless you happen to go away for a few days, and happen to not be around to update so those high-volume feeds get updated.</p>
<p>That brings up another problem I&#8217;ve had with snownews: it has no memory.  it remembers just the last N articles in a feed, the same number the feed provides.  This, of course, ends up being useless for me, when it can be days or weeks before I get around to reading specific categories/feeds.  Categories&#8230;good luck if you have more than 26 or so.  They&#8217;re listed, but you can&#8217;t actually select them (I have 44 currently).</p>
<p>After several months with snownews, working around <strong>its</strong> warts, I finally got fed up, and switched back to raggle.  I know that at this point, it&#8217;s just a matter of time before some random feed comes along with data that causes raggle to crash and stay crashed.  And the other crashing, I can still trigger at least once a day, even trying to be careful.</p>
<p>If anyone has any suggestions, for a console-based feed reader, that can handle both <acronym title="Really Simple Syndication">RSS</acronym> and Atom feeds, update the feeds regularly, save old articles at least until I&#8217;ve marked them &#8220;read&#8221; (better is &#8220;deleted&#8221;), supports categorization, and is stable or least stores all data in a mostly-transparent way (<code>snownews</code> stores raw feeds, but <code>raggle</code> uses a much more opaque ruby <code>PStore</code>), I&#8217;m all ears.</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;bodytext=Ok%2C%20I%27ll%20admit%2C%20I%27m%20a%20little%20addicted%20to%20RSS%2FAtom%20feeds.%20%20At%20current%20count%2C%20I%20have%20close%20to%20400%20feeds%20%28though%20a%20lot%20of%20them%20are%20Flickr%20pools%29.%20%20My%20problem%20is%2C%20I%27ve%20yet%20to%20find%20a%20feed%20reader%20that%20has%20everything%20I%20want.%20%20First%20off%2C%20let%20me%20just%20limit%20th" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;notes=Ok%2C%20I%27ll%20admit%2C%20I%27m%20a%20little%20addicted%20to%20RSS%2FAtom%20feeds.%20%20At%20current%20count%2C%20I%20have%20close%20to%20400%20feeds%20%28though%20a%20lot%20of%20them%20are%20Flickr%20pools%29.%20%20My%20problem%20is%2C%20I%27ve%20yet%20to%20find%20a%20feed%20reader%20that%20has%20everything%20I%20want.%20%20First%20off%2C%20let%20me%20just%20limit%20th" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;t=Desperately%20seeking%20a%20%28console%29%20feed%20reader" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;annotation=Ok%2C%20I%27ll%20admit%2C%20I%27m%20a%20little%20addicted%20to%20RSS%2FAtom%20feeds.%20%20At%20current%20count%2C%20I%20have%20close%20to%20400%20feeds%20%28though%20a%20lot%20of%20them%20are%20Flickr%20pools%29.%20%20My%20problem%20is%2C%20I%27ve%20yet%20to%20find%20a%20feed%20reader%20that%20has%20everything%20I%20want.%20%20First%20off%2C%20let%20me%20just%20limit%20th" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Ok%2C%20I%27ll%20admit%2C%20I%27m%20a%20little%20addicted%20to%20RSS%2FAtom%20feeds.%20%20At%20current%20count%2C%20I%20have%20close%20to%20400%20feeds%20%28though%20a%20lot%20of%20them%20are%20Flickr%20pools%29.%20%20My%20problem%20is%2C%20I%27ve%20yet%20to%20find%20a%20feed%20reader%20that%20has%20everything%20I%20want.%20%20First%20off%2C%20let%20me%20just%20limit%20th" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;t=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;s=Ok%2C%20I%27ll%20admit%2C%20I%27m%20a%20little%20addicted%20to%20RSS%2FAtom%20feeds.%20%20At%20current%20count%2C%20I%20have%20close%20to%20400%20feeds%20%28though%20a%20lot%20of%20them%20are%20Flickr%20pools%29.%20%20My%20problem%20is%2C%20I%27ve%20yet%20to%20find%20a%20feed%20reader%20that%20has%20everything%20I%20want.%20%20First%20off%2C%20let%20me%20just%20limit%20th" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Desperately%20seeking%20a%20%28console%29%20feed%20reader%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2007%2F01%2F02%2Fdesperately-seeking-a-console-feed-reader%2F&amp;title=Desperately%20seeking%20a%20%28console%29%20feed%20reader&amp;body=Ok%2C%20I%27ll%20admit%2C%20I%27m%20a%20little%20addicted%20to%20RSS%2FAtom%20feeds.%20%20At%20current%20count%2C%20I%20have%20close%20to%20400%20feeds%20%28though%20a%20lot%20of%20them%20are%20Flickr%20pools%29.%20%20My%20problem%20is%2C%20I%27ve%20yet%20to%20find%20a%20feed%20reader%20that%20has%20everything%20I%20want.%20%20First%20off%2C%20let%20me%20just%20limit%20th" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/> <div class='series_links'> </div><img src="http://blog.gurski.org/?ak_action=api_record_view&id=6&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2007/01/02/desperately-seeking-a-console-feed-reader/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Dreaming of a&#8230;Wet? Christmas</title>
		<link>http://blog.gurski.org/index.php/2006/12/25/im-dreaming-of-awet-christmas/</link>
		<comments>http://blog.gurski.org/index.php/2006/12/25/im-dreaming-of-awet-christmas/#comments</comments>
		<pubDate>Mon, 25 Dec 2006 18:56:15 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Holidays]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2006/12/25/im-dreaming-of-awet-christmas/</guid>
		<description><![CDATA[Merry Christmas! Instead of a white Christmas, which rarely seems to happen in Maryland anyway, it&#8217;s a more typical wet Christmas. Rain&#8217;s pouring down, traffic is consequently a nightmare (though not as bad as if it were snowing), and everything&#8217;s blah and grey. My throat&#8217;s messed up from trying to sing along with the South [...]]]></description>
			<content:encoded><![CDATA[<p>Merry Christmas!  Instead of a white Christmas, which rarely seems to happen in Maryland anyway, it&#8217;s a more typical wet Christmas.  Rain&#8217;s pouring down, traffic is consequently a nightmare (though not as bad as if it were snowing), and everything&#8217;s blah and grey.</p>
<p><span id="more-4"></span></p>
<p>My throat&#8217;s messed up from trying to sing along with the South Park Mr. Hankey Christmas album on the drive up to my future sister-in-law&#8217;s<sup><a href="#footnote-1-4" id="footnote-link-1-4" title="See the footnote.">1</a></sup> place.  Now we&#8217;re sitting around, drinking egg nog, talking about the wedding, holiday stuff, etc.</p>
<p>Even though I&#8217;m not really big into the holidays, and haven&#8217;t been for longer than I can clearly remember, all in all this is turning out so far to be an enjoyable Christmas.  I hope everyone else is having an enjoyable Christmas, Hannukah, Solstice, or just Winter Excuse To Gather and Drink.</p><br /><ol class="footnotes"><li id="footnote-1-4">I&#8217;m told that the strangeness of saying something like that will eventually go away  [<a href="#footnote-link-1-4">back</a>]</li></ol>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;bodytext=Merry%20Christmas%21%20%20Instead%20of%20a%20white%20Christmas%2C%20which%20rarely%20seems%20to%20happen%20in%20Maryland%20anyway%2C%20it%27s%20a%20more%20typical%20wet%20Christmas.%20%20Rain%27s%20pouring%20down%2C%20traffic%20is%20consequently%20a%20nightmare%20%28though%20not%20as%20bad%20as%20if%20it%20were%20snowing%29%2C%20and%20everything%27s%20" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;notes=Merry%20Christmas%21%20%20Instead%20of%20a%20white%20Christmas%2C%20which%20rarely%20seems%20to%20happen%20in%20Maryland%20anyway%2C%20it%27s%20a%20more%20typical%20wet%20Christmas.%20%20Rain%27s%20pouring%20down%2C%20traffic%20is%20consequently%20a%20nightmare%20%28though%20not%20as%20bad%20as%20if%20it%20were%20snowing%29%2C%20and%20everything%27s%20" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;t=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;annotation=Merry%20Christmas%21%20%20Instead%20of%20a%20white%20Christmas%2C%20which%20rarely%20seems%20to%20happen%20in%20Maryland%20anyway%2C%20it%27s%20a%20more%20typical%20wet%20Christmas.%20%20Rain%27s%20pouring%20down%2C%20traffic%20is%20consequently%20a%20nightmare%20%28though%20not%20as%20bad%20as%20if%20it%20were%20snowing%29%2C%20and%20everything%27s%20" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Merry%20Christmas%21%20%20Instead%20of%20a%20white%20Christmas%2C%20which%20rarely%20seems%20to%20happen%20in%20Maryland%20anyway%2C%20it%27s%20a%20more%20typical%20wet%20Christmas.%20%20Rain%27s%20pouring%20down%2C%20traffic%20is%20consequently%20a%20nightmare%20%28though%20not%20as%20bad%20as%20if%20it%20were%20snowing%29%2C%20and%20everything%27s%20" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;t=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;s=Merry%20Christmas%21%20%20Instead%20of%20a%20white%20Christmas%2C%20which%20rarely%20seems%20to%20happen%20in%20Maryland%20anyway%2C%20it%27s%20a%20more%20typical%20wet%20Christmas.%20%20Rain%27s%20pouring%20down%2C%20traffic%20is%20consequently%20a%20nightmare%20%28though%20not%20as%20bad%20as%20if%20it%20were%20snowing%29%2C%20and%20everything%27s%20" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F25%2Fim-dreaming-of-awet-christmas%2F&amp;title=I%27m%20Dreaming%20of%20a...Wet%3F%20Christmas&amp;body=Merry%20Christmas%21%20%20Instead%20of%20a%20white%20Christmas%2C%20which%20rarely%20seems%20to%20happen%20in%20Maryland%20anyway%2C%20it%27s%20a%20more%20typical%20wet%20Christmas.%20%20Rain%27s%20pouring%20down%2C%20traffic%20is%20consequently%20a%20nightmare%20%28though%20not%20as%20bad%20as%20if%20it%20were%20snowing%29%2C%20and%20everything%27s%20" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=4&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2006/12/25/im-dreaming-of-awet-christmas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I Finally Did It</title>
		<link>http://blog.gurski.org/index.php/2006/12/24/i-finally-did-it/</link>
		<comments>http://blog.gurski.org/index.php/2006/12/24/i-finally-did-it/#comments</comments>
		<pubDate>Sun, 24 Dec 2006 06:43:51 +0000</pubDate>
		<dc:creator>emag</dc:creator>
				<category><![CDATA[Love]]></category>
		<category><![CDATA[Marriage]]></category>
		<category><![CDATA[Relationships]]></category>

		<guid isPermaLink="false">http://blog.gurski.org/index.php/2006/12/24/i-finally-did-it/</guid>
		<description><![CDATA[Well, a week ago, on December 17, I did it. I got engaged. And I&#8217;m still sort of stunned. I can&#8217;t say that it was a real surprise, seeing as how we&#8217;ve been together for over 6 years, and have lived together most of that time, but it&#8217;s still a bit of a shock. Cathy&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Well, a week ago, on December 17, I did it.  I got engaged.  And I&#8217;m still sort of stunned.</p>
<p>I can&#8217;t say that it was a real surprise, seeing as how we&#8217;ve been together for over 6 years, and have lived together most of that time, but it&#8217;s still a bit of a shock.  Cathy&#8217;s already <a href="http://blog.catherinesandy.com/index.php/2006/12/19/the-proposal/">written about it</a>, so I&#8217;ll just let it stand at that, as it&#8217;s pretty much the way I remember it happening too.  About the only thing I&#8217;d add is that I&#8217;ve been trying to think for weeks how to get out to the store to look at the rings without arousing any suspicions.  Not bothering to do that seems to have worked out easier. <img src='http://blog.gurski.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   If anyone&#8217;s interested and hasn&#8217;t seen them yet, there are <a href="http://www.flickr.com/photos/magurski/sets/72157594425518519/detail/">pics of the ring</a> on Flickr.</p>
<p><span id="more-3"></span></p>
<p>Of course, now it seems like even though we haven&#8217;t set a date, there&#8217;s a ton of work to be done, from deciding where and when, to who to invite, how many, etc.  It&#8217;s truly scary that Cathy managed to pick up an inch-thick book of <strong>lists</strong> of things to think of and ask for planning a wedding.  As of right now, though, I think we&#8217;re just waiting until after the holidays to really think about it.  At least, I am&#8230;</p>


Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It&amp;bodytext=Well%2C%20a%20week%20ago%2C%20on%20December%2017%2C%20I%20did%20it.%20%20I%20got%20engaged.%20%20And%20I%27m%20still%20sort%20of%20stunned.%0D%0A%0D%0AI%20can%27t%20say%20that%20it%20was%20a%20real%20surprise%2C%20seeing%20as%20how%20we%27ve%20been%20together%20for%20over%206%20years%2C%20and%20have%20lived%20together%20most%20of%20that%20time%2C%20but%20it%27s%20still%20a%20bi" title="Digg"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It&amp;notes=Well%2C%20a%20week%20ago%2C%20on%20December%2017%2C%20I%20did%20it.%20%20I%20got%20engaged.%20%20And%20I%27m%20still%20sort%20of%20stunned.%0D%0A%0D%0AI%20can%27t%20say%20that%20it%20was%20a%20real%20surprise%2C%20seeing%20as%20how%20we%27ve%20been%20together%20for%20over%206%20years%2C%20and%20have%20lived%20together%20most%20of%20that%20time%2C%20but%20it%27s%20still%20a%20bi" title="del.icio.us"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It" title="DZone"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It" title="Reddit"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;t=I%20Finally%20Did%20It" title="Facebook"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=I%20Finally%20Did%20It&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F" title="Fark"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It&amp;annotation=Well%2C%20a%20week%20ago%2C%20on%20December%2017%2C%20I%20did%20it.%20%20I%20got%20engaged.%20%20And%20I%27m%20still%20sort%20of%20stunned.%0D%0A%0D%0AI%20can%27t%20say%20that%20it%20was%20a%20real%20surprise%2C%20seeing%20as%20how%20we%27ve%20been%20together%20for%20over%206%20years%2C%20and%20have%20lived%20together%20most%20of%20that%20time%2C%20but%20it%27s%20still%20a%20bi" title="Google Bookmarks"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It&amp;source=Mike%26%23039%3Bs+Place+Inarticulate+ramblings+on+whatever+strikes+my+fancy&amp;summary=Well%2C%20a%20week%20ago%2C%20on%20December%2017%2C%20I%20did%20it.%20%20I%20got%20engaged.%20%20And%20I%27m%20still%20sort%20of%20stunned.%0D%0A%0D%0AI%20can%27t%20say%20that%20it%20was%20a%20real%20surprise%2C%20seeing%20as%20how%20we%27ve%20been%20together%20for%20over%206%20years%2C%20and%20have%20lived%20together%20most%20of%20that%20time%2C%20but%20it%27s%20still%20a%20bi" title="LinkedIn"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blog.gurski.org/index.php/feed/" title="RSS"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=I%20Finally%20Did%20It&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F" title="Slashdot"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It" title="StumbleUpon"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F" title="Technorati"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;t=I%20Finally%20Did%20It&amp;s=Well%2C%20a%20week%20ago%2C%20on%20December%2017%2C%20I%20did%20it.%20%20I%20got%20engaged.%20%20And%20I%27m%20still%20sort%20of%20stunned.%0D%0A%0D%0AI%20can%27t%20say%20that%20it%20was%20a%20real%20surprise%2C%20seeing%20as%20how%20we%27ve%20been%20together%20for%20over%206%20years%2C%20and%20have%20lived%20together%20most%20of%20that%20time%2C%20but%20it%27s%20still%20a%20bi" title="Tumblr"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=I%20Finally%20Did%20It%20-%20http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F" title="Twitter"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=I%20Finally%20Did%20It&amp;body=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F" title="email"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=I%20Finally%20Did%20It&amp;link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F" title="FriendFeed"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F" title="Identi.ca"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It" title="Live"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fblog.gurski.org%2Findex.php%2F2006%2F12%2F24%2Fi-finally-did-it%2F&amp;title=I%20Finally%20Did%20It&amp;body=Well%2C%20a%20week%20ago%2C%20on%20December%2017%2C%20I%20did%20it.%20%20I%20got%20engaged.%20%20And%20I%27m%20still%20sort%20of%20stunned.%0D%0A%0D%0AI%20can%27t%20say%20that%20it%20was%20a%20real%20surprise%2C%20seeing%20as%20how%20we%27ve%20been%20together%20for%20over%206%20years%2C%20and%20have%20lived%20together%20most%20of%20that%20time%2C%20but%20it%27s%20still%20a%20bi" title="Ping.fm"><img src="http://blog.gurski.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/><img src="http://blog.gurski.org/?ak_action=api_record_view&id=3&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.gurski.org/index.php/2006/12/24/i-finally-did-it/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
