<?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"
	>

<channel>
	<title>the corioblog</title>
	<atom:link href="http://www.coriolinus.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coriolinus.net</link>
	<description>read, and be entertained</description>
	<pubDate>Wed, 12 Nov 2008 22:53:01 +0000</pubDate>
	
	<language>en</language>
			<item>
		<title>training day 122</title>
		<link>http://www.coriolinus.net/2008/11/12/training-day-122/</link>
		<comments>http://www.coriolinus.net/2008/11/12/training-day-122/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 22:51:24 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[flight school]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2689</guid>
		<description><![CDATA[My hands smell like jet fuel.
This may or may not turn out to be a permanent state of affairs. Every liquid and certain solid components in this helicopter are known to be carcinogenic. The IPs strongly recommend that we bring a pair of work gloves, distinct from our flight gloves, for use in pre- and [...]


Related posts:<ol><li><a href='http://www.coriolinus.net/2008/02/11/whine/' rel='bookmark' title='Permanent Link: i whine like a vineyard'>i whine like a vineyard</a> <small>"As an Army Aviator, you get to pick one of...</small></li><li><a href='http://www.coriolinus.net/2008/02/17/required-memorization/' rel='bookmark' title='Permanent Link: required memorization'>required memorization</a> <small>Back when I was in AFROTC, hoping to fly for...</small></li><li><a href='http://www.coriolinus.net/2008/08/21/uh-60-black-hawk/' rel='bookmark' title='Permanent Link: UH-60 Black Hawk'>UH-60 Black Hawk</a> <small> The Sikorsky UH-60 Black Hawk is a medium-lift utility...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>My hands smell like jet fuel.</p>
<p>This may or may not turn out to be a permanent state of affairs. Every liquid and certain solid components in this helicopter are known to be carcinogenic. The IPs strongly recommend that we bring a pair of work gloves, distinct from our flight gloves, for use in pre- and post-flight inspections. They also recommend that we carry a spare flight suit in the trunk of our cars on a permanent basis: if our flight suits are splashed with any helicopter fluid, we are not allowed to fly in that suit ever again. Instead, we are required to bring it into central distribution and exchange it for a new one. If we have a spare on hand, we can at least continue with the day&#8217;s flight.</p>
<p>Today was the first time in my life I have touched a Black Hawk. Tomorrow I will fly one. It is a heady feeling.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/11/12/training-day-122/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Small Basic</title>
		<link>http://www.coriolinus.net/2008/11/09/small-basic/</link>
		<comments>http://www.coriolinus.net/2008/11/09/small-basic/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 03:50:34 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[GUI]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Microsoft Corporation]]></category>

		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2687</guid>
		<description><![CDATA[Microsoft just released another .NET language: Small Basic, designed to get MS back into the business of teaching programming.
I have to laugh at parts of the release document. For example, the claim that programming languages started simple and easy to learn, and that the high-level concepts of modern languages discourage people from learning to code. [...]


Related posts:<ol><li><a href='http://www.coriolinus.net/2003/07/21/visual-basic-could-be-so-much-better/' rel='bookmark' title='Permanent Link: Visual Basic could be so much better&#8230;'>Visual Basic could be so much better&#8230;</a> <small>I recently had the opportunity to program with an old...</small></li><li><a href='http://www.coriolinus.net/2008/06/08/c/' rel='bookmark' title='Permanent Link: c++'>c++</a> <small>I check out of the Basic Combat Skills phase of...</small></li><li><a href='http://www.coriolinus.net/2004/02/18/self-study/' rel='bookmark' title='Permanent Link: self-study'>self-study</a> <small>So. I've got flashcards, with the hiragana and katakana on...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Microsoft just released another .NET language: <a href="http://download.microsoft.com/download/9/0/6/90616372-C4BF-4628-BC82-BD709635220D/Introducing%20Small%20Basic.pdf">Small Basic</a>, designed to get MS back into the business of teaching programming.</p>
<p>I have to laugh at parts of the release document. For example, the claim that programming languages started simple and easy to learn, and that the high-level concepts of modern languages discourage people from learning to code. &#8220;Hello World&#8221; is a one-liner only in a high-level language; it&#8217;ll take a beginner a few days of work and tons of documentation to accomplish in assembly. I also loved the section titled &#8220;Rules for naming Variables&#8221;: &#8220;[TODO]&#8221;</p>
<p>In general, this looks like a rehash of QBasic, of which all the warts are still present. The language lesson introduces GOTO long before talking about subroutines. Subs (not functions) access and modify global variables, and are limited to the current file&#8217;s scope. The major differences seem to be that most of the library functions have been rewritten in an object-oriented style and additional libraries for GUI stuff and Turtle programming have been added. Even though the library uses objects, the user has no way of writing their own.</p>
<p>I can see some junior coder at Microsoft doing this as a project for promotion points. It very much feels like a student project. However, I can&#8217;t see any programmer using it to actually teach programming. Small Basic might be useful if your ambition is to one day work up to Visual Basic as an enterprise programming language, but people interested in learning modern programming techniques would be better advised to look elsewhere for their first language.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/11/09/small-basic/feed/</wfw:commentRss>
		</item>
		<item>
		<title>victory</title>
		<link>http://www.coriolinus.net/2008/11/05/victory/</link>
		<comments>http://www.coriolinus.net/2008/11/05/victory/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 10:32:05 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<category><![CDATA[California]]></category>

		<category><![CDATA[United States]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2685</guid>
		<description><![CDATA[I kept refreshing the news sites last night, certain that there would be some irregularity in the voting process that would install McCain as president in defiance of the national will. After I finally went to sleep, I actually had a nightmare about it.
So far, though, things are going pretty well.
I can&#8217;t help but be [...]


Related posts:<ol><li><a href='http://www.coriolinus.net/2008/11/04/vote/' rel='bookmark' title='Permanent Link: vote'>vote</a> <small>Today is the day. Go get out there and make...</small></li><li><a href='http://www.coriolinus.net/2003/06/16/323/' rel='bookmark' title='Permanent Link: 323'>323</a> <small>I think that the most fundamental difficulty that people struggle...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I kept refreshing the news sites last night, certain that there would be some irregularity in the voting process that would install McCain as president in defiance of the national will. After I finally went to sleep, I actually had a nightmare about it.</p>
<p>So far, though, things are going pretty well.</p>
<p>I can&#8217;t help but be disappointed that it looks like <a href="http://en.wikipedia.org/wiki/California_Proposition_8_(2008)">Proposition 8</a> <a href="http://maradydd.livejournal.com/402026.html">seems to have passed</a>. I know that I&#8217;ve never lived in or near California, but that state often seems a bellweather of attitudes across the country. When will people finally learn that people are people, regardless? It doesn&#8217;t matter their sexual orientation, their gender, their skin color&#8211;they deserve equal rights.</p>
<p>People often seem astonished that Obama won, being black. I suppose it is a historic accomplishment, but for me at least, race really wasn&#8217;t a factor this election. I just can&#8217;t summon that feeling of amazement. The civil rights movement was history before I was born; it succeeded.</p>
<p>What would really impress me as a sign that America is ready to elect a person on policy instead of photos: the election of an Arab, openly Muslim president. I am betting I will not see that within my lifetime.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/11/05/victory/feed/</wfw:commentRss>
		</item>
		<item>
		<title>vote</title>
		<link>http://www.coriolinus.net/2008/11/04/vote/</link>
		<comments>http://www.coriolinus.net/2008/11/04/vote/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 09:29:04 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2683</guid>
		<description><![CDATA[Today is the day. Go get out there and make your voice heard and all that. Then I can stop thinking about politics until the next election begins in another 2.5 years.
I voted for Obama. (Not today. Earlier. Absentee ballot.) I think you should too. Even if you disagree, though, vote. I&#8217;d rather live in [...]


Related posts:<ol><li><a href='http://www.coriolinus.net/2007/01/18/the-problem-of-sorting-politicians-by-the-issues-should-be-easier/' rel='bookmark' title='Permanent Link: the problem of sorting politicians by the issues should be easier'>the problem of sorting politicians by the issues should be easier</a> <small>Politics has never been my thing. I know how I...</small></li><li><a href='http://www.coriolinus.net/2008/05/27/delegated-democracy/' rel='bookmark' title='Permanent Link: delegated democracy'>delegated democracy</a> <small>Explodicle's been pondering implementations of a computer-assisted delegated democracy. As...</small></li><li><a href='http://www.coriolinus.net/2004/03/15/494/' rel='bookmark' title='Permanent Link: 494'>494</a> <small>Politics annoy me. I can't vote Democrat because of Kerry's...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Today is the day. Go get out there and make your voice heard and all that. Then I can stop thinking about politics until the next election begins in another 2.5 years.</p>
<p>I voted for Obama. (Not today. Earlier. Absentee ballot.) I think you should too. Even if you disagree, though, vote. I&#8217;d rather live in a country with a population engaged in their democracy who generally disagreed with me than one full of people who thought like me but never bothered to exercise their franchise.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/11/04/vote/feed/</wfw:commentRss>
		</item>
		<item>
		<title>quote out of context</title>
		<link>http://www.coriolinus.net/2008/10/21/quote-out-of-context/</link>
		<comments>http://www.coriolinus.net/2008/10/21/quote-out-of-context/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 22:11:29 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[misc.link]]></category>

		<category><![CDATA[atheism]]></category>

		<category><![CDATA[bendy-buses]]></category>

		<category><![CDATA[Christian Voice]]></category>

		<category><![CDATA[pressure group]]></category>

		<category><![CDATA[Stephen Green]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2681</guid>
		<description><![CDATA[But Stephen Green of pressure group Christian Voice said: &#8220;Bendy-buses, like atheism, are a danger to the public at large.&#8221;
Not too far out of context, though.



Related posts:<ol><li><a href='http://www.coriolinus.net/2005/07/12/686/' rel='bookmark' title='Permanent Link: 686'>686</a> <small>Although bionics are always interesting, what really caught my eye...</small></li><li><a href='http://www.coriolinus.net/2008/10/01/i-am-pretty-sure-this-would-not-happen-to-me/' rel='bookmark' title='Permanent Link: I am pretty sure this would not happen to me'>I am pretty sure this would not happen to me</a> <small>A Russian 2LT produced a rap video, set to the...</small></li><li><a href='http://www.coriolinus.net/2008/10/12/in-the-news/' rel='bookmark' title='Permanent Link: in the news'>in the news</a> <small>I see a headline: "Zimbabwe Opposition Leader Threatens to Quit...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<blockquote><p>But Stephen Green of pressure group Christian Voice said: &#8220;Bendy-buses, like atheism, are a danger to the public at large.&#8221;</p></blockquote>
<p><a href="http://news.bbc.co.uk/2/hi/uk_news/england/london/7681914.stm">Not too far out of context, though.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/10/21/quote-out-of-context/feed/</wfw:commentRss>
		</item>
		<item>
		<title>motorcycle</title>
		<link>http://www.coriolinus.net/2008/10/21/motorcycle/</link>
		<comments>http://www.coriolinus.net/2008/10/21/motorcycle/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 21:46:20 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[life things]]></category>

		<category><![CDATA[Fort Rucker]]></category>

		<category><![CDATA[Motorcycle Safety Foundation]]></category>

		<category><![CDATA[oil stick]]></category>

		<category><![CDATA[USD]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2679</guid>
		<description><![CDATA[I reached an agreement today to buy a motorcycle. Its current owner bought it last year for $11k, but just got a bonus and wants to upgrade to a $20k sport bike. He&#8217;s paying off the remainder of the $8k he currently owes this week, and next week will sell it to me for $4k.
It [...]


Related posts:<ol><li><a href='http://www.coriolinus.net/2005/05/13/this-is-not-what-i-expected-of-a-potentially-fatal-experience/' rel='bookmark' title='Permanent Link: this is not what I expected of a potentially fatal experience'>this is not what I expected of a potentially fatal experience</a> <small>I can now count among my life's experiences: "being hit...</small></li><li><a href='http://www.coriolinus.net/2007/04/04/968/' rel='bookmark' title='Permanent Link: 968'>968</a> <small>So. Last Friday, three days before the scheduled spring maintenance,...</small></li><li><a href='http://www.coriolinus.net/2004/03/20/504/' rel='bookmark' title='Permanent Link: 504'>504</a> <small>I've been riding my bike a lot recently. Although people...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I reached an agreement today to buy a motorcycle. Its current owner bought it last year for $11k, but just got a bonus and wants to upgrade to a $20k sport bike. He&#8217;s paying off the remainder of the $8k he currently owes this week, and next week will sell it to me for $4k.</p>
<p>It was a deal too good to refuse.</p>
<p>There are some hassles associated with motorcycle ownership, at least around Fort Rucker. Every month or two, there is a mandatory motorcycle inspection; you have to spend an hour for someone to look over the thing, dip the oil stick, measure the tread depth, then send you on your way. I&#8217;ll probably have to retake the Motorcycle Safety Foundation basic riding course, as I have no idea where the certificate is from the first time I took it. Base policy requires that I wear a <a href="http://lawndartscomic.com/2008/07/26/reflect-this/">reflective belt</a> over my reflective motorcycle jacket; otherwise in the event I am injured riding they may make me pay for any resultant medical care.</p>
<p>Even so, there are also advantages: the military gives motorcycles better parking spaces than even handicapped people get, and commanders all up the chain officially support motorcycle use: last month, my company commander gave anyone with a motorcycle a Friday off in order to participate in an organized ride. Beyond that, it is nice to have to fill up the tank only every second week, and then to spend only $10 on it.</p>
<p>The best reason is the simplest, though: motorcycles are fun.</p>
<p>For those interested in the bike itself, it is a <a href="http://www.sportrider.com/bikes/2007/146_2007_buell_firebolt_xb9r/index.html">2007 Buell XB9R Firebolt</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/10/21/motorcycle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>security theatre</title>
		<link>http://www.coriolinus.net/2008/10/18/security-theatre-2/</link>
		<comments>http://www.coriolinus.net/2008/10/18/security-theatre-2/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 18:21:58 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[misc.link]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2676</guid>
		<description><![CDATA[Proved once again: airport security is useless.



Related posts:<ol><li><a href='http://www.coriolinus.net/2008/05/08/security-theatre/' rel='bookmark' title='Permanent Link: security theatre'>security theatre</a> <small>A homeless man slipped through security and into an unoccupied...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Proved once again: <a href="http://www.theatlantic.com/doc/200811/airport-security">airport security is useless</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/10/18/security-theatre-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>in the news</title>
		<link>http://www.coriolinus.net/2008/10/12/in-the-news/</link>
		<comments>http://www.coriolinus.net/2008/10/12/in-the-news/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 19:22:04 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[brain flotsam]]></category>

		<category><![CDATA[Quit Government]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2674</guid>
		<description><![CDATA[I see a headline: &#8220;Zimbabwe Opposition Leader Threatens to Quit Government.&#8221; Instantly, I mentally fill in some context: &#8220;I&#8217;ve got the mouse right over the X in the corner, and I&#8217;m not afraid to click! You think you&#8217;re ready for anarchy? Of course not! And don&#8217;t think about sending troops; I&#8217;ve got a deadman switch [...]


Related posts:<ol><li><a href='http://www.coriolinus.net/2008/10/21/quote-out-of-context/' rel='bookmark' title='Permanent Link: quote out of context'>quote out of context</a> <small>But Stephen Green of pressure group Christian Voice said: "Bendy-buses,...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I see a headline: &#8220;<a title="BBC NewsZimbabwe Opposition Leader Threatens to Quit GovernmentVoice of America&amp;nbsp;- 1 hour agoBy VOA News Zimbabwe opposition leader Morgan Tsvangirai has threatened to pull out of a power-sharing deal with President Robert Mugabe if a deadlock over the allocation of key ministries is not resolved.Tsvangirai threatens to quit Zimbabwe deal after Mugabe seizes ... guardian.co.ukZimbabwe power-sharing deal on the rocks AFPAllAfrica.com&amp;nbsp;- Bloomberg&amp;nbsp;- BBC News&amp;nbsp;- The Associated Pressall 2,399 news articles " href="http://news.google.com/news/url?sa=T&amp;ct=us/1-0-0&amp;fd=R&amp;url=http://voanews.com/english/2008-10-12-voa17.cfm&amp;cid=1255775478&amp;ei=xEzySL2XBKbgyQSRvMnMBw&amp;usg=AFQjCNG2L0VOA6XR30aXKQQrCOnAZ6LmoQ" target="_blank">Zimbabwe Opposition Leader Threatens to Quit Government</a>.&#8221; Instantly, I mentally fill in some context: &#8220;I&#8217;ve got the mouse right over the X in the corner, and I&#8217;m not afraid to click! You think you&#8217;re ready for anarchy? Of course not! And don&#8217;t think about sending troops; I&#8217;ve got a deadman switch wired to alt-F4!&#8221;</p>
<p>Sorry about the lack of updates recently; there has just not been a whole lot going on in my life. If you have a topic, I can write about it. Right now, I&#8217;ve got nothing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/10/12/in-the-news/feed/</wfw:commentRss>
		</item>
		<item>
		<title>photo of the day</title>
		<link>http://www.coriolinus.net/2008/10/07/photo-of-the-day/</link>
		<comments>http://www.coriolinus.net/2008/10/07/photo-of-the-day/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 22:14:30 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[japan]]></category>

		<category><![CDATA[misc.link]]></category>

		<category><![CDATA[flimsy plastic traffic control device]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2662</guid>
		<description><![CDATA[
I love the weapons that each person has chosen. The naked man has a brick. The ranking officer has his trusty riot shield. One of the on-call officers has an actual person catcher: a tool designed specifically for handling people who you don&#8217;t want to touch. The other has a flimsy plastic traffic control device; [...]


Related posts:<ol><li><a href='http://www.coriolinus.net/2008/08/09/hacking-the-t/' rel='bookmark' title='Permanent Link: Hacking the T'>Hacking the T</a> <small>So, the MBTA has gone to court to prevent some...</small></li><li><a href='http://www.coriolinus.net/2008/07/30/scaffolding/' rel='bookmark' title='Permanent Link: scaffolding'>scaffolding</a> <small>I didn't write about my participation in the 4th of...</small></li><li><a href='http://www.coriolinus.net/2008/09/12/too-lazy-to-write-content-too-reliable-to-post-nothing/' rel='bookmark' title='Permanent Link: too lazy to write content; too reliable to post nothing'>too lazy to write content; too reliable to post nothing</a> <small>Today you get a picture from a shrine which will...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.coriolinus.net/wp-content/uploads/2008/10/naked_gaijin2021.jpg" rel="lightbox"><img class="alignnone size-full wp-image-2664" title="just like godzilla" src="http://www.coriolinus.net/wp-content/uploads/2008/10/naked_gaijin2021.jpg" alt="" width="500" height="380" /></a></p>
<p>I love the weapons that each person has chosen. The naked man has a brick. The ranking officer has his trusty riot shield. One of the on-call officers has an actual person catcher: a tool designed specifically for handling people who you don&#8217;t want to touch. The other has a flimsy plastic traffic control device; its normal function is to sit between two traffic cones to direct pedestrian traffic. He is not afraid to use it.</p>
<p>The full article is <a href="http://www.wordpress.tokyotimes.org/?p=2469">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/10/07/photo-of-the-day/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Palin in 30 seconds</title>
		<link>http://www.coriolinus.net/2008/10/05/palin-in-30-seconds/</link>
		<comments>http://www.coriolinus.net/2008/10/05/palin-in-30-seconds/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 00:08:42 +0000</pubDate>
		<dc:creator>coriolinus</dc:creator>
		
		<category><![CDATA[misc.link]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.coriolinus.net/?p=2659</guid>
		<description><![CDATA[
I know I stole it directly from BoingBoing, but this is too funny not to repost.



Related posts:<ol><li><a href='http://www.coriolinus.net/2008/07/20/international-robot-exhibition-part-2/' rel='bookmark' title='Permanent Link: International Robot Exhibition, part 2'>International Robot Exhibition, part 2</a> <small>A year and a half ago I went to the...</small></li><li><a href='http://www.coriolinus.net/2008/05/17/this-is-a-check-ride/' rel='bookmark' title='Permanent Link: this is a check ride'>this is a check ride</a> <small> In other news, I just passed the military competency...</small></li><li><a href='http://www.coriolinus.net/2007/01/29/way-too-awesome-not-to-repost/' rel='bookmark' title='Permanent Link: Way too awesome not to repost:'>Way too awesome not to repost:</a> <small>...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/I3Bma3vBG5g&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/I3Bma3vBG5g&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>I know I stole it directly from <a href="http://boingboing.net">BoingBoing</a>, but this is too funny not to repost.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coriolinus.net/2008/10/05/palin-in-30-seconds/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
