<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 
 <title>Snort a Sprocket</title>
 <link href="http://smerpology.org/sprocket/atom.xml" rel="self"/>
 <link href="http://smerpology.org/sprocket/"/>
 <updated>2011-05-25T07:36:48-04:00</updated>
 <id>http://smerpology.org/sprocket/</id>
 <author>
   <name>Scott Parkerson</name>
   <email>scott.parkerson@gmail.com</email>
 </author>

 
 <entry>
   <title>CamelOne 2011</title>
   <link href="http://smerpology.org/sprocket-new/blog/2011/05/25/camelone-2011/"/>
   <updated>2011-05-25T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2011/05/25/camelone-2011</id>
   <content type="html">&lt;p&gt;So, I went to &lt;a href=&quot;http://fusesource.com/camelone2011/&quot;&gt;this conference&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To some folks I know, the mention of the word &amp;#8220;enterprise&amp;#8221; causes them to immediately imagine stodgy old farts talking about how awesome &lt;span class=&quot;caps&quot;&gt;CORBA&lt;/span&gt; was, along with &amp;#8220;solutions&amp;#8221; that involve using huge proprietary software packages that cost a small fortune. Also, those same people dismiss Java as &amp;#8220;that thing that may have once been cool in the 90s, but is &lt;em&gt;so done now&lt;/em&gt;&amp;#8221;.&lt;/p&gt;
&lt;p&gt;Enterprise software need not be expensive as purchasing a small island, nor boring as all hell. In fact, one of the things about this conference is that it has made me terribly excited about doing things that really amount to being the trench warfare and/or plumbing of software development. There&amp;#8217;s nothing glamorous about either of those analogies, but at the end of the day, that&amp;#8217;s what companies of all sizes face: integrating less-than-ideal systems, automating them, managing them, all in the name of &lt;em&gt;getting things done&lt;/em&gt;. Oh, and getting paid.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://camel.apache.org/&quot;&gt;Apache Camel&lt;/a&gt; and its growing constellation of sister projects &lt;a href=&quot;http://activemq.apache.org/&quot;&gt;ActiveMQ&lt;/a&gt;&lt;sup class=&quot;footnote&quot;&gt;&lt;a href=&quot;#fn1&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;, &lt;a href=&quot;http://cxf.apache.org/&quot;&gt;&lt;span class=&quot;caps&quot;&gt;CXF&lt;/span&gt;&lt;/a&gt;, and &lt;a href=&quot;http://servicemix.apache.org/&quot;&gt;ServiceMix&lt;/a&gt; are awesome open-source projects written and maintained by smart, passionate folks.  Those packages&amp;#8212;especially Camel&amp;#8212;allow you to do some pretty incredible integration tasks with less code, allowing you to spend more time writing code that actually matters to your company (i.e. the stuff that makes you money, or saves the world, or both).&lt;/p&gt;
&lt;p&gt;Do you work for a company whose customers drop their requests onto a server using (gasp!) &lt;span class=&quot;caps&quot;&gt;FTP&lt;/span&gt;? Oh, and did I mention that those customers might use slightly less than ideal data formats, like, say, a pipe-delimited monstrosity?  Oh, and some customers might use different fields in that aforementioned monstrosity to mean different things?&lt;sup class=&quot;footnote&quot;&gt;&lt;a href=&quot;#fn2&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; If so, you should really look into Camel.&lt;/p&gt;
&lt;p&gt;It gets better. If you manage to &lt;del&gt;-browbeat&lt;/del&gt;- persuade some customers to join the modern era and use a web service with well-formed &lt;span class=&quot;caps&quot;&gt;XML&lt;/span&gt; to give you requests, you can add that on without having to switch your old customers over or throw away code.&lt;/p&gt;
&lt;p&gt;Best of all, you can do much of this without writing much code at all. A Camel route to achieve this using the Java Fluent &lt;span class=&quot;caps&quot;&gt;API&lt;/span&gt; reads almost like plain English:&lt;/p&gt;
&lt;pre&gt;
    // Handle archaic crap
    from(&quot;ftp://ftp.electronecromegastompers.com/dropbox/&quot;)
        .choice()
            .when(header(&quot;CamelFileName&quot;).startsWith(&quot;CustomerA&quot;))
                .to(&quot;bean:normalizeCustomerData?method=handleCustomerA&quot;)
                .to(&quot;direct:handleNormalizedData&quot;)
            .when(header(&quot;CamelFileName&quot;).startsWith(&quot;CustomerB&quot;))
                .to(&quot;bean:normalizeCustomerData?method=handleCustomerB&quot;)
                .to(&quot;direct:handleNormalizedData&quot;)
        .end();

    // Handle modern stuff; customer's identity is part of the request
    // rather than encoded in the file name.
    from(&quot;jetty://0.0.0.0:16666/spankyNewWebservice/&quot;)
        .to(&quot;bean:normalizeCustomerData?method=handleWebserviceRequest&quot;)
        .to(&quot;direct:handleNormalizedData&quot;);

    // The route that everything funnels into
    from(&quot;direct:handleNormalizedData&quot;)
        .to(&quot;bean:processNormalizedRequests&quot;)
        .to(&quot;bean:getPaidCashMoney&quot;);
&lt;/pre&gt;
&lt;p&gt;Of course, I&amp;#8217;m assuming that you have already written a bean that can handle a common data format, a bean to get various data into that format, and of course, a bean that makes you cash money&lt;sup class=&quot;footnote&quot;&gt;&lt;a href=&quot;#fn3&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;. Even so, this beats the pants out of using shell scripts and cron any day&lt;sup class=&quot;footnote&quot;&gt;&lt;a href=&quot;#fn4&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
&lt;p&gt;Oh, did I mention that you can write routes like this using &lt;a href=&quot;http://www.scala-lang.org/&quot;&gt;the hipster-compliant Scala&lt;/a&gt;, if you so desired?&lt;/p&gt;
&lt;p&gt;tl;dr: &lt;a href=&quot;http://www.ateb.com/&quot;&gt;the company I work for&lt;/a&gt; is using this stuff for real production work, and it&amp;#8217;s great. The developers who work on these Apache projects are universally smart, approachable people, and I got to meet &lt;a href=&quot;http://macstrac.blogspot.com/&quot;&gt;several&lt;/a&gt; &lt;a href=&quot;http://davsclaus.blogspot.com/&quot;&gt;of&lt;/a&gt; &lt;a href=&quot;http://janstey.blogspot.com/&quot;&gt;them&lt;/a&gt; at the conference, as well as Gregor Hophe, who &lt;a href=&quot;http://www.eaipatterns.com/&quot;&gt;wrote the book that inspired Apache Camel&lt;/a&gt;.  &lt;a href=&quot;http://fusesource.com/&quot;&gt;FuseSource&lt;/a&gt;, the company that rewards a lot of these guys with paycheck for their hard work seem like good eggs, too.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m hoping to come back next year.&lt;/p&gt;
&lt;p class=&quot;footnote&quot; id=&quot;fn1&quot;&gt;&lt;sup&gt;1&lt;/sup&gt; Apache Camel was initially concieved as a mediation or routing engine to be embedded directly into an ActiveMQ broker.&lt;/p&gt;
&lt;p class=&quot;footnote&quot; id=&quot;fn2&quot;&gt;&lt;sup&gt;2&lt;/sup&gt; The real world is very, very ugly. It&amp;#8217;s not all federated APIs, &lt;span class=&quot;caps&quot;&gt;JSON&lt;/span&gt;, and ponies.&lt;/p&gt;
&lt;p class=&quot;footnote&quot; id=&quot;fn3&quot;&gt;&lt;sup&gt;3&lt;/sup&gt; If you have ideas on how to do this, let me know.&lt;/p&gt;
&lt;p class=&quot;footnote&quot; id=&quot;fn4&quot;&gt;&lt;sup&gt;4&lt;/sup&gt; Which is not to say that &lt;a href=&quot;http://teddziuba.com/2010/10/taco-bell-programming.html&quot;&gt;Taco Bell Programming&lt;/a&gt; is without merit.&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>It ain’t gonna be pretty but you’re not alone</title>
   <link href="http://smerpology.org/sprocket-new/blog/2011/04/26/it-ain---t-gonna-be-pretty-but-you---re-not-alone/"/>
   <updated>2011-04-26T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2011/04/26/it-ain---t-gonna-be-pretty-but-you---re-not-alone</id>
   <content type="html">&lt;p&gt;&lt;iframe title=&quot;YouTube video player&quot; width=&quot;480&quot; height=&quot;390&quot; 
        src=&quot;http://www.youtube.com/embed/1T7i-f2m57k?rel=0&quot;
        frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;This is easily my favorite song off of &lt;em&gt;The Long Surrender&lt;/em&gt;, and I&amp;#8217;ve been thinking about it ever since I read that a friend of our family who has been serving in Haiti as a missionary has been experiencing a &lt;a href=&quot;http://www.mangine.org/2011/04/crisis-of-faith-questions.html&quot;&gt;crisis of faith&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I wish I had something really awesome and inspiring to say to her that would help make it All Right, but the truth is that I&amp;#8217;ve been struggling with the God thing since, like, &lt;em&gt;forever&lt;/em&gt;. Sure, I call myself a Christian; I&amp;#8217;m not afraid or ashamed to put a name to it. But when the chips are down, do I really have a faith big enough to keep me going? A faith that is worthy of the Grace that I continue to receive?&lt;/p&gt;
&lt;p&gt;The answer is: &lt;em&gt;not really&lt;/em&gt;. I struggle. I&amp;#8217;m a mess. I&amp;#8217;m imperfect. I&amp;#8217;m just trying to find a way though life, hoping to leave this world a better place.&lt;/p&gt;
&lt;p&gt;I don&amp;#8217;t believe in Satan as That Guy With the Horns and the Pointy Stick. I do believe he is the one that whispers into my ears, tempting me to Just Stop. &amp;#8220;What&amp;#8217;s the point?&amp;#8221; he would say. &amp;#8220;Just lie down and wait for death. It won&amp;#8217;t be long now.&amp;#8221;&lt;/p&gt;
&lt;p&gt;Then a song like this comes along to remind me that we&amp;#8217;re all one, big broken mess, and that&amp;#8217;s alright. When we strip down the barriers, when we put away the masks that we wear in the daytime, we&amp;#8217;re pretty much the same:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;All my favorite people are broken&lt;br /&gt;
Believe me&lt;br /&gt;
My heart should know&lt;/p&gt;
&lt;p&gt;Some prayers are better left unspoken&lt;br /&gt;
I just want to hold you&lt;br /&gt;
And let the rest go&lt;/p&gt;
&lt;p&gt;All my friends are part saint and part sinner&lt;br /&gt;
We lean on each other&lt;br /&gt;
Try to rise above&lt;/p&gt;
&lt;p&gt;We are not afraid to admit we are all still beginners&lt;br /&gt;
We are all late bloomers&lt;br /&gt;
When it comes to love&lt;/p&gt;
&lt;p&gt;All my favorite people are broken&lt;br /&gt;
Believe me&lt;br /&gt;
My heart should know&lt;/p&gt;
&lt;p&gt;Orphaned believers, skeptical dreamers&lt;br /&gt;
Step forward&lt;br /&gt;
You can stay right here&lt;br /&gt;
You don’t have to go&lt;/p&gt;
&lt;p&gt;Is each wound you’ve received&lt;br /&gt;
Just a burdensome gift?&lt;br /&gt;
It gets so hard to lift yourself up off the ground&lt;/p&gt;
&lt;p&gt;But the poet says, We must praise a mutilated world&lt;br /&gt;
We’re all workin&amp;#8217; the graveyard shift&lt;br /&gt;
You might as well sing along&lt;/p&gt;
&lt;p&gt;Cause all my favorite people are broken&lt;br /&gt;
Believe me&lt;br /&gt;
My heart should know&lt;/p&gt;
&lt;p&gt;(As for) your tender heart&amp;#8212;this world’s going to rip it wide open&lt;br /&gt;
It ain’t gonna be pretty&lt;br /&gt;
But you’re not alone&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Linford Detweiler wrote the lyrics. His wife, Karin, translates them into a glorious sound.&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>Only Mercy</title>
   <link href="http://smerpology.org/sprocket-new/blog/2011/03/06/only-mercy/"/>
   <updated>2011-03-06T00:00:00-05:00</updated>
   <id>http://smerpology.org/blog/2011/03/06/only-mercy</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/images/an_impromptu_ball_eva_roos.jpg&quot; style=&quot;float: right;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve had this song running through my head for about, oh, twenty-one years now. Other songs come and go, but I find this one cannot be silenced by death metal, industrial, goth rock, rockabilly, or Bj&amp;ouml;rk. It&amp;#8217;s now really at the forefront since everybody&amp;#8217;s been talking about how Rob Bell has inadverdently &lt;a href=&quot;https://www.nytimes.com/2011/03/05/us/05bell.html?_r=2&quot;&gt;ticked off a bunch of traditionalist Christians&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There is my kite&lt;br /&gt;
Caught around a signpost&lt;br /&gt;
The sign says: You are almost there.&lt;br /&gt;
So I was right&amp;#8212;there is a Heaven&lt;br /&gt;
Very near&lt;/p&gt;
&lt;p&gt;But there are no fires in hell&lt;br /&gt;
There is only Mercy&lt;/p&gt;
&lt;p&gt;Some days my kite goes where I cannot see&lt;br /&gt;
And I feel happy for its freedom&lt;br /&gt;
When it&amp;#8217;s tangled in the trees and wires&lt;br /&gt;
I know it&amp;#8217;s my own fault&lt;br /&gt;
All my fault&lt;/p&gt;
&lt;p&gt;But there are no fires in hell&lt;br /&gt;
There is only Mercy&lt;br /&gt;
(I believe)&lt;/p&gt;
&lt;p&gt;One day my kite will escape forever&lt;br /&gt;
And I will jump to catch the trailing string&lt;br /&gt;
Wishes and wants will fall from my pocket&lt;br /&gt;
As I wave, full of peace&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;#8212;Karen &amp;amp; Don Peris, &amp;#8220;Mercy&amp;#8221;&lt;/p&gt;
&lt;p&gt;As usual, the &lt;a href=&quot;http://www.patheos.com/community/slacktivist/&quot;&gt;Slacktivist&lt;/a&gt; (now in a new blog home at &lt;a href=&quot;http://patheos.com/&quot;&gt;Patheos&lt;/a&gt;) has a great series of posts on the subject:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.patheos.com/community/slacktivist/2011/03/02/team-hell-gets-loud/&quot;&gt;Team Hell Gets Loud&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.patheos.com/community/slacktivist/2011/03/02/the-epistemology-of-team-hell/&quot;&gt;The epistemology of Team Hell&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.patheos.com/community/slacktivist/2011/03/02/should-i-not-be-concerned/&quot;&gt;Should I Not Be Concerned?&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The last one is my favorite.&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>One Nation, Unequal</title>
   <link href="http://smerpology.org/sprocket-new/blog/2010/09/07/one-nation--unequal/"/>
   <updated>2010-09-07T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2010/09/07/one-nation--unequal</id>
   <content type="html">&lt;p&gt;&lt;a href=&quot;http://www.slate.com/id/2266025/entry/2266026/&quot;&gt;&lt;cite&gt;Timothy Noah&lt;/cite&gt;&lt;/a&gt;: &amp;#8220;[According to the &lt;span class=&quot;caps&quot;&gt;CIA&lt;/span&gt; &amp;#8230;] income distribution in the United States is more unequal than in Guyana, Nicaragua, and Venezuela, and roughly on par with Uruguay, Argentina, and Ecuador. Income inequality is actually declining in Latin America even as it continues to increase in the United States. Economically speaking, the richest nation on earth is starting to resemble a banana republic.&amp;#8221;&lt;/p&gt;
&lt;p&gt;This is easily one of the most fascinating series I&amp;#8217;ve read recently, complete with a set of compelling visuals that illustrate the problem. Maybe the real reason people are so upset lately is there really is a lot less wealth to go around. However, it&amp;#8217;s not really because the government is hoovering up the money and giving it to the poor or funding earmarks, but that the top 1% of earners consumed more than 18% of all of the money earned (that&amp;#8217;s up from 8% in 1973).&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>Believe</title>
   <link href="http://smerpology.org/sprocket-new/blog/2010/08/24/believe/"/>
   <updated>2010-08-24T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2010/08/24/believe</id>
   <content type="html">&lt;blockquote&gt;
&lt;p&gt;For people like us&lt;br /&gt;
In places like this&lt;br /&gt;
We need all the hope we can get&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;While U2 and &lt;span class=&quot;caps&quot;&gt;REM&lt;/span&gt; were selling out arenas during the 80s, there was this little scrappy band called &lt;em&gt;The Call&lt;/em&gt;, fronted by one Michael Been, that turned some impressive arena-sized albums about love, hope, anger, and faith.&lt;/p&gt;
&lt;p&gt;&amp;#8220;I Still Believe&amp;#8221; remains one of my favorite songs of theirs:&lt;/p&gt;
&lt;p&gt;&lt;object width=&quot;480&quot; height=&quot;385&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/272T8hZUqcs?fs=1&amp;amp;hl=en_US&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/272T8hZUqcs?fs=1&amp;amp;hl=en_US&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s sad that most people know this song as played by Tim Capello, playing himself as the oily, muscle-bound sax player &lt;a href=&quot;http://www.youtube.com/watch?v=yw3MO4E9gVA&quot;&gt;that covered it during one of the early scenes in &lt;em&gt;The Lost Boys&lt;/em&gt;.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Michael Been, &lt;span class=&quot;caps&quot;&gt;RIP&lt;/span&gt; (1950-2010)&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>RIP Smerp (1995-2010)</title>
   <link href="http://smerpology.org/sprocket-new/blog/2010/08/17/rip-smerp--1995-2010-/"/>
   <updated>2010-08-17T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2010/08/17/rip-smerp--1995-2010-</id>
   <content type="html">&lt;p&gt;I got tired of it, that&amp;#8217;s all.&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>(So Little) Oil Just Out of Reach</title>
   <link href="http://smerpology.org/sprocket-new/blog/2010/06/01/-so-little--oil-just-out-of-reach/"/>
   <updated>2010-06-01T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2010/06/01/-so-little--oil-just-out-of-reach</id>
   <content type="html">&lt;p&gt;I&amp;#8217;m really tired of people and pundits going on and on about how we have &lt;em&gt;so much oil&lt;/em&gt; that just can&amp;#8217;t be reached because the mean old government won&amp;#8217;t let the oil companies drill for it. Remember &amp;#8220;Drill, Baby, Drill&amp;#8221;? &lt;span class=&quot;caps&quot;&gt;ANWR&lt;/span&gt;? Yeah, that.&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;caps&quot;&gt;FOX&lt;/span&gt; Business News correspondent John Stossel &lt;a href=&quot;http://stossel.blogs.foxbusiness.com/2010/06/01/oreilly-tonight-the-oil-spill/&quot;&gt;is the latest to blame the government&lt;/a&gt; for keeping all those precious lands oil-rig free, all the while pushing the oil companies into dangerous deepwater exploration.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[Former Shell President John Hofmeister is] right. More than 50% of Western land is owned by the federal government. But 75% of that is off limits or restricted for private drilling. Land that the government estimates contains 20 billion barrels. If government would just step out of the way and let people drill, oil companies wouldn’t have to go so far offshore!&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Well, the truth is that the oil companies were going to go deep-sea drilling at some point anyway, even if they could have gotten permission to drill on government land. They&amp;#8217;re just there &lt;strong&gt;sooner&lt;/strong&gt;, but the main reason they are there has less to do with the government than our insatiable demand for &amp;#8220;Texas tea&amp;#8221;.&lt;/p&gt;
&lt;p&gt;20 billion barrels sure sounds like a lot until you put it in perspective up against what the United States consumes. According to &lt;a href=&quot;http://www.eia.doe.gov/basics/quickoil.html&quot;&gt;the US Energy Information Adminstration&amp;#8217;s summary page&lt;/a&gt;, we as a country &lt;em&gt;consume&lt;/em&gt; 19.5 million barrels &lt;em&gt;a day&lt;/em&gt;. At that rate, 20 billion barrels will give us an extra 2.8 years of oil.&lt;/p&gt;
&lt;p&gt;So, even if the government &amp;#8220;stepped out of the way&amp;#8221;, it will cost a lot of money and time to get those oil wells online and producing, and there will be an environmental cost. And after all that, you&amp;#8217;ll have &lt;em&gt;a little less than three years of oil to show for it&lt;/em&gt;. Those consumption figures were current as of 2009; by the time we have those hypothetical rigs online, who knows where are consumption will be? Even if consumption were to stay flat or decrease, will the rest of the developing world curb their nascent appetites? (Mumble mumble &lt;em&gt;China&lt;/em&gt; mumble.)&lt;/p&gt;
&lt;p&gt;Is having an extra three years of oil worth spoiling precious natural resources? According to this chart, the entire Gulf of Mexico is &lt;a href=&quot;http://www.eia.doe.gov/neic/infosheets/petroleumreserves.html&quot;&gt;estimated as having only 3.5 billion barrels &lt;em&gt;total&lt;/em&gt;&lt;/a&gt;. That&amp;#8217;s enough to last a paltry 177 days at the US&amp;#8217;s current rate of consumption.&lt;/p&gt;
&lt;p&gt;While we&amp;#8217;re doing some number crunching, let&amp;#8217;s think about those thousands of barrels of oil that are currently spewing into the Gulf of Mexico from the foundered Deepwater Horizion. The government estimates&amp;#8212;conservatively&amp;#8212;that the flow rate is 19,000 barrels of oil a day. At that rate, as of this writing, over 800,000 barrels have spilled in the Gulf of Mexico. It&amp;#8217;s a spill so large &lt;a href=&quot;http://www.google.com/crisisresponse/oilspill/&quot;&gt;it&amp;#8217;s easily visible from space&lt;/a&gt;. It&amp;#8217;s going to ruin coastal fishermen&amp;#8217;s livelihoods, kill wildlife, and spoil the coastlines of several states. But had we been able to use the oil that&amp;#8217;s been spilled, it would only equal the amount of oil that the entire US consumes in a &lt;em&gt;single hour&lt;/em&gt;. &lt;span class=&quot;caps&quot;&gt;ONE&lt;/span&gt;. &lt;span class=&quot;caps&quot;&gt;LOUSY&lt;/span&gt;. &lt;span class=&quot;caps&quot;&gt;HOUR&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The idea that somehow we could ever become energy independent on producing our own oil alone is a complete crock unless we learn to do with a lot less of the stuff and look for more sustainable resources. Oil is not the final answer, and if we act like it is, we&amp;#8217;re going to be in a heap of trouble when the wells run dry and we have nothing to show for it.&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>o</title>
   <link href="http://smerpology.org/sprocket-new/blog/2010/04/12/o/"/>
   <updated>2010-04-12T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2010/04/12/o</id>
   <content type="html">&lt;p&gt;&lt;object width=&quot;640&quot; height=&quot;385&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/MMroXbAmrI8&amp;hl=en_US&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/MMroXbAmrI8&amp;hl=en_US&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;640&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Meanwhile, Jonna Lee has deleted her accounts on Facebook and Twitter because&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;she is undergoing a radical metamorphosis, or&lt;/li&gt;
	&lt;li&gt;she&amp;#8217;s sick of everyone assuming that she&amp;#8217;s iamamiwhoami, or&lt;/li&gt;
	&lt;li&gt;sunspots.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Pick one. Whatever the reason, I&amp;#8217;m loving this video and viral video series.&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>I Am... Mandragora Officinarum</title>
   <link href="http://smerpology.org/sprocket-new/blog/2010/04/09/i-am----mandragora-officinarum/"/>
   <updated>2010-04-09T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2010/04/09/i-am----mandragora-officinarum</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/images/the-iamamiwhoami-600x264.jpg&quot; title=&quot;iamamiwhoami&quot; alt=&quot;iamamiwhoami&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;#8220;To whom it may concern.&amp;#8221;&lt;/p&gt;
&lt;p&gt;I have really been enjoying watching the viral campaign for &lt;a href=&quot;http://www.youtube.com/iamamiwhoami&quot;&gt;iamamiwhoami&lt;/a&gt; unfold since the beginning of this year. If you haven&amp;#8217;t already seen the videos that have been released, you owe it to yourself to go and watch them in chronological order, especially if you like music described as &amp;#8220;ethereal&amp;#8221;, &amp;#8220;odd&amp;#8221;, &amp;#8220;otherworldly&amp;#8221;, and &amp;#8220;dark&amp;#8221;.&lt;/p&gt;
&lt;p&gt;However, with a single release on iTunes for &lt;a href=&quot;http://itunes.apple.com/us/album/id361085411&quot;&gt;&amp;#8220;b&amp;#8221;&lt;/a&gt;, and a forthcoming single called &lt;a href=&quot;http://www.amazon.com/O/dp/B003FSPDMY/ref=sr_1_1?ie=UTF8&amp;s=dmusic&amp;qid=1270771351&amp;sr=8-1-catcorr&quot;&gt;&amp;#8220;o&amp;#8221;&lt;/a&gt; available on 11 April 2010 via Amazon MP3, it looks like the mystery is finally drawing to a close. I, along with most of the other folks following the evolution of the campaign, believe that she is the alter ego or side project of Swedish singer &lt;a href=&quot;http://jonnalee.com/&quot;&gt;Jonna Lee&lt;/a&gt;. After all, Jonna&amp;#8217;s &lt;a href=&quot;http://en.wikipedia.org/wiki/File:Jonna_Lee_20080607.jpg&quot;&gt;picture in Wikipedia&lt;/a&gt; looks like &lt;a href=&quot;http://twitpic.com/1e84lb&quot;&gt;this picture from iamamiwhoami&amp;#8217;s Twitpic&lt;/a&gt;. Also, why would Jonna need &lt;a href=&quot;http://twitpic.com/c0xq4&quot;&gt;an inflatable pool full of mud&lt;/a&gt; if not to romp around in like the &lt;a href=&quot;http://www.youtube.com/watch?v=oVVLkWjTISE&quot;&gt;pre-born version of iamamiwhoami?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Whatever the case, she promises to reveal herself to the world if she &lt;a href=&quot;http://twitter.com/616283891991071/status/11845493291&quot;&gt;gets 10,000 followers on Twitter by the 15th of April&lt;/a&gt;. I&amp;#8217;m looking forward to it.&lt;/p&gt;
&lt;p&gt;Incidentally, I&amp;#8217;ve enjoyed discovering Jonna Lee (as herself). I really dig her song &lt;a href=&quot;http://www.youtube.com/watch?v=0jlb647McLg&quot;&gt;&amp;#8220;Lake Chermain&amp;#8221;&lt;/a&gt; from her most recent album &lt;a href=&quot;http://www.last.fm/music/Jonna+Lee/This+is+Jonna+Lee&quot;&gt;&lt;em&gt;This is Jonna Lee&lt;/em&gt;&lt;/a&gt;, as well as &lt;a href=&quot;http://www.youtube.com/watch?v=CTEgPzsTJts&quot;&gt;&amp;#8220;I Wrote This Song&amp;#8221;&lt;/a&gt; her d&amp;eacute;but &lt;a href=&quot;http://www.last.fm/music/Jonna+Lee/10+Pieces%2C+10+Bruises&quot;&gt;&lt;em&gt;10 pieces, 10 bruises&lt;/em&gt;&lt;/a&gt;. Finally: check out her haunting, sparse cover of &lt;a href=&quot;http://www.last.fm/music/Jonna+Lee/_/Violent+Playground&quot;&gt;&amp;#8220;Violent Playground&amp;#8221;&lt;/a&gt; by Nitzer Ebb.&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;caps&quot;&gt;UPDATE&lt;/span&gt;: I should note that synth Goddess &lt;a href=&quot;http://www.analogsuicide.com/&quot;&gt;Tara Busch of AnalogSuicide.com&lt;/a&gt; has made a &lt;a href=&quot;http://www.analogsuicide.com/latest/2010/4/8/iamamiwhoami-tara-busch-remix-inside-their-beautifully-bizar.html&quot;&gt;remix of &amp;#8220;b&amp;#8221;&lt;/a&gt;.&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>Hell</title>
   <link href="http://smerpology.org/sprocket-new/blog/2010/04/06/hell/"/>
   <updated>2010-04-06T00:00:00-04:00</updated>
   <id>http://smerpology.org/blog/2010/04/06/hell</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/images/2010-04-06-hell_still-18.jpg&quot; title=&quot;&amp;quot;Insurgents&amp;quot;, seconds before death&quot; alt=&quot;&amp;quot;Insurgents&amp;quot;, seconds before death&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;span class=&quot;caps&quot;&gt;LAUNCELOT&lt;/span&gt;: Nay, indeed, if you had your eyes, you might fail of the knowing me: it is a wise father that knows his own child. Well, old man, I will tell you news of your son: give me your blessing: truth will come to light; murder cannot be hid long; a man&amp;#8217;s son may, but at the length truth will out.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p style=&quot;text-align:right;&quot;&gt;&amp;#8212; Shakespeare&lt;br /&gt;
&lt;em&gt;The Merchant of Venice&lt;/em&gt;&lt;br /&gt;
Act II, Scene 2&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I was ordered to go in there and destroy the enemy. That was my job that day. That was the mission I was given. I did not sit down and think in terms of men, women and children. They were all classified as the same, and that&amp;#8217;s the classification that we dealt with over there, just as the enemy. I felt then and I still do that I acted as I was directed, and I carried out the order that I was given and I do not feel wrong in doing so.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p style=&quot;text-align:right;&quot;&gt;&amp;#8212; 2nd Lt. William Calley&lt;br /&gt;
spoken during his murder trial&lt;br /&gt;
for his role in the &lt;a href=&quot;http://en.wikipedia.org/wiki/My_Lai_Massacre&quot;&gt;My Lai Massacre&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There is no question that coalition forces were clearly engaged in combat operations against a hostile force.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p style=&quot;text-align:right;&quot;&gt;&amp;#8212; Lt. Col. Scott Bleichwehl&lt;br /&gt;
Spokesman for the multinational forces in Baghdad&lt;br /&gt;
13 July 2007, one day after the engagement&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Well it&amp;#8217;s their fault for bringing their kids into a battle.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p style=&quot;text-align:right;&quot;&gt;&amp;#8212; Unknown US soldier&lt;br /&gt;
regarding children who were wounded during an engagement on 12 July 2007&lt;/p&gt;
&lt;p&gt;During this engagement, US Soldiers killed over a dozen civilians including two journalists for Reuters. The civilians were believed to be hostile forces armed with &lt;span class=&quot;caps&quot;&gt;RPG&lt;/span&gt; launchers. Over the past two and a half years, Reuters&amp;#8217; requests for the footage of the incident under the Freedom of Information Act had not been granted by US Military, who said as recently as last week that they were still processing the request.&lt;/p&gt;
&lt;p&gt;On 5 April 2010, WikiLeaks &lt;a href=&quot;http://collateralmurder.com/en/index.html&quot;&gt;released the footage obtained by military whistleblowers&lt;/a&gt;. It&amp;#8217;s as horrifying as you&amp;#8217;d expect.&lt;/p&gt;
&lt;p&gt;This is the inevitable consequence of war. To those of you who advocated for it in 2002 and continue to do so today, I have to ask: how &lt;em&gt;do&lt;/em&gt; you sleep at night?&lt;/p&gt;</content>
 </entry>
 
 
</feed>

