<?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>diehn.net/blog &#187; personal</title>
	<atom:link href="http://diehn.net/blog/category/personal/feed/" rel="self" type="application/rss+xml" />
	<link>http://diehn.net/blog</link>
	<description></description>
	<lastBuildDate>Thu, 14 Apr 2011 15:56:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Bash functions for posting to blosxom from the command line</title>
		<link>http://diehn.net/blog/2011/02/bash-functions-for-posting-to-blosxom-from-the-command-line/</link>
		<comments>http://diehn.net/blog/2011/02/bash-functions-for-posting-to-blosxom-from-the-command-line/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 14:49:29 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/?p=178</guid>
		<description><![CDATA[Here are those two bash functions I use at work to make my blosxom blog into a daily time log. I made them because I wanted to be able to dash off a one-liner entry into a logfile that would be easily viewable later. So, here they are: Timelog function Make a single line entry [...]]]></description>
			<content:encoded><![CDATA[<p>Here are those two bash functions I use at work to make my blosxom blog into a daily time log.  I made them because I wanted to be able to dash off a one-liner entry into a logfile that would be easily viewable later.  So, here they are:</p>
<dl>
<dt>
<h3>Timelog function</h3>
</dt>
<dd>Make a single line entry in a post for the current day.  If there&#8217;s no post yet for today, it makes that new post.</p>
<pre>tl ()
{
   timelog_file="$HOME/blosxom/timelog/$(date +%Y-%m-%d).txt"
   [[ ! -f $timelog_file ]] &amp;&amp; echo Timelog for $(date "+%A %F") &gt;&gt; $timelog_file
   time=$(date +%H:%M)
   [[ $# -eq 0 ]] &amp;&amp; msg=$(cat)
   [[ $# -gt 0 ]] &amp;&amp; msg="$*"
   echo "&lt;li&gt;$time $msg&lt;/li&gt;" &gt;&gt; $timelog_file
}</pre>
</dd>
<dt>
<h3>Note function</h3>
</dt>
<dd>Let&#8217;s me make a very simple post to my blog from the command line.  I type &#8220;note&#8221; followed by the title of the note and then press enter.  From then on until I press CTRL-D, I&#8217;m composing my entry.  After I press CTRL-D, the note is posted.</p>
<pre>note ()
{
   if [[ $# -eq 0 ]]
    then
      echo "Need file name on CL"
      return
    fi

   filename="$HOME/blosxom/notes/$*.txt"

   if [[ -f $filename ]]
    then
      echo Extant post file
      return
    fi
   cat &gt; "$filename"
}</pre>
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2011/02/bash-functions-for-posting-to-blosxom-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>June colds?</title>
		<link>http://diehn.net/blog/2010/06/june-colds/</link>
		<comments>http://diehn.net/blog/2010/06/june-colds/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 01:24:02 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/?p=150</guid>
		<description><![CDATA[Anyone else get colds in summer?  I&#8217;ve got one and it sucks.  I&#8217;d say it&#8217;s an allergy attack, but it&#8217;s behaving just like a cold &#8211; itchy throat, then runny nose, then cough and fever&#8230;. ack!]]></description>
			<content:encoded><![CDATA[<p>Anyone else get colds in summer?  I&#8217;ve got one and it sucks.  I&#8217;d say it&#8217;s an allergy attack, but it&#8217;s behaving just like a cold &#8211; itchy throat, then runny nose, then cough and fever&#8230;. ack!</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2010/06/june-colds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The bright side of wrong &#8211; The Boston Globe</title>
		<link>http://diehn.net/blog/2010/06/the-bright-side-of-wrong-the-boston-globe/</link>
		<comments>http://diehn.net/blog/2010/06/the-bright-side-of-wrong-the-boston-globe/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 13:00:35 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[mental]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/?p=148</guid>
		<description><![CDATA[When I read this, I thought of all the poor kids whose parents constantly correct them and scold them for making mistakes and prevent them from taking risks &#8211; intellectual risks, social risks, physical risks.  There&#8217;s strong motivation here for expanding your parenting style to incorporate allowing your kids to screw up.  And even for [...]]]></description>
			<content:encoded><![CDATA[<p>When I read this, I thought of all the poor kids whose parents constantly correct them and scold them for making mistakes and prevent them from taking risks &#8211; intellectual risks, social risks, physical risks.  There&#8217;s strong motivation here for expanding your parenting style to incorporate allowing your kids to screw up.  And even for learning to be comfortable taking some risks your self.  Enjoy!</p>
<p><a href="http://www.boston.com/bostonglobe/ideas/articles/2010/06/13/the_bright_side_of_wrong/">The bright side of wrong &#8211; The Boston Globe</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2010/06/the-bright-side-of-wrong-the-boston-globe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Would You Rather Be Right or Be At Peace?</title>
		<link>http://diehn.net/blog/2010/06/would-you-rather-be-right-or-be-at-peace/</link>
		<comments>http://diehn.net/blog/2010/06/would-you-rather-be-right-or-be-at-peace/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 11:53:29 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/?p=142</guid>
		<description><![CDATA[I follow this guy&#8217;s blog, Stephen Mills.  He wrote a piece today that explains very well one of the choices I&#8217;ve been trying to finishing making for the past five years or so.  Would You Rather Be Right or Be At Peace?.  Good stuff, Stephen.  Thanks!]]></description>
			<content:encoded><![CDATA[<p>I follow this guy&#8217;s blog, Stephen Mills.  He wrote a piece today that explains very well one of the choices I&#8217;ve been trying to finishing making for the past five years or so.  <a href="http://www.ratracetrap.com/the-rat-race-trap/would-you-rather-be-right-or-be-at-peace.html?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed%3A+TheRatRaceTrap+%28The+Rat+Race+Trap%29">Would You Rather Be Right or Be At Peace?</a>.  Good stuff, Stephen.  Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2010/06/would-you-rather-be-right-or-be-at-peace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Citicard is shortsighted.</title>
		<link>http://diehn.net/blog/2010/05/citicard-is-shortsighted/</link>
		<comments>http://diehn.net/blog/2010/05/citicard-is-shortsighted/#comments</comments>
		<pubDate>Sat, 29 May 2010 01:42:27 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[dumb]]></category>
		<category><![CDATA[financial]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/?p=136</guid>
		<description><![CDATA[Remember the pain we used to have to go through to cancel a credit card?  Well, not anymore.  And that&#8217;s weird.  You&#8217;d think that with the recession so close behind them the creditors would be trying hard to keep customers. Luca and I just got back from fishing &#8211; caught a nice, 18&#8243; large mouth [...]]]></description>
			<content:encoded><![CDATA[<p>Remember the pain we used to have to go through to cancel a credit card?  Well, not anymore.  And that&#8217;s weird.  You&#8217;d think that with the recession so close behind them the creditors would be trying hard to keep customers.</p>
<p>Luca and I just got back from fishing &#8211; caught a nice, 18&#8243; large mouth and a 10&#8243; horned pout.  The Citi Diamond Visa card statement was waiting.  Andi asked if I knew anything about the $60 charge on it.  &#8221;Nope.  Hmm&#8230; says &#8216;fees.&#8217;&#8221;  So I called them.</p>
<p>It&#8217;s an anual membership fee they started charging back in February.  I told the woman on the phone that they could either reverse the charge or close my account.  She didn&#8217;t even bat an eye, just asked if I&#8217;d like a letter confirming the closure.</p>
<p>Wow.  They&#8217;d rather loose a customer than give up the $60 fee?  Dumb, dumb, dumb.  I guess we&#8217;ll be buying our new furnace on the AmEx.</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2010/05/citicard-is-shortsighted/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing gdata on Ubuntu 9.04.</title>
		<link>http://diehn.net/blog/2010/05/installing-gdata-on-ubuntu-9-04/</link>
		<comments>http://diehn.net/blog/2010/05/installing-gdata-on-ubuntu-9-04/#comments</comments>
		<pubDate>Thu, 27 May 2010 20:51:56 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[gdata]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/2010/05/installing-gdata-on-ubuntu-9-04/</guid>
		<description><![CDATA[Don&#8217;t forget that by default, most python module install themselves in /usr/local/lib/python2.6/dist-packages/. But the default install of python2.6 on Ubuntu 9.04 doesn&#8217;t look there. Ugh. So, instead of installing with python setup.py install use python setup.py install &#8211;install-layout=deb and the module will install itself in /usr/lib/python2.6/dist-packages and then python will be able to find it.]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t forget that by default, most python module install themselves in /usr/local/lib/python2.6/dist-packages/.  But the default install of python2.6 on Ubuntu 9.04 doesn&#8217;t look there.  Ugh.  So, instead of installing with</p>
<p>python setup.py install</p>
<p>use</p>
<p>python setup.py install &#8211;install-layout=deb</p>
<p>and the module will install itself in /usr/lib/python2.6/dist-packages and then python will be able to find it.</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2010/05/installing-gdata-on-ubuntu-9-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacked.</title>
		<link>http://diehn.net/blog/2010/05/hacked/</link>
		<comments>http://diehn.net/blog/2010/05/hacked/#comments</comments>
		<pubDate>Thu, 27 May 2010 20:48:40 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[dumb]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/2010/05/hacked/</guid>
		<description><![CDATA[Old news. Didn&#8217;t upgrade my wordpress for a looong time. Came over this afternoon to make a new post and found the bottom of my blog covered in arabic. Ugh. Someone had added an administrator account, too. So, apply new theme and nuke the old &#8211; the templates were altered. Delete all three add-ons. Change [...]]]></description>
			<content:encoded><![CDATA[<p>Old news.  Didn&#8217;t upgrade my wordpress for a looong time.  Came over this afternoon to make a new post and found the bottom of my blog covered in arabic.  Ugh.  Someone had added an administrator  account, too.  So, apply new theme  and nuke the old &#8211; the templates were altered.  Delete all three add-ons.  Change passwords.  Remove the old admin account.  Change passwords on my web hosting account, too.  Ugh. Ugh. Ugh.</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2010/05/hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I got the squirrel and the squirrel got me.</title>
		<link>http://diehn.net/blog/2009/01/i-got-the-squirrel-and-the-squirrel-got-me-2/</link>
		<comments>http://diehn.net/blog/2009/01/i-got-the-squirrel-and-the-squirrel-got-me-2/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 21:20:35 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/2009/01/i-got-a-squirrel-and-the-squirrel-got-me-2/</guid>
		<description><![CDATA[Got a squirrel at 75 yards Sunday. Not a bad shot, but about 1/4 of an inch to the left would have been better.  As it happened, the round passed through it&#8217;s neck just aft of the skull and just above the spine, apparently just disabling it&#8217;s shoulders.  So, it fell out of the tree [...]]]></description>
			<content:encoded><![CDATA[<p>Got a squirrel at 75 yards Sunday. Not a bad shot, but about 1/4 of an inch to the left would have been better.  As it happened, the round passed through it&#8217;s neck just aft of the skull and just above the spine, apparently just disabling it&#8217;s shoulders.  So, it fell out of the tree and stayed where it fell.  Took me a while to find it.  And then I wasn&#8217;t sure what to do.  Wish I&#8217;d had a mentor along or that I&#8217;d been taught hunting as a boy.</p>
<p>This was my first hunting kill, and I&#8217;ll admit &#8211; when it came time to finish the killing, I wavered in my conviction.  It seemed the animal wasn&#8217;t mortally wounded and at first, I contemplated taking it home and healing it.  My wife helped me see reason and I realised it would be best to finish the poor thing.  But how to do it?  Well, first, take my gloves off to get a better grip.  (Now, anyone that&#8217;s handled a wounded animal just winced hard.)  And knows what&#8217;s coming next&#8230;.</p>
<p>As I tried to turn the squirrel in my hands and figure out the most humane method to finish it off, it wriggled around and clamped itself to my now bare hands.  WOW!  About twenty good, deep scratches into untangling it&#8217;s claws from my skin, I just gave up and broke it&#8217;s neck.  Would have been better for us both if I&#8217;d just done that from the start.  So now I know.</p>
<p>Anyway.  That&#8217;s my first game animal. Does that make me a hunter? Well, I intend hunting more squirrel, so I think so. I skinned it and dressed it according to directions I found in, believe it or not, The Joy of Cooking.  I&#8217;ve got the hide curing and I&#8217;ve salted the tail stump so I can save it for the Meps people.  I got a surprising amount of meat off it and I&#8217;ll be cooking it tonight I think.  I&#8217;ll post about how it tastes, etc.</p>
<p>Seems that serving squirrel was <a href="http://www.telegraph.co.uk/portal/main.jhtml?xml=/portal/2008/05/28/ftsquirrel128.xml">all the rage</a> to serve squirrel at dinner parties in England last summer.  The <a href="http://www.shootingsquirrels.com/uncategorized/squirrels-in-the-city/">folks in NYC were at it</a>, too apparently.</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2009/01/i-got-the-squirrel-and-the-squirrel-got-me-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kinesis keyboards and GNOME</title>
		<link>http://diehn.net/blog/2008/12/kinesis-keyboards-and-gnome/</link>
		<comments>http://diehn.net/blog/2008/12/kinesis-keyboards-and-gnome/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 14:02:20 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/2008/12/kinesis-keyboards-and-gnome/</guid>
		<description><![CDATA[Randall Wood wrote a decent article about about customising Gnome for using Kinesis keyboards.]]></description>
			<content:encoded><![CDATA[<p>Randall Wood <a href="http://therandymon.com/content/view/160/98/">wrote a decent article</a> about about customising Gnome for using Kinesis keyboards.</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2008/12/kinesis-keyboards-and-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bbrringg, bbbrrringgg: old phones, new ears.</title>
		<link>http://diehn.net/blog/2008/12/bbrringg-bbbrrringgg-old-phones-new-ears/</link>
		<comments>http://diehn.net/blog/2008/12/bbrringg-bbbrrringgg-old-phones-new-ears/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 18:48:39 +0000</pubDate>
		<dc:creator>Mike Diehn</dc:creator>
				<category><![CDATA[kids]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[tallis]]></category>

		<guid isPermaLink="false">http://diehn.net/blog/?p=54</guid>
		<description><![CDATA[Power was out this morning.  It&#8217;s still out at home but I&#8217;m in the office where it&#8217;s warm and dry and happy&#8230;  ok, let&#8217;s not gloat.  Anyway, when the power goes out, we pull the digital, cordless phone base-station off the kitchen wall and plug in an old, analogue, single-line, business telephone.  And it works.  [...]]]></description>
			<content:encoded><![CDATA[<p>Power was out this morning.  It&#8217;s still out at home but I&#8217;m in the office where it&#8217;s warm and dry and happy&#8230;  ok, let&#8217;s not gloat.  Anyway, when the power goes out, we pull the digital, cordless phone base-station off the kitchen wall and plug in an old, analogue, single-line, business telephone.  And it works.  Cool.</p>
<div class="wp-caption alignright" style="width: 140px"><a href="http://en.wikipedia.org/wiki/Image:ATTtelephone-large.jpg" target="_blank"><img title="ATT Single-line Telephone" src="http://upload.wikimedia.org/wikipedia/commons/b/b2/ATTtelephone-large.jpg" alt="ATT Single-line Telephone" width="130" height="130" /></a><p class="wp-caption-text">ATT Single-line Telephone</p></div>
<p>Anyway, this morning when I called home to see how it was going there in the dark, apparently Tallis perked up and said &#8211; &#8220;what&#8217;s that funny sound?&#8221;</p>
<p>He&#8217;d never heard an actually ringing telephone.</p>
]]></content:encoded>
			<wfw:commentRss>http://diehn.net/blog/2008/12/bbrringg-bbbrrringgg-old-phones-new-ears/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

