<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>RRamblings</title>
	<atom:link href="http://eaglescoutjonathan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://eaglescoutjonathan.wordpress.com</link>
	<description>Go ahead and rread what i have wrritten</description>
	<lastBuildDate>Tue, 08 Nov 2011 13:24:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='eaglescoutjonathan.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>RRamblings</title>
		<link>http://eaglescoutjonathan.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://eaglescoutjonathan.wordpress.com/osd.xml" title="RRamblings" />
	<atom:link rel='hub' href='http://eaglescoutjonathan.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Lessons in Systems Administration&#8230; (learned the hard way by a n00b)</title>
		<link>http://eaglescoutjonathan.wordpress.com/2011/11/08/lessons-in-systems-administration-learned-the-hard-way-by-a-n00b/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2011/11/08/lessons-in-systems-administration-learned-the-hard-way-by-a-n00b/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 13:24:17 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=279</guid>
		<description><![CDATA[If you configure your system to stop and start a service once a day, make sure you verify that it works correctly. Telling cron: @daily dropbox stop (ie kill the dropbox process) @daily dropbox start (and then start it again) does not guarantee that it will execute in that order. I know now to KNOW [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=279&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you configure your system to stop and start a service once a day, make sure you verify that it works correctly.</p>
<p>Telling cron:<br />
@daily dropbox stop (ie kill the dropbox process)<br />
@daily dropbox start (and then start it again)<br />
does not guarantee that it will execute in that order.</p>
<p>I know now to KNOW that @daily mean sometime near midnight, not necessarily in the order in your crontable.</p>
<p>A safer way to do the above is:<br />
00 00 * * * dropbox stop (ie kill the dropbox process at 00:00 every day)<br />
05 00 * * * dropbox start (and then start it again at 00:05 every day) (Yes, I know it looks backwards, but I checked it.)</p>
<p>The short version of the story is that my server was starting the dropbox service and then a second later stopping it.  Pity I didn&#8217;t notice several months ago when I made this change.</p>
<p>Lessons to take home:<br />
1) Verify that changes work the way you want them to.<br />
2) Assume cron will do it wrong.<br />
3) Be more specific.   &#8220;00 00 * * *&#8221; may take more typing than @daily, but will guarantee (more) correctness.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/279/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=279&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2011/11/08/lessons-in-systems-administration-learned-the-hard-way-by-a-n00b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>New Blog</title>
		<link>http://eaglescoutjonathan.wordpress.com/2011/09/14/readintiem/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2011/09/14/readintiem/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 17:30:37 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Rramblings]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=274</guid>
		<description><![CDATA[Hey look. Jonathan started a new blog.  Please go read the first post for more info.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=274&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hey <a title="look." href="http://thespoilerchronicles.wordpress.com/">look.</a></p>
<p>Jonathan started a new blog.  Please go read the first post for more info.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/274/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=274&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2011/09/14/readintiem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>Consonant R Vowell</title>
		<link>http://eaglescoutjonathan.wordpress.com/2011/02/19/consonant-r-vowell/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2011/02/19/consonant-r-vowell/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 04:59:39 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=266</guid>
		<description><![CDATA[I have this habit.  I would not say that it is a bad habit, or something to worry about, but I do want to share it with you. &#160; 1) Think of a word.  Go to step 2. 2) Does it contain the letter r? Yes, go to step 3, no go to step 1. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=266&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 8.0px 0.0px 0.0px 0.0px; text-indent: 18.0px; font: 10.0px Monaco} p.p2 {margin: 8.0px 0.0px 0.0px 0.0px; text-indent: 18.0px; font: 10.0px Monaco; min-height: 14.0px} -->I have this habit.  I would not say that it is a bad habit, or something to worry about, but I do want to share it with you.</p>
<p>&nbsp;</p>
<p>1) Think of a word.  Go to step 2.</p>
<p>2) Does it contain the letter r? Yes, go to step 3, no go to step 1.</p>
<p>3) Does it fit into this pattern: “consonant r vowel” with any preceding and following letters as is grammatically correct? Yes, go to step 4, no go to step 1.</p>
<p>4) Rearrange the letters such that it is now “consonant vowel r”.  Go to step 5.</p>
<p>5) Say the new word.  Go to step 6.</p>
<p>6) Post the new and old word in the comments below.</p>
<p>&nbsp;</p>
<p>I’ll give you some examples:</p>
<p>Driving &#8211;&gt; dirving</p>
<p><a href="http://www.minecraft.net/">Minecraft</a> &#8211;&gt; Minecarft</p>
<p>Preceding &#8211;&gt; perceding</p>
<p>&nbsp;</p>
<p>I have found myself doing this on a fairly regular basis.  Then I started to think about it.  And that is where this came from.</p>
<p>&nbsp;</p>
<p>Enjoy!</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=266&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2011/02/19/consonant-r-vowell/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>Challenge Tiem!</title>
		<link>http://eaglescoutjonathan.wordpress.com/2011/02/12/challenge-tiem/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2011/02/12/challenge-tiem/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 04:59:59 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=263</guid>
		<description><![CDATA[The Rosetta Stone is a ancient Egyptian artifact that was discovered in 1799.  It served a vital role in aiding the translation if ancient Egyptian hieroglyphs.  The Rosetta Stone, and similar artifacts, are exceptionally valuable for archaeologists and historians. Now, I present a challenge to you.  Prepare a text for a modern “Rosetta Stone”.  My [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=263&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 8.0px 0.0px 0.0px 0.0px; text-indent: 18.0px; font: 10.0px Monaco} -->The Rosetta Stone is a ancient Egyptian artifact that was discovered in 1799.  It served a vital role in aiding the translation if ancient Egyptian hieroglyphs.  The Rosetta Stone, and similar artifacts, are exceptionally valuable for archaeologists and historians.</p>
<p>Now, I present a challenge to you.  Prepare a text for a modern “Rosetta Stone”.  My hypothetical idea is to leave an artifact for future historians so that they can translate our languages.  Unlike the Rosetta Stone, you can leave a message for those who discover it.  The ancient Egyptians never knew that their artifact would play such a vital role in understanding their culture.</p>
<p>Your text must include all the letters of the English language, but not obnoxiously so.  Use plain grammar.  Be sure to say hello.  Don’t put your name in it.</p>
<p>On the Rosetta Stone the text appeared in three different languages.  Translate away!  We need this to appear in as many languages as we can.</p>
<p>The Rosetta Stone was inscribed on a slab of granite.  Discuss various materials to use.  Consider longevity!</p>
<p>Finally, the Rosetta Stone was found by accident.  Discuss where to leave our replacement.</p>
<p>Enjoy!</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=263&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2011/02/12/challenge-tiem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>Xenocide</title>
		<link>http://eaglescoutjonathan.wordpress.com/2011/02/05/xenocide/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2011/02/05/xenocide/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 04:59:35 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=261</guid>
		<description><![CDATA[In Orson Scott Card’s Ender Series the concept of Xenocide is introduced.  Xenocide is when one intelligent species drives another intelligent species to extinction.  A direct translation is stranger killing.  In this case xeno- is taking stranger to mean alien, and furthermore, alien not of this world. Xenocide, in my mind is the most barbaric, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=261&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 8.0px 0.0px 0.0px 0.0px; text-indent: 18.0px; font: 10.0px Monaco} -->In Orson Scott Card’s Ender Series the concept of Xenocide is introduced.  Xenocide is when one intelligent species drives another intelligent species to extinction.  A direct translation is stranger killing.  In this case xeno- is taking stranger to mean alien, and furthermore, alien not of this world.</p>
<p>Xenocide, in my mind is the most barbaric, evil, and despicable act that can ever be done.  Consider for a moment all that would be lost if humanity was to be completely eradicated from existence.  The works of Shakespeare, Einstein, Beethoven, and many others would be lost.  Now consider what wonders would be lost if humanity were to commit Xenocide.</p>
<p>Let me go back to the word xeno-.  As I said it means alien.  Consider for a moment that alien simply means someone not of the country that you live in.  Consider the tactics that were used by the first Europeans to come to the New World.  I would argue that they very nearly committed Xenocide on the populations living here at the time.  That is a tragic thought.</p>
<p>My final point is very simple.  Humanity must never commit Xenocide.  Why?  Because if we are an intelligent species (and I do believe that we are) then to commit such an atrocity would serve as an argument agains our claim of intelligence.</p>
<p>If you want to consider this further, please read Card’s Ender series.  They are exceptionally well written, and I believe that everyone should read them.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=261&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2011/02/05/xenocide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>Batman and Superman</title>
		<link>http://eaglescoutjonathan.wordpress.com/2011/01/29/batman-and-superman/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2011/01/29/batman-and-superman/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 04:59:32 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=257</guid>
		<description><![CDATA[There is a common argument that occurs as to who is the more superior super hero in regards to Batman and Superman.  I would like to draw your attention to some of the finer details that I feel often go ignored. For the record I would like to say that I am more fond of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=257&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 8.0px 0.0px 0.0px 0.0px; text-indent: 18.0px; font: 10.0px Monaco} -->There is a common argument that occurs as to who is the more superior super hero in regards to Batman and Superman.  I would like to draw your attention to some of the finer details that I feel often go ignored.</p>
<p>For the record I would like to say that I am more fond of Batman because of all the gadgets.  That said, I will not be focusing on the tools or abilities that the use, instead I will look at the methods.</p>
<p>Superman takes an almost lazy approach.  He waits until he hears/smells/tastes/gets hit with/etc. something before he acts.  From there he goes in and simply muscles his way through the problem.  It works well for him.  He always manages to prevent the disaster just in the nick of time and saves the world.  This approach requires a pretty good dose of luck and good timing.</p>
<p>On the other hand, Batman takes a more investigative approach.  He sneaks around at night spying on people and beating guys up in back alleys, learning as much as he can in the process.  He seems to always suspect that someone is plotting something.  Again he manages to prevent disaster just in the nick of time.</p>
<p>Now consider if the two were to switch tactics.  Consider if Batman were to wait until something hit him.  I think that it is unlikely that he would be able to prevent the disaster.  Likewise, consider if Superman were to take the more proactive approach.  All the villains and crooks would be beat up and in jail long before they could think of breaking the law.</p>
<p>Having said this, I must conclude that it is inappropriate to compare Superman to Batman.  They are completely different heros with completely different modus operandi.  If you really wish to compare heros, group them by “category” first.  Compare Spiderman to Superman or Batman to Ironman.  Compare superpowers to superpowers or gear to gear.  Just as in science, you cannot compare meters to seconds.  They are completely different units.</p>
<p>Now: Discuss!</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=257&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2011/01/29/batman-and-superman/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>First!</title>
		<link>http://eaglescoutjonathan.wordpress.com/2011/01/27/first/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2011/01/27/first/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 18:42:17 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=259</guid>
		<description><![CDATA[And here it is, the first post of the new year.  I feel like I should make some excuses followed by some promises.  I’m not going to.  I don’t want to disappoint you. That said, posts should be resuming this Saturday, and I want to stick to a weekly schedule like I had been doing. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=259&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 8.0px 0.0px 0.0px 0.0px; text-indent: 18.0px; font: 10.0px Monaco} -->And here it is, the first post of the new year.  I feel like I should make some excuses followed by some promises.  I’m not going to.  I don’t want to disappoint you.</p>
<p>That said, posts should be resuming this Saturday, and I want to stick to a weekly schedule like I had been doing.</p>
<p>If there is anything you want me to post on, shoot me an email or leave a comment!</p>
<p>Thanks,</p>
<p>~J</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/259/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=259&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2011/01/27/first/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>Stein um Stein</title>
		<link>http://eaglescoutjonathan.wordpress.com/2010/12/11/stein-um-stein/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2010/12/11/stein-um-stein/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 04:59:28 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Christianity]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Rramblings]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=239</guid>
		<description><![CDATA[Last week I wrote about the band Rammstein.  Today I am going back to Rammstein again.  Keep in mind that Rammstein is alway inappropriate, however I want to look at one particuar line from their song &#8220;Stein um Stein&#8221; (Stone by stone). The first lines of the song are: &#8220;Ich habe Pläne große Pläne        [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=239&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week I wrote about the band Rammstein.  Today I am going back to Rammstein again.  Keep in mind that Rammstein is alway inappropriate, however I want to look at one particuar line from their song &#8220;Stein um Stein&#8221; (Stone by stone).</p>
<p>The first lines of the song are:</p>
<p>&#8220;Ich habe Pläne große Pläne        (I have plans, big plans)<br />
Ich baue dir ein Haus&#8221;                   (I&#8217;m going to build you a house)</p>
<p>Looking at these two lines as if they were coming from God is a powerful thought.  He does have big plans, and he is building you a house.  It is a very encouraging thought.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=239&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2010/12/11/stein-um-stein/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>Rammstein</title>
		<link>http://eaglescoutjonathan.wordpress.com/2010/12/04/rammstein/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2010/12/04/rammstein/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 04:53:00 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Bands]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=232</guid>
		<description><![CDATA[In my Band Mold post I spoke briefly about the band Rammstein.  Now I want to go into a little more detail about the band.  The band is kinda sketchy, and I am going to briefly discuss some of these details.  I will try to keep everything “PG”.  Nevertheless, this post may be unsuitable for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=232&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my Band Mold post I spoke briefly about the band Rammstein.  Now I want to go into a little more detail about the band.  The band is kinda sketchy, and I am going to briefly discuss some of these details.  I will try to keep everything “PG”.  Nevertheless, this post may be unsuitable for children.  You have been warned.</p>
<p>Rammstein is a German band.  The genre that they fall into is “Neue Deutsche Härte” (New German Hardness), and they are always inappropriate.  Always.  The best way I can think of to describe them is to compare them to middle school aged boys who think that yelling out human reproductive organs at lunch is funny.  As I said, always inappropriate.  However, if you can look past that and look at what the songs are about and what the band is trying to say, you may actually see something different.</p>
<p>The songs Rammstein writes are almost always inspired by a real world event.  I see it as the band saying: “You think we’re messed up?  Look at the real world.”</p>
<p>The song Tier (Animal) is about a father molesting his daughter.<br />
The song Weißes Fleisch (White Flesh) is about rape.  (Loosely)<br />
The song Spiel mit mir (Play With Me) is about sexual abuse from siblings.<br />
The song Mein Teil (My Part) is about cannibalism and is written after an incident involving cannibalism.</p>
<p>Again, I need to emphasize that Rammstein is alway inappropriate, but this is stuff that happens in the real world.</p>
<p>Another side of Rammstein is their music.  The music is well written and has some interesting sides to it.  They rely heavily on the bass.  I like this.  At the same time they also incorporate some of the techno side of things.  They find a good balance.</p>
<p>The final thing I want to mention is the lyrics.  Looking past what the band is saying, and looking at the words they use, I am always amazed at some of the things that they pull off.  Their most popular song “Du Hast” (You Have) is a particularly good example.  The lyrics are “Du hast mich” (You have me), but the lead singer pronounces it more like “Du hasst mich” (You hate me).  This isn’t the only example of some of the things that they do, but it is the most appropriate of them.</p>
<p>What do I want you to take from this post?<br />
1:  Don’t look Rammstein up.<br />
2:  Don’t judge music based on it’s content alone.<br />
3:  Listen to lyrics and appreciate the words that are used, especially when the song comes out of another language.<br />
4:  Enjoy the bass line.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=232&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2010/12/04/rammstein/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
		<item>
		<title>Nibbles</title>
		<link>http://eaglescoutjonathan.wordpress.com/2010/11/27/nibbles-3/</link>
		<comments>http://eaglescoutjonathan.wordpress.com/2010/11/27/nibbles-3/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 04:59:24 +0000</pubDate>
		<dc:creator>eaglescoutjonathan</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Nibbles]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Rramblings]]></category>

		<guid isPermaLink="false">http://eaglescoutjonathan.wordpress.com/?p=225</guid>
		<description><![CDATA[This post was brought to you by the number 5 and by accidentally the whole bottle. 1: I&#8217;m huge on your phone 2: Bag of Joy.  Same idea as the Box of Happiness. 3: Wouldn&#8217;t that be a trombone? -No.  That would be a bottle with a stick in it. 4: Hooligans performing shenanigans 5: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=225&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post was brought to you by the number 5 and by accidentally the whole bottle.</p>
<p>1: I&#8217;m huge on your phone<br />
2: Bag of Joy.  Same idea as the Box of Happiness.<br />
3: Wouldn&#8217;t that be a trombone?<br />
-No.  That would be a bottle with a stick in it.<br />
4: Hooligans performing shenanigans<br />
5: Oh my gosh!  It&#8217;s Paul Baloche!!!<br />
6: Everything tastes better with rabies.<br />
~J. Cunningham<br />
7: Literally, Random, and Ironic.  Three of the most poorly used words in the english language.<br />
8: BOOM! http://inception.davepedu.com/<br />
9: The shatters will platter.  ~J. Cunningham on the subject of hard drives.<br />
10: I can’t navigate your filesystem, there is a presentation in the way.  ~Anon.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglescoutjonathan.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglescoutjonathan.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglescoutjonathan.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglescoutjonathan.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglescoutjonathan.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglescoutjonathan.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglescoutjonathan.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglescoutjonathan.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglescoutjonathan.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglescoutjonathan.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglescoutjonathan.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglescoutjonathan.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglescoutjonathan.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglescoutjonathan.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglescoutjonathan.wordpress.com&amp;blog=1391552&amp;post=225&amp;subd=eaglescoutjonathan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglescoutjonathan.wordpress.com/2010/11/27/nibbles-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">eaglescoutjonathan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
