<?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>Alkahest &#187; Personal</title>
	<atom:link href="http://www.fenris.org/category/personal/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fenris.org</link>
	<description>There&#039;ll be no more cigarettes.  No more having sex.  No more drinking until you fall on the floor.  No more indie rock.  Just a ticking clock.  You have no time for that anymore.</description>
	<lastBuildDate>Thu, 17 Jun 2010 02:13:09 +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>The Sounds of Science</title>
		<link>http://www.fenris.org/2010/06/16/the-sounds-of-science</link>
		<comments>http://www.fenris.org/2010/06/16/the-sounds-of-science#comments</comments>
		<pubDate>Thu, 17 Jun 2010 02:07:37 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=1192</guid>
		<description><![CDATA[Last Friday, hsarik pointed out an interesting web site: Echo Nest.  They provide a web service that allows you to analyze and remix music.  The API also can provide information (meta-data) about music, artists, songs etc.  and has Python bindings.  If you&#8217;ve seen the &#8220;More Cowbell&#8221; website where you can upload an mp3 and have [...]]]></description>
			<content:encoded><![CDATA[<p>Last Friday, <a href="http://www.heathbar.org/weblog/">hsarik</a> pointed out an interesting web site: <a href="http://echonest.com">Echo Nest</a>.  They provide a web service that allows you to analyze and remix music.  The API also can provide information (meta-data) about music, artists, songs etc.  and has Python bindings.  If you&#8217;ve seen the &#8220;<a href="http://www.morecowbell.dj/">More Cowbell</a>&#8221; website where you can upload an mp3 and have more cowbell (and more Christopher Walken) added to it, well that site uses Echo Nest and if you download the python bindings for their API, you can see the script that adds the sounds.  Personally, I&#8217;m fond of &#8220;Ob-la-di, Ob-la-da&#8221; with 80% cowbell and 20% Christopher Walken.</p>
<p>I started playing with the API and as a first cut thought it would be neat to use the &#8220;get_similar&#8221; function.  So for each artist, you can get the top N similar artists.  Now where can I get a list of artists I like?  Well, I could type &#8216;em in, but that sucks.  So I wrote a small program which:</p>
<ol>
<li>Opens the database on my iPod (or a directory of mp3 files)</li>
<li>Finds each artist by either reading the iPod db or looking at the id3 tags in all of the files</li>
<li>For each artist, add a node to a graph where the area of the node is proportional to the number of songs that artist has on the iPod (or in the music folder)</li>
<li>For each artist, finds the top 50 similar artists</li>
<li>For all of the similar artists that are in my collection of artists, add a graph edge between the two nodes</li>
<li>Plot the graph</li>
</ol>
<p>What can I say, I&#8217;ve been working on a fair amount of graph-theory at work recently.  So after processing my iPod, I came up with the following graph of my current music (click to embiggen):</p>
<p><a href="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/music_network.png"><img src="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/music_network.png" alt="" width="500" /></a></p>
<p>Okay, that&#8217;s pretty cool.  Almost completely illegible, but cool.  FWIW, the graph has 15 connected components, unfortunately, 13 of them are &#8220;singles&#8221; (not connected to anything), with one pair (Louis Armstrong paired with Louis Armstrong and Duke Ellington).  Fortunately, the graphing tool I use (<a href="http://igraph.sourceforge.net">igraph</a>), has built in tools for doing community analysis (using the leading eigenvector method), i.e., we can automatically find tightly coupled subgraphs.  A few examples from the 25 or so communities:</p>
<p><a href="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph03.png"><img src="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph03.png" alt="" width="150" height="150" /></a>  <a href="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph12.png"><img src="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph12.png" alt="" width="150" height="150" /></a>  <a href="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph20.png"><img src="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph20.png" alt="" width="150" height="150" /></a>  <a href="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph21.png"><img src="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph21.png" alt="" width="150" height="150" /></a>  <a href="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph24.png"><img src="http://www.fenris.org/wordpress/wp-content/uploads/2010/06/subgraph24.png" alt="" width="150" height="150" /></a></p>
<p>which arguably correspond to &#8220;Indie,&#8221;  &#8220;Classic Rock,&#8221;  &#8220;Jam Bands,&#8221;  &#8220;Guitar Gods,&#8221; and &#8220;Alternative.&#8221;  If I processed my complete music database, I suspect we would wind up with several other communities, e.g., Blues.  But since Robert Johnson is the only blues I&#8217;ve got on there right now&#8230; he&#8217;s in a class by himself.</p>
<p>I suppose it goes w/o saying, that my musical tastes aren&#8217;t everyone&#8217;s and that if you don&#8217;t like my musical tastes, you can keep it to yourself or go DIAF <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>So, what&#8217;s next?  I was talking with M from my office and we&#8217;ve come up with another interesting project for the Echo Nest API.  This one a) uses the audio analysis functions, and b) if we do it right might cause someone to send us a cease and desist.  So, win all the way around.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2010/06/16/the-sounds-of-science/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distilled essence of me</title>
		<link>http://www.fenris.org/2010/03/01/distilled-essence-of-me</link>
		<comments>http://www.fenris.org/2010/03/01/distilled-essence-of-me#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:21:56 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=1131</guid>
		<description><![CDATA[K&#8217;s out of town this week.  IIRC, this is the first week since we&#8217;ve been married that she&#8217;s out of town and I&#8217;m still at the house.  I figure that&#8217;s gotta give me a good sense of what I&#8217;m actually like without her, um,  civilizing  influences.  Helpfully summarized in the table below: Behavior Change Television [...]]]></description>
			<content:encoded><![CDATA[<p>K&#8217;s out of town this week.  IIRC, this is the first week since we&#8217;ve been married that she&#8217;s out of town and I&#8217;m still at the house.  I figure that&#8217;s gotta give me a good sense of what I&#8217;m actually like without her, um,  civilizing  influences.  Helpfully summarized in the table below:</p>
<table border="0">
<tbody>
<tr>
<td><strong>Behavior</strong></td>
<td><strong>Change</strong></td>
</tr>
<tr>
<td>Television watching</td>
<td>decreased</td>
</tr>
<tr>
<td>Computer use</td>
<td>increased</td>
</tr>
<tr>
<td>Work while at home</td>
<td>increased</td>
</tr>
<tr>
<td><a href="http://www.imdb.com/title/tt0096928/quotes?qt0532136">Bowling averages</a></td>
<td>way up</td>
</tr>
<tr>
<td><a href="http://www.imdb.com/title/tt0096928/quotes?qt0532136">Mini-golf scores</a></td>
<td>way down</td>
</tr>
<tr>
<td>News consumption</td>
<td>greatly decreased</td>
</tr>
<tr>
<td>Food variety</td>
<td>decreased</td>
</tr>
<tr>
<td>Food quality</td>
<td>no change</td>
</tr>
<tr>
<td>Food healthiness</td>
<td>no change</td>
</tr>
<tr>
<td>Time spent preparing food</td>
<td>decreased</td>
</tr>
<tr>
<td>Stereo/music listening</td>
<td>increased</td>
</tr>
<tr>
<td>Time spent in bed/sleeping</td>
<td>decreased</td>
</tr>
<tr>
<td>Quality of sleep</td>
<td>increased</td>
</tr>
<tr>
<td>Sex</td>
<td>non-existent</td>
</tr>
<tr>
<td>Exercise</td>
<td>increased</td>
</tr>
</tbody>
</table>
<p>No real observation here, certainly nothing that&#8217;s statistically significant (let&#8217;s see you construct a double blind study of a man&#8217;s activities when his wife is a thousand miles away).  Just amusing myself really.  Next up&#8230; the amazing idiocy of George Bush photos captioned with &#8220;Miss me yet?&#8221;  But right now, it&#8217;s <a href="http://en.wikipedia.org/wiki/Ghetto_Pop_Life">Ghetto Pop Life</a>&#8230; go ahead, I&#8217;ll wait while you cue it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2010/03/01/distilled-essence-of-me/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>42 and sunny&#8230;</title>
		<link>http://www.fenris.org/2009/12/20/42-and-sunny</link>
		<comments>http://www.fenris.org/2009/12/20/42-and-sunny#comments</comments>
		<pubDate>Sun, 20 Dec 2009 22:47:23 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=1119</guid>
		<description><![CDATA[42 &#176; and sunny, perfect for turning: into: into: and then:]]></description>
			<content:encoded><![CDATA[<p>42 &deg; and sunny, perfect for turning:</p>
<p>
<div class="wpg2tag-image"><a href="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10274" title="dsc_7317" rel="lightbox[1119]"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10275&amp;g2_serialNumber=2" width="150" height="100" id="IFid5" class="ImageFrame_None" alt="dsc_7317"/></a></div>
<p>
into:</p>
<div class="wpg2tag-image"><a href="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10271" title="dsc_7319" rel="lightbox[1119]"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10272&amp;g2_serialNumber=2" width="150" height="100" id="IFid6" class="ImageFrame_None" alt="dsc_7319"/></a></div>
<p>
into:
<div class="wpg2tag-image"><a href="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10277" title="dsc_7323" rel="lightbox[1119]"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10278&amp;g2_serialNumber=2" width="150" height="100" id="IFid7" class="ImageFrame_None" alt="dsc_7323"/></a></div>
<p>
and then:
<div class="wpg2tag-image"><a href="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10268" title="dsc_7327" rel="lightbox[1119]"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10269&amp;g2_serialNumber=2" width="100" height="150" id="IFid8" class="ImageFrame_None" alt="dsc_7327"/></a></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/12/20/42-and-sunny/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back from the dead</title>
		<link>http://www.fenris.org/2009/12/09/back-from-the-dead</link>
		<comments>http://www.fenris.org/2009/12/09/back-from-the-dead#comments</comments>
		<pubDate>Wed, 09 Dec 2009 21:01:08 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=1100</guid>
		<description><![CDATA[Okay, I wasn&#8217;t really dead, I had the flu.  But I was wishing that I were dead for a while there. Five days is too long for a massive headache and very high fever. I&#8217;m finally recovering and doing some self-imposed quarantine after getting on Tamaflu Monday.  Tuesday afternoon was somewhat interesting.  My doctor&#8217;s office [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, I wasn&#8217;t really dead, I had the flu.  But I was <em>wishing</em> that I were dead for a while there.  Five days is too long for a massive headache and very high fever.  I&#8217;m finally recovering and doing some self-imposed quarantine after getting on Tamaflu Monday.  Tuesday afternoon was somewhat interesting.  My doctor&#8217;s office had given me a little trick &#8211; you can take full doses of acetaminophen and full doses of ibuprofen.  They&#8217;ll both contribute to lowering fever and reducing pain, but their side effects are different and you don&#8217;t risk ulcers or your liver as if you had doubled up on one.</p>
<p>So, Tuesday, I&#8217;m lying in bed doped up on acetaminophen, acid blockers, caffeine, ibuprofen, and tamaflu, feeling better than I had in quite some time.  I was wishing there was a Phish album playing, but was too lazy to go put one on.  Instead, I laid (diagonal <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ) in my bed and daydreamed about Bill&#8217;s in-place, parallel sorting problem.  I think I&#8217;ve got the solution and it seems to hold even now when I&#8217;m not so dippy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/12/09/back-from-the-dead/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sierra and the case of the uncomfortable pillow</title>
		<link>http://www.fenris.org/2009/11/04/sierra-and-the-case-of-the-uncomfortable-pillow</link>
		<comments>http://www.fenris.org/2009/11/04/sierra-and-the-case-of-the-uncomfortable-pillow#comments</comments>
		<pubDate>Wed, 04 Nov 2009 14:18:53 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=1031</guid>
		<description><![CDATA[One of our dogs, Darwin, likes sleeping on the floor.  He&#8217;ll occasionally sleep on the couch or on his dog bed, but then he gets too hot and moves to the floor.  The other dog, Sierra (named after either the Sierra Nevada Mountains as beautifully described by John Muir or the brewery named after the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=10170&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img class="g2image_float_left" title="dsc_7289" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10180&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_7289" width="150" height="101" /></a>One of our dogs, Darwin, likes sleeping on the floor.  He&#8217;ll occasionally sleep on the couch or on his dog bed, but then he gets too hot and moves to the floor.  The other dog, Sierra (named after either the Sierra Nevada Mountains as beautifully described by John Muir or the brewery named after the same mountains, depending on whom you ask), doesn&#8217;t get so hot and prefers sleeping on pillows or couches&#8230; my spot in the bed if I&#8217;m not currently occupying it, etc.  One of her sleeping spots is on an old pillow in the bedroom.  But apparently, it&#8217;s not always that comfortable.  When we went to bed last night, this was the scene that greeted us.</p>
<p>I love my dogs.  I love my dogs.  Om mani padme hum.  I love my dogs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/11/04/sierra-and-the-case-of-the-uncomfortable-pillow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toy!</title>
		<link>http://www.fenris.org/2009/11/03/toy</link>
		<comments>http://www.fenris.org/2009/11/03/toy#comments</comments>
		<pubDate>Wed, 04 Nov 2009 04:04:36 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=1026</guid>
		<description><![CDATA[For a guy who uses computers as much as I do, you would think that I would have better machines at home.  But really, no.  Our last desktop was eight years old before we replaced it.  My laptop was an old Thinkpad X31 &#8211; maybe six or seven years old.  So, for a combination birthday/Christmas [...]]]></description>
			<content:encoded><![CDATA[<p>For a guy who uses computers as much as I do, you would think that I would have better machines at home.  But really, no.  Our last desktop was eight years old before we replaced it.  My laptop was an old Thinkpad X31 &#8211; maybe six or seven years old.  So, for a combination birthday/Christmas present, I got a new (sort of) laptop.  I picked up a refurbished thinkpad X200s from the Lenovo outlet.  So far it&#8217;s a nice machine: good processor, lots of high speed memory, and a big LED backlit screen.  Lenovo sent me notice that they were shipping the laptop today and the next thing I knew, it arrived at the office.  The advantages of working 5 miles from the outlet.  The only problem is that they didn&#8217;t ship all of the parts.  I&#8217;ve contacted them and they&#8217;ll send the dock/dvd.</p>
<p>When I got the machine home, I spent about a minute trying to decide if I would keep a partition with Windows on it.  But then I remembered that I don&#8217;t play video games, so I didn&#8217;t really need Vista.  I&#8217;ve installed Fedora 11 and moved all my files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/11/03/toy/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dragged kicking and screaming into the century of the fruitbat</title>
		<link>http://www.fenris.org/2009/10/29/dragged-kicking-and-screaming-into-the-century-of-the-fruitbat</link>
		<comments>http://www.fenris.org/2009/10/29/dragged-kicking-and-screaming-into-the-century-of-the-fruitbat#comments</comments>
		<pubDate>Thu, 29 Oct 2009 13:35:41 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=1016</guid>
		<description><![CDATA[With apologies to Terry Prachett, I feel like I being dragged (dragging myself?) into the Century of the Fruitbat.  As I mentioned a long time ago, I don&#8217;t care for Facebook.  I prefer my blog.  That said, many of my friends and most of my family use Facebook.  So I&#8217;m going to start a bit [...]]]></description>
			<content:encoded><![CDATA[<p>With apologies to Terry Prachett, I feel like I being dragged (dragging myself?) into the <a href="http://wiki.lspace.org/wiki/Discworld_calendar#Years_and_centuries">Century of the Fruitbat</a>.  As I mentioned a long time ago, <a href="http://www.fenris.org/2009/04/21/vint-cerf-called">I don&#8217;t care for Facebook</a>.  I prefer my blog.  That said, many of my friends and most of my family use Facebook.  So I&#8217;m going to start a bit of an experiment.  I&#8217;ve downloaded and installed the <a href="http://www.tsaiberspace.net/blog/2007/07/29/wordbook">Wordbook</a> plugin for my blog software (wordpress).   Starting with this post, in theory anything that&#8217;s published on the blog gets cross-posted to fb.</p>
<p>Kill me now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/10/29/dragged-kicking-and-screaming-into-the-century-of-the-fruitbat/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Peter Piper picked . . .</title>
		<link>http://www.fenris.org/2009/09/21/peter-piper-picked</link>
		<comments>http://www.fenris.org/2009/09/21/peter-piper-picked#comments</comments>
		<pubDate>Mon, 21 Sep 2009 18:25:02 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=1001</guid>
		<description><![CDATA[Peter Piper picked a peck of pickled peppers; A peck of pickled peppers Peter Piper picked; If Peter Piper picked a peck of pickled peppers, Where&#8217;s the peck of pickled peppers Peter Piper picked? When I planted the garden, I put in a couple of banana pepper plants.  I seem to recall that my thinking [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Peter Piper picked a peck of  pickled peppers;<br />
A peck of pickled peppers Peter  Piper picked;<br />
If Peter Piper picked a peck of  pickled peppers,<br />
Where&#8217;s the peck of pickled  peppers Peter Piper picked?</p></blockquote>
<p>When I planted the garden, I put in a couple of banana pepper plants.  I seem to recall that my thinking was along the lines of, &#8220;I&#8217;ve got a great idea, I&#8217;ll plant some banana peppers &#8211; I love &#8216;em.&#8221;  Great in abstract, but I don&#8217;t actually have any recipes that call for banana peppers.  I only seem to eat them pickled.</p>
<p>Well, I couldn&#8217;t let them rot, so yesterday I went out and picked, not a peck, but maybe a half gallon (0.25 peck) of peppers and spent part of the afternoon pickling them.  I&#8217;ve got two pints of whole peppers and four pints of sliced.  We&#8217;ll see how they taste in a few weeks.</p>
<p>Before and after:</p>
<p><a title="dsc_7261" rel="lightbox" href="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10161&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img class="g2image_normal" title="dsc_7261" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10163&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_7261" width="150" height="101" /></a><a title="dsc_7265" rel="lightbox" href="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10164&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img class="g2image_normal" title="dsc_7265" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10166&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_7265" width="150" height="101" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/09/21/peter-piper-picked/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It is official!</title>
		<link>http://www.fenris.org/2009/09/16/its-official-2</link>
		<comments>http://www.fenris.org/2009/09/16/its-official-2#comments</comments>
		<pubDate>Thu, 17 Sep 2009 03:09:56 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Wildlife Rehab]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=995</guid>
		<description><![CDATA[I managed to get into the office a bit early this morning, which meant that I also got to leave a bit early (working as a federal contractor definitely has its perks).  The only reason I mention this is because I beat K to the mail and when I reached into the mailbox, there was [...]]]></description>
			<content:encoded><![CDATA[<p>I managed to get into the office a bit early this morning, which meant that I also got to leave a bit early (working as a federal contractor definitely has its perks).  The only reason I mention this is because I beat K to the mail and when I reached into the mailbox, there was a rather thick envelope with the <a href="http://trianglewildlife.org">non-profit&#8217;s name</a> (C/O me).  It was from the IRS.  Well, the only thing that we have out-standing with the feds is our non-profit status.  So, I was a bit nervous in opening it.  It felt a bit like opening a college application letter.  I was really hoping that, like with the college letter, a thick envelop was a good sign.  After all, if you&#8217;ve been turned down, they send you a one page letter.  If you&#8217;ve been accepted, they send you a packet of information.</p>
<p>I opened the envelop, and sure enough, it was a two page letter saying that the <a href="http://trianglewildlife.org">Triangle Wildlife Rehabilitation Clinic</a> is now an official non-profit and it included a lovely pamphlet with information on our responsibilities as such.</p>
<p>Also nice &#8211; our status is retroactive to the end of *last* year.  So all of the donations that we&#8217;ve received are officially tax deductible.  As are any future donations if anyone wants to <a href="http://www.trianglewildlife.org/donate">donate</a> <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Go TWRC!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/09/16/its-official-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Communication and learning styles</title>
		<link>http://www.fenris.org/2009/09/09/communication-and-learning-styles</link>
		<comments>http://www.fenris.org/2009/09/09/communication-and-learning-styles#comments</comments>
		<pubDate>Thu, 10 Sep 2009 02:58:03 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=992</guid>
		<description><![CDATA[A while back I mentioned that K, some associates and I had started up a new non-profit.  Things are going reasonably well.  People have been more supportive than I had thought.  We&#8217;ve had about 70 patients so far and we&#8217;ve got the systems set up so that patients entered into the database post up to [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I <a href="http://www.fenris.org/2009/07/09/back-from-galts-gulch">mentioned</a> that K, some associates and I had started up a <a href="http://trianglewildlife.org">new non-profit</a>.  Things are going reasonably well.  People have been more supportive than I had thought.  We&#8217;ve had about 70 patients so far and we&#8217;ve got the systems set up so that patients entered into the database post up to <a href="http://twitter.com/twrclinic">Twitter</a>, along with any Facebook updates.</p>
<p>One thing that I have noticed in working with the others on the non-profit is that learning styles and communication styles seem to be closely related.  You can divide learning styles (among other ways) into <a href="http://psycnet.apa.org/index.cfm?fa=main.doiLanding&amp;uid=2003-09576-015">verbal vs visual learners</a>.  Verbal learners prefer to hear things explained to them.  whereas visual learners prefer things to be written down.  Based on some of our recent experiences, I think that this plays into communication styles.  And it&#8217;s communication styles which are (occasionally) biting us.</p>
<p>We&#8217;ve got two people (including me) who have a strong visual preference &#8211; we like email for communication.  We have one person who exhibits a strong verbal preference (prefers the phone or in-person communication) and one who has no strong preference either way.  On a couple of recent occasions, we&#8217;ve had some missed communication.  Our verbal communicator will say something or mention a project or deadline and expect that the rest of us have kept up.  Our email/visual communicators don&#8217;t catch these verbal references and do the same thing with respect to email.</p>
<p>I was talking to our verbal communicator (by phone, of course! &#8211; she called me after I emailed her) about this and mentioned that I don&#8217;t ever catch the details when she&#8217;s talking.  At the last board meeting, she had mentioned a project and I *assumed* that if there were deadlines, they would be sent out in email.  In fact, I don&#8217;t ever consider anything to be real until I see it written down.  It&#8217;s just how I think.  People might *talk* about a lot of things, but until I see them commit some details to something written (email, memo, etc.), I don&#8217;t think they mean it.  After I described this to our verbal communicator, she confessed that she often never reads the details of the email that our visual communicators send.  In other words, in the same way that I don&#8217;t give enough consideration to non-visual communication, she doesn&#8217;t give enough consideration to non-verbal communication.</p>
<p>All in all, this isn&#8217;t the worst problem that a group of people can have.  I think the most important thing is to recognize these differences and to know that if you want to be certain that your message is received, you have to consider the expected medium for your audience.  (shock!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/09/09/communication-and-learning-styles/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>just saying. . .</title>
		<link>http://www.fenris.org/2009/08/26/just-saying</link>
		<comments>http://www.fenris.org/2009/08/26/just-saying#comments</comments>
		<pubDate>Thu, 27 Aug 2009 01:35:57 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=984</guid>
		<description><![CDATA[if i ever do get around to filking the Pilgrim&#8217;s Progress, there&#8217;s a good chance it&#8217;ll feature a &#8220;Slough of Sake&#8221; and a &#8220;Carnival of Sangria.&#8221;]]></description>
			<content:encoded><![CDATA[<p>if i ever do get around to filking the Pilgrim&#8217;s Progress, there&#8217;s a good chance it&#8217;ll feature a &#8220;Slough of Sake&#8221; and a &#8220;Carnival of Sangria.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/08/26/just-saying/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Garden produce</title>
		<link>http://www.fenris.org/2009/08/17/garden-produce</link>
		<comments>http://www.fenris.org/2009/08/17/garden-produce#comments</comments>
		<pubDate>Mon, 17 Aug 2009 21:23:08 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=976</guid>
		<description><![CDATA[I&#8217;ve mentioned before that this is the first year that we&#8217;ve had a garden, and it&#8217;s been going great.  In the early spring we had lots of spinach, arugula, turnips, lettuce, etc.  Now that we&#8217;re in the summer, it&#8217;s time for a whole new type of produce.  Last night, I went out to the garden [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve mentioned before that this is the first year that we&#8217;ve had a garden, and it&#8217;s been going great.  In the early spring we had lots of spinach, arugula, turnips, lettuce, etc.  Now that we&#8217;re in the summer, it&#8217;s time for a whole new type of produce.  Last night, I went out to the garden and picked a bunch of tomatoes (yes, I prefer the cherry tomatoes), banana peppers and green beans.  Later this week, I&#8217;ll pick some of the eggplant and we&#8217;ll do <a href="http://allrecipes.com/Recipe/Eggplant-Croquettes/Detail.aspx">eggplant croquettes</a>.  Hopefully, we&#8217;ll also get some regular peppers, zucchini and maybe even a small watermelon or two.</p>
<p>The best part for me has been that we&#8217;ve gotten a good amount of produce with a fairly minimal amount of work.  I planted densely, but in raised beds.  I haven&#8217;t weeded and the whole thing looks like an overgrown mess, but it produces quite a bit:</p>
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=10079&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_7193_m" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10079&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_7193_m" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/08/17/garden-produce/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The universe hates me, part 37</title>
		<link>http://www.fenris.org/2009/08/10/the-universe-hates-me-part-37</link>
		<comments>http://www.fenris.org/2009/08/10/the-universe-hates-me-part-37#comments</comments>
		<pubDate>Mon, 10 Aug 2009 20:47:08 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=973</guid>
		<description><![CDATA[or Adventures in Home Repair; or How I Spent My Sunday. For reasons best left unspecified, I found myself in need of a new exterior door &#8211; a replacement for the one that keeps my utility room from being a part of the outdoors.  Last weekend, I went out to the local home improvement store [...]]]></description>
			<content:encoded><![CDATA[<p>or <strong>Adventures in Home Repair</strong>;</p>
<p>or <strong>How I Spent My Sunday</strong>.</p>
<p>For reasons best left unspecified, I found myself in need of a new exterior door &#8211; a replacement for the one that keeps my utility room from being a part of the outdoors.  Last weekend, I went out to the local home improvement store and after spending two hours, I realized that I couldn’t simply replace the door, but instead, had to replace the entire door, prehung in its frame.</p>
<p>So, I bought the door-in-frame, hauled it out to my car only to realize that I had forgotten a certain problem of logistics.  While a door slab will fit in my hatchback, a whole door in its frame, most certainly will not.  So, I haul the frame back into the Lowes and ask if they can hold it for me.  Nope.  Well, not currently.  If I *returned* the frame and then re-purchased it, *then* they could hold it.  Fine.  Done.</p>
<p>Fast-forward to yesterday.  I borrow a neighbor’s truck (noon) and make the 10+ mile drive back out to the Lowes.  Pick up the door, drive back, unload and return the truck (1pm).  I start removing the old door, pulling out the frame and leaving it as a rough cutout (2:30pm).  Took a break to avoid completely dehydrating and got back to work (3pm).  At this point, I realized that because of the thickness of the logs (or in the utility room, the log siding), the last door had actually been installed 2″ out of the rough and was actually sitting on the porch.  Unfortunately, that means that there was actually extra header between the frame and the rough since the porch sits an inch lower than the subfloor.  To fix that, I nailed down some extra board so the door would sit on the subfloor and be flush with the interior walls.  Next step &#8211; find my caulk.  Oops &#8211; none in the house.  Run up to the nearest hardware store, about 8 miles, and buy some caulk (4:00pm).</p>
<p>Caulked the rough and set the door up.  Unfortunately, the door installation instructions were a little opaque and I couldn’t figure out where to go next.  Everytime I opened the door or even stopped holding it, the door would start falling.  Google to the rescue!  Following the online instructions, I shimmed the door into place, leveled it and got everything nailed into place (5pm).  Grab the old deadbolt and doorknob and installed them (5:30pm) and, with K’s help, cleaned up &#8211; 5:50pm.</p>
<p>All in all, a perfectly terrible way to spend a Sunday.  And I still need to finish insulating the door, staining it and putting the moulding back together.  Whee!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/08/10/the-universe-hates-me-part-37/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the importance of verifying backups</title>
		<link>http://www.fenris.org/2009/07/20/the-importance-of-verifying-backups</link>
		<comments>http://www.fenris.org/2009/07/20/the-importance-of-verifying-backups#comments</comments>
		<pubDate>Tue, 21 Jul 2009 02:58:46 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=965</guid>
		<description><![CDATA[I was using my personal laptop at a meeting yesterday and grabbed about a gig of files from someone&#8217;s usb key.  While I was taking minutes, I noticed a lovely new icon that popped up&#8230; your hard disk drive is failing.  Eeek!  Not cool.  So, last night I got home and started backing up my [...]]]></description>
			<content:encoded><![CDATA[<p>I was using my personal laptop at a meeting yesterday and grabbed about a gig of files from someone&#8217;s usb key.  While I was taking minutes, I noticed a lovely new icon that popped up&#8230; your hard disk drive is failing.  Eeek!  Not cool.  So, last night I got home and started backing up my files.  A few of the new files and a couple unimportant old files didn&#8217;t transfer properly.   Fine, I could live without them.</p>
<p>Today, I bought a replacement drive.  When I got home, I wanted to record the diffs from last night to today (quite a few since I uncompressed a lot of that gig&#8217;s worth of files).  As I started that up, I received a lot of notices about the *backup* disk failing.  I tried fixing it, but no luck.  Found a new backup disk.  Re-backed up 30 gigabytes worth of data.  Verified that and installed the new drive.  Things worked pretty well.  I installed Fedora 11 for the second time in two weeks, restored all my personal files and now I&#8217;m updating the system.</p>
<p>I&#8217;m just glad I verified the backup prior to doing this &#8211; it would have been annoying to have installed the OS only to find that I needed to revert back to the old drive to make a new backup.  :-/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/07/20/the-importance-of-verifying-backups/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back from Galts Gulch</title>
		<link>http://www.fenris.org/2009/07/09/back-from-galts-gulch</link>
		<comments>http://www.fenris.org/2009/07/09/back-from-galts-gulch#comments</comments>
		<pubDate>Thu, 09 Jul 2009 15:22:14 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Wildlife Rehab]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=959</guid>
		<description><![CDATA[Yes, because I&#8217;m a mighty industrialist (aka Ubermensch) and the world will fall down if I stop writing.   Okay, enough picking on the Randians.  Sorry for the radio silence.  A quick update: I got back from Des Moines last month and the next day had a board meeting for the non-profit I work with.  [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, because I&#8217;m a mighty industrialist (aka Ubermensch) and the world will fall down if I stop writing. <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />   Okay, enough picking on the Randians.  Sorry for the radio silence.  A quick update:</p>
<p>I got back from Des Moines last month and the next day had a board meeting for the non-profit I work with.  As treasurer, I went to review the financial situation based on the projections we finally received.  Sure enough, the detailed projections were in line with the back-of-a-napkin ones that I had presented earlier, i.e., dire.  The only real solution was to close a significant portion of our operations, which we did.  Unfortunately, that was also the part of operations that K cares most about.</p>
<p>So for the past three weeks, I&#8217;ve been working with some other folks, including another board member who resigned after closing operations, to form a new non-profit.  It&#8217;s been a little hush-hush, but we did go public today.  We&#8217;ve sent out a press release, <a href="http://trianglewildlife.org">have a web site</a>, are <a href="http://twitter.com/twrclinic">doing the twitter thing</a>, and even have a <a href="http://www.facebook.com/pages/Triangle-Wildlife-Rehabilitation-Clinic/124236656561">facebook page</a>.  Yes, the last two make me feel dirty, but what the hell.</p>
<p>My part&#8217;s been largely working the administrative angles with K.  I&#8217;m the Board Secretary, so I&#8217;ve filed the incorporation paperwork and will be sending off the IRS Form 1023 this weekend in order to get our official tax-exempt status.  We got word yesterday that we were incorporated on July 7th!  (BTW, it&#8217;s very cool that information goes online at the NC Secretary of State faster than it goes out in snail mail.)</p>
<p>My colleagues are working with their friends on the branding, etc.  Hopefully we&#8217;ll be announcing a coming out party soon.</p>
<p>So, you see, I wasn&#8217;t really hangin&#8217; with Galt &#8211; I&#8217;ve just been working on things I couldn&#8217;t be public about until now <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/07/09/back-from-galts-gulch/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eulogy for a grandfather never well known</title>
		<link>http://www.fenris.org/2009/06/16/eulogy-for-a-grandfather-never-well-known</link>
		<comments>http://www.fenris.org/2009/06/16/eulogy-for-a-grandfather-never-well-known#comments</comments>
		<pubDate>Tue, 16 Jun 2009 04:42:22 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=948</guid>
		<description><![CDATA[Drafting out a few words for grandpa&#8217;s funeral tomorrow&#8230;  feel free to ignore. I never felt that I knew Dick very well.  Of course, growing up, we didn&#8217;t call him that.  We always called him Grandpa S.  We saw him once every few years, but with a thousand miles between Baton Rouge and Des Moines, [...]]]></description>
			<content:encoded><![CDATA[<p>Drafting out a few words for grandpa&#8217;s funeral tomorrow&#8230;  feel free to ignore.</p>
<blockquote><p>I never felt that I knew Dick very well.  Of course, growing up, we didn&#8217;t call him that.  We always called him Grandpa S.  We saw him once every few years, but with a thousand miles between Baton Rouge and Des Moines, I suppose that wasn&#8217;t too surprising.  While it came 20 years later than I would have liked, I have appreciated being here today and at the visitation yesterday, hearing everyone&#8217;s impressions of the man that my grandfather was.</p>
<p>As generous as you have all been, I would like to share a few stories of my own.  They define how I remember Richard S.</p>
<ul>
<li>About ten years ago, shortly after I finished graduate school, grandpa drove down from Iowa for the graduation ceremony.  While he was there, he hung several paintings that we had left sitting around the house for a few months; fixed an armoire with stripped screws using toothpicks and wood glue (a trick I&#8217;ve used ever since); and started talking with K and me about coming back down to build in some book cases (an offer that we regret not taking him up on).  I&#8217;ve also seen work he&#8217;s done for others&#8230; a cross at his church, a display cabinet at his retirement home, a &#8230; well, I&#8217;m sure many of you have your own examples.  From this I see Richard as a skilled man generous with his time.</li>
<li>One of those examples of his sharing his talents is when he came down to Baton Rouge and helped my father convert the attic into a bedroom for my brother, Geoff, and me.  When it came time to build the nooks for the beds, my father did the practical thing and measured the mattresses to figure out the proper length of the bed nooks.  Grandpa came along and added an extra six inches.  Later, he told us proudly that he did that so that as we grew to be as talk as he was, we would appreciate the space for our feet to hang off the bed.  Now, I might be 5&#8217;10 on days when I feel like lying.  Over the past, nearly, 40 years, my feet have never hung off of a bed&#8230; unless, of course, my head is in the middle of it.  That I wasn&#8217;t going to reach 6&#8217;4&#8243; was obvious at the time he was building the room; but yet, it struck me as beautifully optimistic.  An optimism worthy of my grandfather.</li>
<li>Another time, the family was visiting Des Moines.  I don&#8217;t remember where, exactly, we were, perhaps either Irma&#8217;s or Norma&#8217;s house and we were making &#8220;lefse&#8230;&#8221;  thin, Norweigan potato pancakes that you spread butter and sugar on, roll up and eat.  My mother had been teaching me and Geoff how to cook and so Dick was telling us how the lefse were made.  Now, if you didn&#8217;t know (and I can&#8217;t imagine that you didn&#8217;t), Richard had a *terrible* sense of humor.  There were puns and shaggy dog stories, all of which I&#8217;ll spare you.  So as grandpa had talked us through making the lefse dough he tells us that you cook the lefse in an iron pan and that the iron pan is *very* important.  Well, we were a couple of inquisitive, scientifically minded children.  Geoff and I were learning to cook and I could imagine of a few reasons why an iron pan might be needed.  So someone asked, &#8216;why an iron pan?&#8217;  His face lit up.  In hindsight, you could see it.  He gave us the setup and we took the bait.  Grinning broadly he said, &#8220;because Norwegians can&#8217;t say Aluminumunumum.&#8221;  If anyone has other examples of Dick&#8217;s humor, please don&#8217;t tell me.  Although in fairness, that might also be why grandpa&#8217;s lefse didn&#8217;t have cinamoniumum.</li>
<li>I&#8217;ve covered his skills in woodworking, his generosity in sharing those skills, his optimism and his terrible sense of humor.  In my mind, the last thing that defined my grandfather was his love of God.  You could see this in his relationship to his church and his trips to the holy land.  It was for that reason that K and I asked him to officiate at our wedding.  As the groom, I honestly don&#8217;t remember that much about homily, although some time in the 3rd hour, it did occur to me that it might have been a bit long <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  .</li>
</ul>
<p>In all seriousness, I believe that having grandpa officiate at our wedding was one of the best decisions we&#8217;ve ever made.  It made the ceremony that much more special to both K and me.</p></blockquote>
<blockquote><p>As I said earlier, I&#8217;ve never felt that I knew my grandfather as well as I would have liked; but I feel privileged to have known him as well as I did.</p></blockquote>
<p>So, that&#8217;s roughly what I&#8217;m thinking.  I&#8217;ll have to re-read it tomorrow to see if I still want to say it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/06/16/eulogy-for-a-grandfather-never-well-known/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Richard S., rest in peace</title>
		<link>http://www.fenris.org/2009/06/12/richard-s-rest-in-peace</link>
		<comments>http://www.fenris.org/2009/06/12/richard-s-rest-in-peace#comments</comments>
		<pubDate>Sat, 13 Jun 2009 02:56:03 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=945</guid>
		<description><![CDATA[I heard from my mom today that my grandfather died this afternoon.  It wasn&#8217;t a complete shock.  He never fully recovered from a stroke a few years ago, was recently suffering bouts of ventricular tachycardia, had just this week been diagnosed with pancreatic cancer (which recently claimed Randy Pausch &#8211; go watch his &#8220;last lecture&#8220;), [...]]]></description>
			<content:encoded><![CDATA[<p>I heard from my mom today that my grandfather died this afternoon.  It wasn&#8217;t a complete shock.  He never fully recovered from a stroke a few years ago, was recently suffering bouts of <a href="http://en.wikipedia.org/wiki/Ventricular_tachycardia">ventricular tachycardia</a>, had just this week been diagnosed with pancreatic cancer (which recently claimed Randy Pausch &#8211; go watch his &#8220;<a href="http://www.youtube.com/watch?v=ji5_MqicxSo">last lecture</a>&#8220;), and had signed a DNR order.</p>
<p>I never did know my grandfather that well.  Of my five grandparents, he was the one whom we visited least while growing up.  There&#8217;s also the difficulty of understanding someone 50+ years older than you.  And his general Norwegian disposition, a silent doer, made it difficult to know what was in his head. I suspect you got to know my grandfather more by working with him than talking to him.</p>
<p>By the time I was in my twenties, my family started to have more contact with my grandfather.  He drove down to NC for my graduation ceremony.  We talked some about having him down again to help build some bookshelves.  (One of the things I know about him is that he was an excellent wood worker.  He&#8217;s built all sorts of furniture, and I think even the cross that hangs in his church.)  That was 11 years ago, and one of the last times I saw him before his stroke: a tall strong man in his early 70s.  The last time I saw him, was three years ago on his 80th birthday.  He was still mentally aware, and remained that way through this week.  We still don&#8217;t have any details on his funeral.  I&#8217;m hoping we get them soon enough to make plans to travel to Iowa.</p>
<p>Sorry for the rough stream of conciousness post.  My head&#8217;s not all here.</p>
<p><a href="http://www.wildcoyote.org/gallery/des_moines/img_1889"><img class="alignnone" title="grandpa" src="http://www.wildcoyote.org/albums/des_moines/img_1889.thumb.jpg" alt="" width="150" height="113" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/06/12/richard-s-rest-in-peace/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vacation notes (3 of N)</title>
		<link>http://www.fenris.org/2009/06/07/vacation-notes-3-of-n</link>
		<comments>http://www.fenris.org/2009/06/07/vacation-notes-3-of-n#comments</comments>
		<pubDate>Mon, 08 Jun 2009 01:58:22 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=937</guid>
		<description><![CDATA[May 24: Memorial day weekend is in full swing and there are idiots everywhere.  I swear that the older I get, the more I sympathize with my father&#8217;s dislike of crowds.  We braved a bit of the crowd (keeping in mind that we&#8217;re already in the least crowded part of the park) and went up [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><strong>May 24: </strong>Memorial day weekend is in full swing and there are idiots everywhere.  I swear that the older I get, the more I sympathize with my father&#8217;s dislike of crowds.  We braved a bit of the crowd (keeping in mind that we&#8217;re already in the least crowded part of the park) and went up to Floating Island Lake to see if the sandhill cranes were nesting.  When we got there, a coyote was crossing behind the lake and the cranes, who were on the shore at the time, were putting on quite a display: loud squawks (or whatever noise cranes make), spread wings, raised heads, etc.  Basically, everything a crane can do to tell a coyote to go away&#8230; which he did.  There weren&#8217;t any eggs in the nest yet, so we left and decided to get away from everybody by hiking the Lamar Trail.  That was a very nice hike, we only saw one other group of people, but we did see many hawks and bluebirds.  We got down to Cache Creek and stayed for a while.  The rain didn&#8217;t start until we were a mile and a half down the trail home.  That would be great, except that it left us another 2 miles back.  We did have rain gear, but it isn&#8217;t very good and doesn&#8217;t breathe well, so we didn&#8217;t put it on.  Between the lack of rain gear and my putting my hat on the camera, we arrived back to the car tired and soaked, but happy.  A wet day of hiking is still better than crowds.
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=10022&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10024&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5630" title="dsc_5630" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10031&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10033&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5667" title="dsc_5667" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10010&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10012&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5703" title="dsc_5703" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10019&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10021&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5733" title="dsc_5733" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10016&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10018&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5740" title="dsc_5740" /></a></li>
<li><strong>May 25: </strong>Memorial Day itself.  There&#8217;s no way I&#8217;m going anywhere potentially crowded.  We did decide to do a few short hikes to get some pictures.  I went a short distance down the Lamar Trail to get some shots from the foot bridge.  We drove up to Tower Falls (saw a fox on the drive up there).  Unfortunately, the trail down to the base of the falls is still closed, as it has been for 5 years now.  You can hike down a half mile, but there&#8217;s not much to see.  That&#8217;s a bit of a shame, since Tower Falls is one of the nicer falls in the park.  <strong>Warning: don&#8217;t try this, it&#8217;s dangerous. </strong>So, getting fed up with the closure, I slipped over the barrier when no one was looking (for the record, this doesn&#8217;t appear to be illegal, just dumb) and hike the last tenth of a mile to the base.  FWIW, I can see why the trail is closed.  There are places where the trail is only 6 &#8211; 8&#8243; wide (<a href="http://www.lyricstime.com/arlo-guthrie-the-motorcycle-song-de-arlo-lyrics.html">on one side of the mountain road there was a mountain, and on the other side there was nothin&#8217; &#8211; there was a cliff in the air</a>) and other places where there were trees down across what was left of the trail.  That said, it was definitely worth it to see the base of the falls again.  After that, we hiked up to Lost Creek Falls (behind Roosevelt Lodge).  On the way back to the cabin, we stopped by Baronette Peak and spotted a few mountain goats.  That evening, we went out into the park and saw two wolves in the valley.  We must have watched them for over an hour &#8211; there was a great deal of very dog-like behavior.  The subordinate licking the dominant one&#8217;s mouth.  The dominant one standing over the subordinate, etc.  We found it very interesting to watch &#8211; as did a coyote that was following the wolves in order to see when it would be safe to feed off of a nearby kill.
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=10040&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10042&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5752" title="dsc_5752" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10025&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10027&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5766" title="dsc_5766" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10037&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10039&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5774" title="dsc_5774" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10028&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10030&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="101"  height="150"  alt="dsc_5790" title="dsc_5790" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10013&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10015&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="101"  height="150"  alt="dsc_5815" title="dsc_5815" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10034&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10036&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_5864" title="dsc_5864" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10052&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10054&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_6022" title="dsc_6022" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10067&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10069&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_6072" title="dsc_6072" /></a></li>
<li><strong>May 26: </strong>It&#8217;s the day after Memorial Day&#8230; should be safe to go to Mammoth, right?  Nope, trick question.  There are always crowds at Mammoth.  On the drive up, we ran across a fairly large bear-jam, so we found a place to pull off in order to see what the fuss was about.  Turned out to be a young grizzly, maybe 40 yards from the road.  He had been bathing (missed that) and was climbing on a rock to dry a bit.  We stayed for a while, until the rangers had everyone leave since this bear had charged someone the other day.  Mammoth seemed dry.  More accurately, the water continually moves and has been moving away from the standard board walk areas for years now.  While we were looking at one of the features, we saw some college student reach into his pocket and when he pulled his hand out, his keys went flying onto the thermal ground where he had to retrieve it.  Probably my biggest impression from Mammoth was that it reminds me of one of the central themes from Gulliver&#8217;s Travels, that humans are comical when viewed from afar and grotesque when viewed up close.  Both aspects were on display at Mammoth (and in fairness, pretty much anywhere that people gather in numbers).  On the drive back, we watched a wolf crossing the road behind us.  Nothing too exciting that evening, a bear and two (though I only saw one) cubs.
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=10055&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10057&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_6196" title="dsc_6196" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10058&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10060&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_6281" title="dsc_6281" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10073&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10075&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_6287" title="dsc_6287" /></a></li>
<li><strong>May 27: </strong>We went out and hiked Garnet Hill today.  There wasn&#8217;t too much wildlife.  We did see a day old wolf kill at the start of the trail, but there were only ravens on it.  We saw lots of marmots, as always.  Overall, the hike took longer than it should have.  We&#8217;ll need to allocate more time next year.  That evening, we saw a moose and her newborn (that day?) calf across from Trout Lake.  People believe that the moose was attacked by wolves (or bear) and then had the calf shortly thereafter.  The calf was fine, but the moose was a bit torn up, we hoped they would make it.  In the valley we watched a grizzly for a while.  It seemed that he was limping.  We ran into a griz researcher who confirmed that the bear was injured.  The researcher had a baited trap on the south side of the valley.  He hoped that the bear would follow that so that they could provide some help.
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=10049&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10051&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="101"  height="150"  alt="dsc_6416" title="dsc_6416" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10061&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10063&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_6478" title="dsc_6478" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10046&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10048&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_6566" title="dsc_6566" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10070&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=10072&#038;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" width="150"  height="101"  alt="dsc_6608" title="dsc_6608" /></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/06/07/vacation-notes-3-of-n/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vacation notes (2 of N)</title>
		<link>http://www.fenris.org/2009/06/03/vacation-notes-2-of-n</link>
		<comments>http://www.fenris.org/2009/06/03/vacation-notes-2-of-n#comments</comments>
		<pubDate>Thu, 04 Jun 2009 01:54:57 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=932</guid>
		<description><![CDATA[May 20: In the morning, we saw a small herd of bighorn sheep near the Yellowstone Picnic Area.  Later on, we saw a grizzly bear hanging out in the Lamar Valley: sleeping, grazing and hanging out.  Heading back into the cabin for dinner, we talk to our host.  He&#8217;s going through a nasty divorce which [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><strong>May 20: </strong>In the morning, we saw a small herd of bighorn sheep near the Yellowstone Picnic Area.  Later on, we saw a grizzly bear hanging out in the Lamar Valley: sleeping, grazing and hanging out.  Heading back into the cabin for dinner, we talk to our host.  He&#8217;s going through a nasty divorce which may wind up causing them to lose their business (for reasons I shouldn&#8217;t get into).  Helpful hint: if you&#8217;re going into business with someone, even a spouse, set up an LLC.  You don&#8217;t want everything to be owned jointly.  In the evening we see still more grizzly.  It&#8217;s apparently a grizzly year &#8211; it looks like we&#8217;re going to have to cruise the Tower Junction area if we want to see any black bears.  On the way home that evening, we saw three moose by the side of the road.  I got out and took a few pictures which were (at best) okay given the lack of light.  Neater than the pictures though, was hearing them tear off the plants and chewing them.  That was very cool.
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=9959&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_4885" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9961&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_4885" width="150" height="101" /> </a><a href="http://www.fenris.org/photography/gallery?g2_itemId=9962&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5101" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9964&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5101" width="150" height="101" /> </a><a href="http://www.fenris.org/photography/gallery?g2_itemId=9965&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5130" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9967&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5130" width="150" height="101" /></a></li>
<li><strong>May 21:</strong> We saw quite a few pronghorn hanging out in the Lamar Valley.  They&#8217;re very pretty animals, and hey&#8230; they can run 60 miles an hour.  As mentioned yesterday, we wanted to head up to the Tower area to scout for black bear and to check out some nests we&#8217;ve seen in year&#8217;s past.  No perregrin falcon, no owl&#8217;s nest, but the osprey did have a nest again.  After Tower, we headed back into the valley to go and hike Trout Lake.  On the way, we ran across a wolf out in the middle of the day.  He was trying to cross the Soda Butte creek.  It took him a while, but he finally managed it.  Anyway, Trout Lake is a pretty little lake up in the hills on the north-east side of valley.  A short hike, maybe .6 miles to it, but it&#8217;s all vertical (not literally, but trust me&#8230; it&#8217;s H for horrible, particularly at 7000 ft above sea level).  Anyway, we hiked up to the lake and around a bit.  There was still snow up there and several different ducks (Barrow&#8217;s Goldeneye and a Cinnamon Teal) as well as a Canada Goose (which became something of a trip joke since the geese were everywhere).  We didn&#8217;t see any otter this year, but&#8230;  That evening, we headed back into the park&#8230; more moose and bear (black and griz).  We also got some good beaver shots near the Confluence.  Someone told us about an owl&#8217;s nest in the canyons to the west of the valley.  We headed over that way and found the nest.  Couldn&#8217;t identify the owl species.   Finally, as the sun was setting and we were losing the light, we watched a wolf chasing a coyote and then making a herd of elk nervous in the hills along the north of the valley.
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=9989&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5186" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9991&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5186" width="150" height="101" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=9977&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5236" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9979&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5236" width="150" height="101" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=9983&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5256" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9985&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5256" width="150" height="101" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=9980&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5269" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9982&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5269" width="150" height="101" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=9986&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5356" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9988&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5356" width="150" height="101" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=9992&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5424" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9994&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5424" width="150" height="101" /></a></li>
<li><strong>May 22: </strong>Our anniversary!  16 years &#8211; it&#8217;s hard to believe (it&#8217;s also hard not to type the joke about having been happily married for 6 years now&#8230; <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ).  Given how warm it was, we thought a nice hike under the trees would be good, so we planned to hike Lost Lake.  Along the way, we stopped at the &#8220;owl&#8217;s&#8221; nest.  Turned out to be a red-tail hawk &#8211; still cool, but not really an owl.   After the nest, we drove up to Tower Junction, crossed the barrier to the (closed) Roosevelt Lodge and started the hike.  We took the trail up to the Lake and then over to the Petrified Tree.  There weren&#8217;t too many animals on the hike, but it was still a lot of fun.  On the drive back, we saw a young (yearling?) grizzly at the Confluence.  As we were watching, he got spooked (by a pronghorn I think) and took off running &#8211; very odd.  For our anniversary dinner, we went by the &#8220;fancy&#8221; restaurant in Cooke City &#8211; the Bistro.  The food was excellent, but by the time we finished, it was a bit late to head back into the park.
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=9995&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5524" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9997&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5524" width="150" height="101" /></a></li>
<li><strong>May 23: </strong>Laundry day (~/o <a href="http://drhorrible.com/linernotes.html#freezeray">See you there.  Under things, tumbling</a>. o/~).  We asked our cabin host if he knew of a public laundrymat (other than the one we usually use which is kinda nasty) and he let us use his washer/dryer.  That freed us up to drive up to the Beartooth Pass, which had just opened for the season.  There were way too many people up there &#8211; it turns out that it was some sort of festival(-ish).  Oh well, it was still pretty, with lots of snow.  The evening was quiet, but we did watch a black bear sow and her two cubs rooting around in the valley.
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=9998&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5572" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10000&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5572" width="150" height="101" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10001&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5587" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10003&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5587" width="150" height="101" /></a><a href="http://www.fenris.org/photography/gallery?g2_itemId=10004&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="dsc_5611" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=10006&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_5611" width="150" height="101" /></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/06/03/vacation-notes-2-of-n/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vacation notes (1 of N)</title>
		<link>http://www.fenris.org/2009/06/01/vacation-notes-1-of-n</link>
		<comments>http://www.fenris.org/2009/06/01/vacation-notes-1-of-n#comments</comments>
		<pubDate>Tue, 02 Jun 2009 02:33:37 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=926</guid>
		<description><![CDATA[As mentioned previously, K and I have been out on vacation for the past two weeks &#8211; no phone (okay, there was voicemail), no email, and really very little in the way of computers.  I did take some notes, because, unfortunately, my memory is exactly what it used to be: bad. May 16: An inauspicious [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned previously, K and I have been out on vacation for the past two weeks &#8211; no phone (okay, there was voicemail), no email, and really very little in the way of computers.  I did take some notes, because, unfortunately, my memory is exactly what it used to be: bad.</p>
<ul>
<li><strong>May 16:</strong> An inauspicious start to a vacation.  Neither K nor I were particularly in the mood for heading out of town.  We were seriously contemplating not going next year and possibly even forgoing the plane fare this year and bailing.  I had been putting in too many hours working on a project for work, and K was have some difficult times with her rehab.  That said, we dropped of the dogs and headed out to RDU.  Unfortunately, the Delta/Northwest merger meant that instead of taking RDU-&gt;MSP-&gt;BZN flights, we were taking RDU-&gt;ATL-&gt;MSP-&gt;BZN (yes, 3 flights) and upon checking in, it seemed that we were going to be delayed in getting to Atlanta <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />   Well, that worked out okay.  We got into ATL at 5:30 and our MSP flight left at 6:35.  Oh wait, no &#8211; it, too, was late and left at 8:00pm.  That meant that in spite of the assurances of several Delta and Northwest agents, we landed at MSP at 9:30 &#8211; the same time the BZN flight left.  Well, it turns out that we weren&#8217;t the only ones in that situation (&#8216;and if you ever find yourself in that situation, there&#8217;s only one thing you can do: sing a few bars of &#8220;Alice&#8217;s Restaurant&#8221;&#8216;).  Delta left 17 of us stranded in MSP, while their computers showed that they were only stranding 3.  Delta proposed routing many of us to Salt Lake City (SLC?) where we could catch a flight to BZN in the morning.  Of course, unless we were flying first class, we would have to eat the costs of staying in SLC.  One woman vociferously complained (though it later turned out that she had already been booked for a morning flight to SLC).  When we arrived at SLC, they had hotel and meal vouchers waiting for us (score!).  So a night at a very gracious Comfort Suites capped the day.  FWIW, on the IT front, the Delta/NW merger has been pathetic &#8211; at every point where a user interacts with their computers, they have a front-end which redirects you to the appropriate computer system: Delta or Northwest.  It&#8217;s no wonder they can&#8217;t figure out that they stranded 17 people, they can&#8217;t even make good sense of their different flight numbers!</li>
<li><strong>May 17: </strong>Relatively uneventful.  We grabbed the shuttle to the airport.  SLC is apparently one of the few airports now invading your privacy by looking at your privates through millimeter radar.  They redirected our line through the system where they had you enter the scanner.  They proceeded to use the Twister spinners to dictate how you place your hands above your head while performing a pelvic thrust for the sensors, then getting annoyed when you didn&#8217;t understand the first time that you should pretend to be flashing teenage school girls in order to get the posture correct.  Once it was done, they had to fondle your pocket regions.  No, that&#8217;s not a euphemism.  The wavelength of the radar is apparently too short to penetrate the pockets on (men&#8217;s?) pants and they then have a pissy highschool educated TSA weenie with delusions of grandeur frisk your pockets.  FWIW, I&#8217;m equally pissed at myself that I went through the damn thing.  I should have insisted on a pat-down.  If someone is going to violate my person, I want to get a good look at &#8216;em while they are doing it.  Having the person sit in an anonymous room getting their jollies just isn&#8217;t cool.  So, once we got through the faux-security checkpoint, we ran into the woman who complained in MSP (and got us free lodging)!  We made it to BZN &#8211; though our luggage didn&#8217;t, rented a RAV4 and went to our hotel.  The luggage showed up around 5pm.  Lucky for Delta, otherwise, they could have had it delivered to our final destination, Cooke City &#8211; 3 hours away.</li>
<li><strong>May 18: </strong>bought supplies and headed into Yellowstone.  We didn&#8217;t see much on the drive in and we didn&#8217;t go out to the park in the evening: too tired.  The beds were great (pillowtop mattresses) and the kitchen was very nice.  I wasn&#8217;t too sure about having a TV in the room, but having a phone that we could use after hours was nice.</li>
<li><strong>May 19: </strong><a href="http://www.fenris.org/photography/gallery?g2_itemId=9953&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img class="g2image_float_right" title="dsc_4817" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9955&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_4817" width="150" height="101" /></a>First real day in the Park.  We did get a late start in the morning, but the viewing was great.  We saw a wolf on the northern ridge above the Lamar valley.  People were saying that he was a part of the same group that killed several coyote pups in the valley the night before.  We saw a grizzly bear, a coyote, a bald eagle and a golden eagle (on a old kill).  That evening we went out again, we saw two grizzly and lots of bison with their young calves, also a very nice scenic view, complete with DRAMATIC LIGHTING.   (* all of the images in this series are original jpegs without the color correction, etc. that will be applied later)<a href="http://www.fenris.org/photography/gallery?g2_itemId=9956&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img class="g2image_float_left" title="dsc_4826" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9958&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_4826" width="150" height="101" /></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/06/01/vacation-notes-1-of-n/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Weather is here, wish you were beautiful</title>
		<link>http://www.fenris.org/2009/05/30/weather-is-here-wish-you-were-beautiful</link>
		<comments>http://www.fenris.org/2009/05/30/weather-is-here-wish-you-were-beautiful#comments</comments>
		<pubDate>Sun, 31 May 2009 01:25:39 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=924</guid>
		<description><![CDATA[K and I just got back from vacation &#8211; your regular, intermitant blogging will resume shortly.  I don&#8217;t think there has been anything new posted since late April.  The first couple of weeks of May, I was tied up at work, getting ready for the last two weeks when we were to be in Yellowstone.  [...]]]></description>
			<content:encoded><![CDATA[<p>K and I just got back from vacation &#8211; your regular, intermitant blogging will resume shortly.  I don&#8217;t think there has been anything new posted since late April.  The first couple of weeks of May, I was tied up at work, getting ready for the last two weeks when we were to be in Yellowstone.  So, having left Bozeman, MT this morning on a 6am flight, we&#8217;re back in NC.  I&#8217;m sorry for the lack of warning up front, I just hate announcing to the world that I won&#8217;t be in town for two weeks.  <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/05/30/weather-is-here-wish-you-were-beautiful/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memento mori</title>
		<link>http://www.fenris.org/2009/04/29/memento-mori</link>
		<comments>http://www.fenris.org/2009/04/29/memento-mori#comments</comments>
		<pubDate>Wed, 29 Apr 2009 17:06:46 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=915</guid>
		<description><![CDATA[It&#8217;s definitive &#8211; we are having a 20th year high school reunion.  I&#8217;m not entirely certain how I feel about the whole thing.  Thinking back, I don&#8217;t have too many fond memories of high school.  In fairness, I don&#8217;t do well with event-type recollection, so I don&#8217;t have too many memories in general from that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=9947&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img class="g2image_float_left" title="Memento Mori" src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9949&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="StillLifeWithASkull" width="150" height="111" /></a>It&#8217;s definitive &#8211; we are having a <a href="http://www.fenris.org/2009/04/03/eeek">20th year high school reunion</a>.  I&#8217;m not entirely certain how I feel about the whole thing.  Thinking back, I don&#8217;t have too many fond memories of high school.  In fairness, I don&#8217;t do well with event-type recollection, so I don&#8217;t have too many memories in general from that period, but my overall sense is that the past 20 years have been much better than the 3 at CLA.  I will admit to a certain morbid curiousity about the reunion and my high school classmates.  General predictions: 1) the correlation of popularity to success is less than or equal to zero; 2) while we are all adults and more than twice our age at graduation, cliques will reform immediately at the reunion; 3) people who enjoyed high school will have a better time at the reunion than those who didn&#8217;t; and 4) I&#8217;m one of the most, if not <em>the most</em>, liberal members of our graduating class.  <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I still don&#8217;t know if I&#8217;ll try to go to the reunion or not, but either way, I&#8217;ve thought more about high school this past week than I have in a decade.  If I hadn&#8217;t thrown out the year books (I think), I might go through them and see what all I&#8217;m forgetting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/04/29/memento-mori/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Harvest time!</title>
		<link>http://www.fenris.org/2009/04/20/harvest-time</link>
		<comments>http://www.fenris.org/2009/04/20/harvest-time#comments</comments>
		<pubDate>Tue, 21 Apr 2009 04:32:03 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=902</guid>
		<description><![CDATA[For the first time in about 10 years I planted a garden.  We are always drawn to shaded lots, so we&#8217;ve never had a place for one before.  Even here we&#8217;ve got five acres&#8230; and they are all wooded.  Normally?  Great.  For a garden, it&#8217;s kinda the suck.  This year, I decided to plant a [...]]]></description>
			<content:encoded><![CDATA[<p>For the first time in about 10 years I planted a garden.  We are always drawn to shaded lots, so we&#8217;ve never had a place for one before.  Even here we&#8217;ve got five acres&#8230; and they are all wooded.  Normally?  Great.  For a garden, it&#8217;s kinda the suck.  This year, I decided to plant a garden in the right-of-way/frontage and the heck with what the neighbors think.  So, raised beds to avoid the clay soil problems, fencing to keep the deer out (btw &#8211; know any bow hunters?  I may be a vegetarian, but the deer are getting on my nerves), and we&#8217;re set to go.</p>
<p>I began planting late winter/early spring crops back in February and they&#8217;re starting to come into harvest.  The picture below is from a week ago and the plants have since grown significantly larger.  Last week we did an arugula [1] and basil pesto, this week it&#8217;s been a salad and probably spinach quiche [2].  I think that by the time everything starts to bolt, it&#8217;ll be warm enough for summer vegetables.</p>
<p><a href="http://www.fenris.org/photography/gallery?g2_itemId=9482&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="It's not the size of the garden... it's how you plant it." src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=9482&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="dsc_4635" /></a></p>
<p>Let&#8217;s see, clockwise from the bottom right, the boxes are growing: 1) spinach, arugula and leeks; 2) kale, lettuce and a mesclun mix (not to be confused with mescaline &#8211; that&#8217;s a completely different plant <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ); 3) broccoli, beets and fennel; and 4) peas, carrots and turnips.  Yeah, I went a bit overboard.  I figure that we&#8217;ve got about a month for harvest, the kale/lettuce/mesclun will wrap up first.  Last will be the broccoli/fennel/beets plus the leeks which won&#8217;t finish developing until late summer.</p>
<p>Footnotes:</p>
<p>[1] It seems like every liberal type I know who has planted a garden is growing arugula.  FWIW, I suspect there are two reasons for this: 1) it&#8217;s awesome, and 2) it&#8217;s a big FU to the republicans who thought that &#8220;arugula eater&#8221; was an insult.  If it makes you happier, call it rocket &#8211; the southern corruption of roquette.</p>
<p>[2] Yeah, don&#8217;t give me that &#8220;real men&#8221; b.s.  We&#8217;re talking about a meal with a pie crust, cheese, cream and 3 or 4 eggs.  It&#8217;s a heart attack waiting to happen, which as near as I can tell is what makes it something a &#8220;real man&#8221; would eat <img src='http://www.fenris.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/04/20/harvest-time/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Eeek!</title>
		<link>http://www.fenris.org/2009/04/03/eeek</link>
		<comments>http://www.fenris.org/2009/04/03/eeek#comments</comments>
		<pubDate>Fri, 03 Apr 2009 16:06:54 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=895</guid>
		<description><![CDATA[Some of the more social people from my high school class in Louisiana are apparently putting together a reunion.  They&#8217;ve managed to track down maybe 90+% of the class and have just sent out a (scanned?) copy of the senior class photo.  I defy you to find more 80&#8242;s hair in a picture.  The sad [...]]]></description>
			<content:encoded><![CDATA[<p>Some of the more social people from my high school class in Louisiana are apparently putting together a reunion.  They&#8217;ve managed to track down maybe 90+% of the class and have just sent out a (scanned?) copy of the senior class photo.  I defy you to find more 80&#8242;s hair in a picture.  The sad thing is that I can&#8217;t put names to the majority of people here.  Maybe 10 at most.  I guess that either means there&#8217;s no point in going to the reunion or that I really, really need to go.</p>
<p><a title="Apparently my high school senior class picture - or something like it." rel="lightbox[g2image]" href="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=3361&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT"><img title="Apparently my high school senior class picture - or something like it." src="http://www.fenris.org/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=3363&amp;g2_GALLERYSID=TMP_SESSION_ID_DI_NOISSES_PMT" alt="CLA-1989" width="150" height="105" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/04/03/eeek/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>April Fools Day</title>
		<link>http://www.fenris.org/2009/04/01/april-fools-day</link>
		<comments>http://www.fenris.org/2009/04/01/april-fools-day#comments</comments>
		<pubDate>Wed, 01 Apr 2009 14:44:29 +0000</pubDate>
		<dc:creator>cec</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.fenris.org/?p=891</guid>
		<description><![CDATA[I&#8217;m never a big fan of April Fools day, mostly because I&#8217;m too guilible for my own good.  That said, on occasion I get in the mood.  This year, a colleague and I discussed sending out an email to the staff of our company, regarding the IT infrastructure.  We got permission from the boss, because, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m never a big fan of April Fools day, mostly because I&#8217;m too guilible for my own good.  That said, on occasion I get in the mood.  This year, a colleague and I discussed sending out an email to the staff of our company, regarding the IT infrastructure.  We got permission from the boss, because, well just because.  Here&#8217;s the text that we sent out:</p>
<blockquote><p>April 1, 2009</p>
<p>Dear Employees of XXX,</p>
<p>We have been tasked by XXX&#8217;s management to identify appropriate solutions for XXX&#8217;s computing needs.  As you may know, Microsoft will be terminating it&#8217;s support for Windows XP.  With complaints about Windows rising, and the looming lack of support for XP, we began considering a company-wide migration to Linux.  However, Linux is based on the Unix (Posix) standard which is almost 40 years old.  For that reason, we have settled on the latest operating system from the same inventors: Plan 9 from Bell Labs.  http://plan9.bell-labs.com/plan9/</p>
<p>Plan 9 is the latest in research operating systems and should be a great fit with the work we perform at XXX.  That said, Plan 9 may not support all hardware that we own.  In order to ensure a painless transition, we ask that all employees review the Plan 9 &#8220;Supported PC Hardware&#8221; page at http://plan9.bell-labs.com/wiki/plan9/Supported_PC_hardware/index.html</p>
<p>Fortunately, Plan 9 has a large supported software base.  Common software such as Python, GCC and TeX are fully supported in Plan 9.  Other POSIX programs can be compiled through the use of APE<br />
(http://plan9.bell-labs.com/sys/doc/ape.html).  Common desktop tasks such as word processing and web browsing can be accomplished through the pre-installed OpenOffice (a MS Office clone) and one of the Plan 9 web-browsers (Mothra, Abaco or Charon), respectively.  Unfortunately, Mathworks, has not yet seen fit to port Matlab to Plan 9.  We are confident that by using APE, we will be able to port Octave as an<br />
acceptable alternative.  This transition will have the added benefit of drastically reducing our licensing costs.</p>
<p>We anticipate that this transition will benefit XXX greatly in the long run and that you will grow to love the Plan 9 experience.  We look forward to working with you over the next twelve months and anticipate<br />
completing the migration by the next April Fool&#8217;s Day, April 1st 2010.</p>
<p>Insincerely,<br />
Chris and Mark</p></blockquote>
<p>We did have at least one person think we were serious and a couple of people that we had going until they finished the email.  All in all, not too bad for a half hour&#8217;s work last night.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fenris.org/2009/04/01/april-fools-day/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
