<?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>Brews you can use &#187; Farts &amp; Seizure</title>
	<atom:link href="http://mikk.net/log/cat/farts-seizure/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikk.net/log</link>
	<description>Life, the Universe, and beer... lots of beer...</description>
	<lastBuildDate>Mon, 25 Jan 2010 02:47:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Idle Hands &#8230;</title>
		<link>http://mikk.net/log/2009/09/15/idle-hands/</link>
		<comments>http://mikk.net/log/2009/09/15/idle-hands/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 06:57:18 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/?p=158</guid>
		<description><![CDATA[Since Jess&#8217;s Cross-Check was singled, we have a set of bar-end shifters, front and rear derailleurs, and a rear wheel left over.  Also, I&#8217;ve been feeling the need for a good geared road bike.  Hmm, Shifters, derailleurs, rear wheel.  Just need a few more parts for a full bike.  Let&#8217;s see&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>Since Jess&#8217;s Cross-Check was singled, we have a set of bar-end shifters, front and rear derailleurs, and a rear wheel left over.  Also, I&#8217;ve been feeling the need for a good geared road bike.  Hmm, Shifters, derailleurs, rear wheel.  Just need a few more parts for a full bike.  Let&#8217;s see&#8230; just need a frame and a front wheel.  Oh, and headset, stem, bars, brakes, levers, seatpost, &#8230; Darn, that&#8217;s most of a bike, isn&#8217;t it?</p>
<p>In other words, &#8220;If we had ham we could have ham and eggs, if we had eggs.&#8221;  </p>
<p>That little joke describes so many projects perfectly.  I haven&#8217;t been able to find a reliable attribution, so it may be a well-known linguistic torture device like &#8220;<a href="http://en.wikipedia.org/wiki/Buffalo_buffalo_Buffalo_buffalo_buffalo_buffalo_Buffalo_buffalo">Buffalo buffalo Buffalo buffalo buffalo buffalo Buffalo buffalo</a>.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2009/09/15/idle-hands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>There must be a name for this&#8230;</title>
		<link>http://mikk.net/log/2009/05/01/there-must-be-a-name-for-this/</link>
		<comments>http://mikk.net/log/2009/05/01/there-must-be-a-name-for-this/#comments</comments>
		<pubDate>Sat, 02 May 2009 02:40:34 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Computers & Internet]]></category>
		<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/?p=136</guid>
		<description><![CDATA[Of course, it would have to be random geekery which brings this blog out of hibernation.  Some things just don&#8217;t fit in a facebook status.
I spent a bit of time today digging through the FreeRADIUS source code and stumbled across the following new-to-me C idiom:


switch(n) {
case FOO:
    if (condition) {
  [...]]]></description>
			<content:encoded><![CDATA[<p>Of course, it would have to be random geekery which brings this blog out of hibernation.  Some things just don&#8217;t fit in a facebook status.</p>
<p>I spent a bit of time today digging through the <a href="http://www.freeradius.org">FreeRADIUS</a> source code and stumbled across the following new-to-me C idiom:</p>
<blockquote><p><code>
<pre>
switch(n) {
case FOO:
    if (condition) {
         /* stuff */
    } else {
case BAR:
        /* more stuff */
    }
}
</pre>
<p></code></p></blockquote>
<p>The switch statement in C is notoriously powerful and prone to such abuse &#8212; see <a href="http://catb.org/~esr/jargon/html/D/Duffs-device.html">Duff&#8217;s device</a> for a particularly infamous example &#8212; and I almost filed this in that category.</p>
<p>On further thought, though, this is actually painfully elegant.  The effect of the statement is roughly &#8220;if case FOO and condition, do stuff, otherwise handle just like case BAR&#8221;, but it doesn&#8217;t require you to repeat the code for BAR like:</p>
<blockquote><p><code>
<pre>
switch(n) {
case FOO:
    if (condition) {
        /* stuff */
    } else {
        /* more stuff */
    }
    break;
case BAR:
    /* more stuff, again */
}
</pre>
<p></code></p></blockquote>
<p>or cheekily fallthrough as in:</p>
<blockquote><p><code>
<pre>
switch(n) {
case FOO:
    if (condition) {
        /* stuff */
        break;
    }
case BAR:
    /* more stuff */
}
</pre>
<p></code></p></blockquote>
<p>The interleaved statements are weird enough to convey what&#8217;s going on in a way that a simple <code>/* FALLTHROUGH */</code> comment does not.</p>
<p>Duff said of his eponymous device &#8220;This code forms some sort of argument in [the fallthrough] debate, but I&#8217;m not sure whether it&#8217;s for or against.&#8221;  Duff&#8217;s device was good for only a performance improvement, but this one improves clarity, almost.  I think that&#8217;s a &#8220;for&#8221;.  I&#8217;m going to have to use this one.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2009/05/01/there-must-be-a-name-for-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I less than 3 google video&#8230;</title>
		<link>http://mikk.net/log/2008/12/07/i-less-than-3-google-video/</link>
		<comments>http://mikk.net/log/2008/12/07/i-less-than-3-google-video/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 02:32:51 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Computers & Internet]]></category>
		<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/?p=113</guid>
		<description><![CDATA[Flipping channels Saturday morning, I caught the end of an enthusiastic and illuminating description of Rutherford&#8217;s scattering experiment.  Very interesting.  This was part of a three-part documentary series &#8220;Atom&#8221;, which was only being broadcast that morning.  Drat, I&#8217;d missed the first half hour, and couldn&#8217;t monopolize the TV for the next two [...]]]></description>
			<content:encoded><![CDATA[<p>Flipping channels Saturday morning, I caught the end of an enthusiastic and illuminating description of <a href="http://en.wikipedia.org/wiki/Geiger-Marsden_experiment">Rutherford&#8217;s scattering experiment</a>.  Very interesting.  This was part of a three-part documentary series &#8220;Atom&#8221;, which was only being broadcast that morning.  Drat, I&#8217;d missed the first half hour, and couldn&#8217;t monopolize the TV for the next two and a half hours to catch this.</p>
<p>Well, the host of this documentary <em>did</em> have a British accent, and I had watched <a href="http://abstrusegoose.com/65/">this</a> excellent BBC-broadcast science documentary on Google video, so I checked there to see if it was available.</p>
<p>Sure enough:</p>
<p>Atom, Part 1<embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=-7694154455816736507" style="width:400px;height:326px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"></p>
<p>Atom, Part 2</embed><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=-5003968210604570515" style="width:400px;height:326px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"></p>
<p>Atom, Part 3</embed><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=-8533827560077385330" style="width:400px;height:326px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"></p>
<p>Good stuff, probably some of the best popular science programming I&#8217;ve seen in a while.</embed></p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2008/12/07/i-less-than-3-google-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ooouuuch&#8230;</title>
		<link>http://mikk.net/log/2008/06/18/ooouuuch/</link>
		<comments>http://mikk.net/log/2008/06/18/ooouuuch/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 04:39:51 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/?p=110</guid>
		<description><![CDATA[So, last Thursday the ol&#8217; wisdom teeth started acting up and I finally went to have them out that Friday.  I was put under, so &#8220;ow, needle!&#8221;&#8230;&#8221;I go sleep now&#8221;&#8230;&#8221;Mr. Mikkelson, you&#8217;re done, the recovery room is this way&#8221;.  After a few minutes laying down, I thought &#8220;hey, this is only a few [...]]]></description>
			<content:encoded><![CDATA[<p>So, last Thursday the ol&#8217; wisdom teeth started acting up and I finally went to have them out that Friday.  I was put under, so &#8220;ow, needle!&#8221;&#8230;&#8221;I go sleep now&#8221;&#8230;&#8221;Mr. Mikkelson, you&#8217;re done, the recovery room is this way&#8221;.  After a few minutes laying down, I thought &#8220;hey, this is only a few whiskeys level of drunkenness&#8221; and sat up and started walking around.  One of the doctor&#8217;s assistants asked if I wanted to wait out front.  I said &#8220;sure&#8221;, then my lip drooped from all the novocaine, and I felt a little dribble of blood come out.  I knew how <b>I</b> would feel sitting in the waiting room next to a large woozy, blood-drooling guy with a mouth full of gauze, and thought better of it, and went back to lay down.  Then Jess and the kids came and picked me up, got me some meds, I started on the painkillers, and all was good (if a bit unclear at times).</p>
<p>I thought I was recovering pretty quickly, and went back to work on Tuesday, complete with a couple gently-devoured bagels in the morning.  Perhaps that was a bit premature.  Today, I had a nice not-so-gently-devoured Gyro for a late lunch and wound up losing quite a bit of it in a hole that shouldn&#8217;t be there.  Fsck.  Dry socket?<br />
So I&#8217;ve been worrying about that crap all day, instead of looking forward to a nice kid-free weekend with Jess.</p>
<p>At least the serious pain hasn&#8217;t set in.  It&#8217;s mostly the fear of what may come if I can&#8217;t get back to the oral surgeon in time, and how much longer it&#8217;ll be until I can eat proper solid food without worry (there goes the idea of a nice dinner out <img src='http://mikk.net/log/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  ).</p>
<p>To distract myself from this, and keep me away from the painkillers for a little while longer, I did a little bit of bike stuff.  I had bought a nice &#8220;just for fun&#8221; bike (a Kona <a href="http://www.klassickona.com/oldgold/2005/humu.jpg">Humuhumunukunukua&#8217;pua&#8217;a deluxe</a>) I off craigslist last week, and dropped it off Monday at County Cycles for a little work (bar swap, chain tension, brake tuneup).  We picked it up this morning, along with some new mountain-y tires for the Humu, and some less mountain-y tires and a rack for Jess&#8217;s mountain bike.   So, I changed tires all this evening rather than freaking about dentistry (yipe!).  It was good.</p>
<p>I&#8217;m pretty excited about the Humu.  It&#8217;s a scaled up version of a beach cruiser, but with a very MTB-like frame and components.  I swapped out the BMX-y riser bar for a more traditional riser, and the flame-patterned cruiser tires with similar-sized Continental Mountain Kings (earworm alert!).  So, now it&#8217;s a respectable single speed mountain bike.  After all the mountain bikes I&#8217;ve owned (ok, two) and turned into utilitarian commuters, I&#8217;ve told myself that this one will actually see some dirt sometime.</p>
<p>Or failing that, some snow, as a winter commuter.  It&#8217;ll be good for that.</p>
<p>Now for some painkillers and the fitful, itchy sleep they bring&#8230;.  Yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2008/06/18/ooouuuch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zoom!</title>
		<link>http://mikk.net/log/2008/06/07/zoom/</link>
		<comments>http://mikk.net/log/2008/06/07/zoom/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 05:37:26 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/?p=109</guid>
		<description><![CDATA[Tonight, we saw some of the first session of the Minnesota Fixed Gear Classic at the NSC Velodrome.  What a blast!  Kids permitting (it was a late night for all) we may catch some of tomorrow&#8217;s races, too, or maybe a Thursday night one sometime this summer.  I could definitely see going [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight, we saw some of the first session of the Minnesota Fixed Gear Classic at the <a href="http://www.nscsports.org/sports/cycling/index.htm">NSC Velodrome.</a>  What a blast!  Kids permitting (it was a late night for all) we may catch some of tomorrow&#8217;s races, too, or maybe a Thursday night one sometime this summer.  I could definitely see going to these semi-regularly, now that I know how darn cool it is we have a Velodrome <img src='http://mikk.net/log/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>It was also a chance to see <a href="http://en.wikipedia.org/wiki/Roberto_Chiappa">Roberto Chiappa</a> in action.  42 mph, yikes!</p>
<p>These races were intended to re-invigorate track cycling in Minnesota.  They definitely have a good start at doing that.  A lot of the people I talked to or overheard in the audience were, like us, first-time attendees and enjoying what they see.  It was even exciting enough to hold the kids&#8217; interest for a few events, although they quickly decided to run their own running and &#8220;roll down the hill&#8221; races behind the bleachers.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2008/06/07/zoom/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Trapped!</title>
		<link>http://mikk.net/log/2008/01/20/trapped/</link>
		<comments>http://mikk.net/log/2008/01/20/trapped/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 06:05:30 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/2008/01/20/trapped/</guid>
		<description><![CDATA[I&#8217;m being mercilessly held down by this:

so I might as well blog, even though I have only one arm free, on the opposite side of me from the computer.  Pqrdin tge typods.
We got a new kitten today, and of course a few cuter pictures than the above.  She still doesn&#8217;t have a name. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m being mercilessly held down by this:<br />
<img src="http://mikk.net/~chris/images/kitten.jpg" alt="kitten sleeping" /><br />
so I might as well blog, even though I have only one arm free, on the opposite side of me from the computer.  Pqrdin tge typods.</p>
<p>We got a new kitten today, and of course a few cuter pictures than the above.  She still doesn&#8217;t have a name.  We&#8217;re kind of trying to get Grace to name her, but she&#8217;s not interested.  Kitten looks a little like our cat Max, and the math geek in me wants to name her Minimax (or Minnie for short).  The computer geek thinks max should have a corresponding Min.  The part of me who shut out exactly the wrong parts of the 80s also contributed &#8220;<a href="http://www.imdb.com/title/tt0091949/">Number 5</a>&#8220;&#8230;  (That part of me has resigned to spend more time with its family and pursue other humor opportunities in the future.)</p>
<p><em>Need more input&#8230;. &lt;bang&gt; &lt;bang&gt; urrrgghhhle&#8230; &lt;thud&gt;</em></p>
<p>IMDB has rumors of a remake.  God help us all, and damn the perpetrators&#8230;</p>
<p>Ah, she awakes!  Freedom is at hand!<br />
<img src="http://mikk.net/~chris/images/kitten2.jpg" alt="kitten awake" /></p>
<p>Oh, false alarm&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2008/01/20/trapped/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New year underway&#8230;. soon.</title>
		<link>http://mikk.net/log/2008/01/09/new-year-underway-soon/</link>
		<comments>http://mikk.net/log/2008/01/09/new-year-underway-soon/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 06:24:39 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/2008/01/09/new-year-underway-soon/</guid>
		<description><![CDATA[The project bike has been sitting in the basement for several weeks waiting for minor tweaks.  I swapped out the handlebars a couple weeks ago, and finally got around to re-running the brake cables and wrapping the handlebars (I think I managed about a quarter-assed tape job, but it&#8217;s my first try).  It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>The project bike has been sitting in the basement for several weeks waiting for minor tweaks.  I swapped out the handlebars a couple weeks ago, and finally got around to re-running the brake cables and wrapping the handlebars (I think I managed about a quarter-assed tape job, but it&#8217;s my first try).  It&#8217;s about where I wanted it, minus:
<ul>
<li>re-dishing the rear wheel for perfect chainline (this gets the job done, though it&#8217;s about 5mm off)</li>
<li>putting on a track cog to give fixed gear riding a shot</li>
<li>getting me in good enough shape to ride single speed.</li>
</ul>
<p>Now I want to take it on my commute tomorrow.</p>
<p>I&#8217;ve only taken the bike to work once so far.  That&#8217;s frustrating, especially since I haven&#8217;t been taking advantage of the beautiful biking weather we&#8217;ve had the last couple days (30s, 40s? Toss on a sweater, keep pedaling, and it&#8217;s quite pleasant).  I did manage a nice mid-20s 20 mile recreational ride on Saturday, though.  That was nice.  I need to do more rides that don&#8217;t begin or end with work :-/</p>
<p>In other news, I think I&#8217;m losing my mind:</p>
<p>Exhibit A: It took me almost an hour to send out an already-written word document as an attachment to some people I work with.  About 15 minutes to draft a quick two sentence commentary, then 45 minutes of scouring the document, making sure it was the right version, that the previous version had been expunged from change tracking, that no included versions contained disparaging comments, profanity, or said &#8220;<a href="http://www.aweekofkindness.com/blog/archives/the_laura_k_krishna_saga/000023.html">I made a doody</a>&#8220;, and that the word document had not been magically replaced by a pornographic image between the last time I checked it and when I hit &#8220;attach&#8221;.</p>
<p>I&#8217;m seriously in the wrong line of work to be this fscking nervous around computers.</p>
<p>Exhibit B: I&#8217;ve been having odd dreams about being dead.  Not disturbing, scary, or even really profound dreams, but actually <em>amusing</em> dreams about death.  I&#8217;m basically going about my day, with everything normal until I eventually figure out that I&#8217;m a ghost.  I try to pick things up.  I <em>think</em> I succeed &#8212; the thing is in my hands, but not on the table &#8212; but eventually it evaporates from my hand and slowly fades back in at its original location.  Aha!, I think, this explains the &#8220;ghost paradox&#8221; (the effect where ghosts in movies can walk through walls but never fall through the floor).</p>
<p>My brain never tells me <em>how</em> this explains it.  I wake up before that part is revealed.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2008/01/09/new-year-underway-soon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>200678!</title>
		<link>http://mikk.net/log/2008/01/01/200678/</link>
		<comments>http://mikk.net/log/2008/01/01/200678/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 05:05:47 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Brewing]]></category>
		<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/2008/01/01/200678/</guid>
		<description><![CDATA[I got a late Christmas present today.  Well, not so much a late Christmas present, but a quarter century delayed inheritance.
My Grandpa died almost 25 years ago, and left some nice wristwatches for me and my cousin.  I was a kid then, and my cousin was less than a year old, so it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I got a late Christmas present today.  Well, not so much a late Christmas present, but a quarter century delayed inheritance.</p>
<p>My Grandpa died almost 25 years ago, and left some nice wristwatches for me and my cousin.  I was a kid then, and my cousin was less than a year old, so it&#8217;s probably for the best that they took this long to get to us.  Mine&#8217;s easily the nicest watch I&#8217;ve owned, and probably ever will own.  I usually go for the sturdy yet disposable inexpensive digital watches, but this is a beautiful mechanical wristwatch made in Switzerland by one of the older Swiss watchmakers.  I&#8217;ve been wearing it since this morning, listening to its rapid ticking, marveling at the fine mechanisms strapped to my wrist, and thinking of Grandpa.</p>
<p><hl>&#8230;</hl></p>
<p>I brewed yesterday, but nothing as odd as I thought I&#8217;d need to do.  I had the hops to make a decent American IPA, and picked up a few more ingredients to complete the recipe.  My last few beers have wound up underhopped, but I don&#8217;t think I made that mistake this time &#8212; my hops stash is gone now <img src='http://mikk.net/log/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I also finally got my bike out of the car, assembled, and installed fenders.  The weather forecast calls for sub-10&deg;F temps tomorrow, which knocked me out of my bike commuting routine last time.  This time around, though, I have a fleece balaclava and a better base layer for the rest of me.  I <em>could</em> wait for the higher temps later this week, but I&#8217;m itching to get back on the bike&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2008/01/01/200678/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Furry Tadpoles&#8230;.</title>
		<link>http://mikk.net/log/2007/10/02/furry-tadpoles/</link>
		<comments>http://mikk.net/log/2007/10/02/furry-tadpoles/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 05:55:03 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/2007/10/02/furry-tadpoles/</guid>
		<description><![CDATA[I have another song stuck in my head.  It&#8217;s not the annoying kind that runs constantly, but rather the kind which starts up close to breakdown or shut down, like HAL singing &#8220;Daisy, Daisy&#8221; as Dave removed his cards one by one.
Which is to say, it was running constantly today.
Grace has been requiring two [...]]]></description>
			<content:encoded><![CDATA[<p>I have another song stuck in my head.  It&#8217;s not the annoying kind that runs constantly, but rather the kind which starts up close to breakdown or shut down, like HAL singing &#8220;Daisy, Daisy&#8221; as Dave removed his cards one by one.</p>
<p>Which is to say, it was running constantly today.</p>
<p>Grace has been requiring two things to go to sleep lately: me, and music.  The music for the last &#8230; month? &#8230; has been Pete Seeger, Children&#8217;s Concert at Town Hall, IIRC.  Good, classic stuff all around, but what sticks in my head is:</p>
<blockquote><p>
Now that&#8217;s the end of him and her<br />
Ding dang dong, go the wedding bells<br />
There&#8217;ll be no little tadpoles, covered with fur<br />
Ding dang dong, go the wedding bells</p>
<p>[chorus]<br />
Here&#8217;s to Cheshire, here&#8217;s to cheese<br />
Here&#8217;s to the pear and the apple trees<br />
and here&#8217;s to the lovely strawberries<br />
Ding dang dong, go the wedding bells
</p></blockquote>
<p>It&#8217;s the last verse of one of the tracks, and the only one I can make out over the fidgeting and chattering of a 4 year old trying to avoid sleep.  The furry tadpoles probably have something to do with that.</p>
<p>So, of course I googled for snippets of the song trying to fill in the blanks.  The rest of the song doesn&#8217;t make much sense either.  It&#8217;s one of many variants of &#8220;Froggy went a&#8217; courting&#8221;, an English folk song dating back to 1611 with references as early as the 1580s.  In other words, this one&#8217;s been running through the collective heads of a decent portion of western civilization for over 400 years.  Neat.</p>
<p>It&#8217;s also interesting that its a nominally kid-friendly song <em>[Theory: every English-language song over 200 years old has either been forgotten, turned into a hymn, or mellowed into a children's song (if secular)]</em> ending in the deaths of the main characters.  It makes me not feel as bad about wanting to have all three little pigs be eaten, because the &#8220;smartest&#8221; one only had his labor-intensive brick house half-finished before The Big Bad Wolf&#8217;s fateful visit.</p>
<p>(Think &#8220;Three Little Pigs&#8221; as a parable of engineering tradeoffs.  No, I don&#8217;t tell it that way, although in my version the wolf sometimes heads into town for a ham sandwich after giving up on the fresher pork&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2007/10/02/furry-tadpoles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arrr(gh)?&#8230;.</title>
		<link>http://mikk.net/log/2007/09/18/arrrgh/</link>
		<comments>http://mikk.net/log/2007/09/18/arrrgh/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 04:23:29 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Farts & Seizure]]></category>

		<guid isPermaLink="false">http://mikk.net/log/2007/09/18/arrrgh/</guid>
		<description><![CDATA[It completely slipped my mind that tomorrow is Talk Like a Pirate Day.
]]></description>
			<content:encoded><![CDATA[<p>It <em>completely</em> slipped my mind that tomorrow is <a href="http://www.talklikeapirate.com/">Talk Like a Pirate Day.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mikk.net/log/2007/09/18/arrrgh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
