<?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>Mando.org</title>
	<atom:link href="http://mando.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://mando.org/blog</link>
	<description>The Life and Times of Mando Escamilla</description>
	<pubDate>Wed, 11 Jun 2008 06:57:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Maia-ism</title>
		<link>http://mando.org/blog/2008/06/09/maia-ism/</link>
		<comments>http://mando.org/blog/2008/06/09/maia-ism/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 04:44:05 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

		<guid isPermaLink="false">http://mando.org/blog/?p=208</guid>
		<description><![CDATA[
Mommy, you&#8217;re the best my friend.
- Maia

That&#8217;s about the cutest thing I&#8217;ve ever heard.  
]]></description>
			<content:encoded><![CDATA[<blockquote><p>
Mommy, you&#8217;re the best my friend.<br />
- Maia
</p></blockquote>
<p>That&#8217;s about the cutest thing I&#8217;ve ever heard.  </p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2008/06/09/maia-ism/feed/</wfw:commentRss>
		</item>
		<item>
		<title>all? and any?</title>
		<link>http://mando.org/blog/2008/01/16/all-and-any/</link>
		<comments>http://mando.org/blog/2008/01/16/all-and-any/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 06:26:01 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://mando.org/blog/?p=206</guid>
		<description><![CDATA[I&#8217;m not exactly sure how I&#8217;ve missed Enumerable#all? and #Enumerable#any?, but mark them as yet two more reasons to love Ruby.  Both methods pass all elements of the collection to a block and they return true or false based on the collection&#8217;s matchy-ness.  Examples follow:

&#91;&#34;Joe Purdy&#34;, &#34;Jonathon Coulton&#34;&#93;.all? &#123; &#124;artist&#124; artist.rocks? &#125; #=&#62;true
&#91;&#34;Fortran&#34;, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not exactly sure how I&#8217;ve missed Enumerable#all? and #Enumerable#any?, but mark them as yet two more reasons to love Ruby.  Both methods pass all elements of the collection to a block and they return true or false based on the collection&#8217;s matchy-ness.  Examples follow:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="color: #FCFFBA;"><span style="color:#006600; font-weight:bold;color: white;">&#91;</span><span style="color:#996600;color: D8F2A5;">&quot;Joe Purdy&quot;</span>, <span style="color:#996600;color: D8F2A5;">&quot;Jonathon Coulton&quot;</span><span style="color:#006600; font-weight:bold;color: white;">&#93;</span>.<span style="color:#9900CC;">all</span>? <span style="color:#006600; font-weight:bold;color: white;">&#123;</span> <span style="color:#006600; font-weight:bold;color: white;">|</span>artist<span style="color:#006600; font-weight:bold;color: white;">|</span> artist.<span style="color:#9900CC;">rocks</span>? <span style="color:#006600; font-weight:bold;color: white;">&#125;</span> <span style="color:#008000; font-style:italic;color: #CDC;">#=&gt;true</span>
<span style="color:#006600; font-weight:bold;color: white;">&#91;</span><span style="color:#996600;color: D8F2A5;">&quot;Fortran&quot;</span>, <span style="color:#996600;color: D8F2A5;">&quot;BASIC&quot;</span><span style="color:#006600; font-weight:bold;color: white;">&#93;</span>.<span style="color:#9900CC;">any</span>? <span style="color:#006600; font-weight:bold;color: white;">&#123;</span> <span style="color:#006600; font-weight:bold;color: white;">|</span>language<span style="color:#006600; font-weight:bold;color: white;">|</span> language.<span style="color:#9900CC;">rocks</span>? <span style="color:#006600; font-weight:bold;color: white;">&#125;</span> <span style="color:#008000; font-style:italic;color: #CDC;">#=&gt;false</span></pre></div></div>

<p>Oh, you want a serious example.  Sheesh.  Let&#8217;s see if we can find out if there are any even numbers in a collection:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="color: #FCFFBA;"><span style="color:#006600; font-weight:bold;color: white;">&#91;</span><span style="color:#006666;color: #DDD;">0</span>,<span style="color:#006666;color: #DDD;">1</span>,<span style="color:#006666;color: #DDD;">2</span>,<span style="color:#006666;color: #DDD;">3</span>,<span style="color:#006666;color: #DDD;">4</span>,<span style="color:#006666;color: #DDD;">5</span><span style="color:#006600; font-weight:bold;color: white;">&#93;</span>.<span style="color:#9900CC;">any</span>? <span style="color:#006600; font-weight:bold;color: white;">&#123;</span> <span style="color:#006600; font-weight:bold;color: white;">|</span>x<span style="color:#006600; font-weight:bold;color: white;">|</span> x <span style="color:#006600; font-weight:bold;color: white;">%</span> <span style="color:#006666;color: #DDD;">2</span> == <span style="color:#006666;color: #DDD;">0</span> <span style="color:#006600; font-weight:bold;color: white;">&#125;</span> <span style="color:#008000; font-style:italic;color: #CDC;">#=&gt; true</span></pre></div></div>

<p>Cool.  Now, are all of them even?</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="color: #FCFFBA;"><span style="color:#006600; font-weight:bold;color: white;">&#91;</span><span style="color:#006666;color: #DDD;">0</span>,<span style="color:#006666;color: #DDD;">1</span>,<span style="color:#006666;color: #DDD;">2</span>,<span style="color:#006666;color: #DDD;">3</span>,<span style="color:#006666;color: #DDD;">4</span>,<span style="color:#006666;color: #DDD;">5</span><span style="color:#006600; font-weight:bold;color: white;">&#93;</span>.<span style="color:#9900CC;">all</span>? <span style="color:#006600; font-weight:bold;color: white;">&#123;</span> <span style="color:#006600; font-weight:bold;color: white;">|</span>x<span style="color:#006600; font-weight:bold;color: white;">|</span> x <span style="color:#006600; font-weight:bold;color: white;">%</span> <span style="color:#006666;color: #DDD;">2</span> == <span style="color:#006666;color: #DDD;">0</span> <span style="color:#006600; font-weight:bold;color: white;">&#125;</span> <span style="color:#008000; font-style:italic;color: #CDC;">#=&gt; false</span></pre></div></div>

<p>See?  Aren&#8217;t they just the <i>coolest</i>?</p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2008/01/16/all-and-any/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Vim and Ruby</title>
		<link>http://mando.org/blog/2007/11/06/vim-and-ruby/</link>
		<comments>http://mando.org/blog/2007/11/06/vim-and-ruby/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 20:30:21 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://mando.org/blog/?p=184</guid>
		<description><![CDATA[Just FYI, if you&#8217;re using Vim to edit your Ruby code, you really want to be using the vim-ruby scripts, a-like so:

gem install vim-ruby
vim-ruby-install.rb

This will give you some nice ruby-style indention, syntax highlighting, etc etc etc.
]]></description>
			<content:encoded><![CDATA[<p>Just FYI, if you&#8217;re using <a href="http://vim.org">Vim</a> to edit your Ruby code, you <b>really</b> want to be using the <a href="http://vim-ruby.rubyforge.org/">vim-ruby scripts</a>, a-like so:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="color: #FCFFBA;">gem <span style="color: #c20cb9; font-weight: bold;color: #577A61;">install</span> vim-ruby
vim-ruby-install.rb</pre></div></div>

<p>This will give you some nice ruby-style indention, syntax highlighting, etc etc etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2007/11/06/vim-and-ruby/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fingr</title>
		<link>http://mando.org/blog/2007/11/05/fingr/</link>
		<comments>http://mando.org/blog/2007/11/05/fingr/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 03:49:45 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[Computers]]></category>

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

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

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

		<guid isPermaLink="false">http://mando.org/blog/?p=183</guid>
		<description><![CDATA[What the duece is Fingr?
Fingr is a Camping mini-app that Web 2.0-ifies Finger.
In other words, it takes something that works just fine and makes it kinda lame :).
The idea is that you can create a jabber account and link it to your Fingr install, send messages to said jabber account and VOILA! They appear as [...]]]></description>
			<content:encoded><![CDATA[<p><b>What the duece is Fingr?</b></p>
<p>Fingr is a Camping mini-app that Web 2.0-ifies Finger.</p>
<p>In other words, it takes something that works just fine and makes it kinda lame :).</p>
<p>The idea is that you can create a jabber account and link it to your Fingr install, send messages to said jabber account and VOILA! They appear as though by magic in your browser.</p>
<p><b>I liked this better when it was called Twitter!</b></p>
<p>Yeah, I know. In fact, it uses xmpp4r-simple, which was written by the Twitter folks. Think of Fingr as an anti-social version of Twitter: it&#8217;s for you and you alone, unless you choose to share the URL.</p>
<p><b>How?</b></p>
<p>Well, like I said before, it uses Camping and xmpp4r-simple. By association, it requires Ruby. It also needs rss/maker, but I think that&#8217;s included with the price of Ruby.</p>
<p>All in all, it&#8217;s pretty simple. Copy config.yml.sample over to config.yml, enter the proper info and start it up:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="color: #FCFFBA;">camping fingr.rb</pre></div></div>

<p>By default, it&#8217;ll start up on port 3301. If you want it to run somewhere else, just drop the &#8211;port option on it:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="color: #FCFFBA;">camping --port <span style="color: #000000;color: #DDD;">1234</span> fingr.rb</pre></div></div>

</p>
<p><b>Goodbye and good luck!</b></p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2007/11/05/fingr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>S3 vs. JW mp3 player</title>
		<link>http://mando.org/blog/2007/10/24/s3-vs-jw-mp3-player/</link>
		<comments>http://mando.org/blog/2007/10/24/s3-vs-jw-mp3-player/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 04:46:55 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://mando.org/blog/?p=182</guid>
		<description><![CDATA[I&#8217;ve been doing some work on the Valley Christian Assembly website:  in particular, adding in a way for my Pop to share recorded sermons.  The sermons are stored on S3 and I wanted to come up with a cool way for folks to listen to them.
Enter the JW MP3 Player.
Here&#8217;s a tip: If [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing some work on the <a href="http://www.valleychristianassembly.org">Valley Christian Assembly</a> website:  in particular, adding in a way for my Pop to share recorded sermons.  The sermons are stored on <a href="http://aws.amazon.com/s3">S3</a> and I wanted to come up with a cool way for folks to listen to them.</p>
<p>Enter the <a href="http://www.jeroenwijering.com/?item=JW_MP3_Player">JW MP3 Player</a>.</p>
<p>Here&#8217;s a tip: If you&#8217;re using S3, you&#8217;ll need to encode the URI to keep Flash from pooping it&#8217;s pants.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="color: #FCFFBA;"><span style="color: #003366; font-weight: bold;color: #577A61;">var</span> so <span style="color: #339933;color: white;">=</span> <span style="color: #003366; font-weight: bold;color: #577A61;">new</span> SWFObject<span style="color: #009900;color: white;">&#40;</span><span style="color: #3366CC;color: D8F2A5;">'mp3player.swf'</span><span style="color: #339933;color: white;">,</span><span style="color: #3366CC;color: D8F2A5;">'player'</span><span style="color: #339933;color: white;">,</span><span style="color: #3366CC;color: D8F2A5;">'320'</span><span style="color: #339933;color: white;">,</span><span style="color: #3366CC;color: D8F2A5;">'20'</span><span style="color: #339933;color: white;">,</span><span style="color: #3366CC;color: D8F2A5;">'7'</span><span style="color: #009900;color: white;">&#41;</span><span style="color: #339933;color: white;">;</span>
<span style="color: #003366; font-weight: bold;color: #577A61;">var</span> eURI <span style="color: #339933;color: white;">=</span> <span style="color: #000066; font-weight: bold;color: #B83A24;">encodeURI</span><span style="color: #009900;color: white;">&#40;</span><span style="color: #3366CC;color: D8F2A5;">'http://s3.amazonaws.com/BUCKET/KEY?STUFF'</span><span style="color: #009900;color: white;">&#41;</span><span style="color: #339933;color: white;">;</span>
so.<span style="color: #006600;">addVariable</span><span style="color: #009900;color: white;">&#40;</span><span style="color: #3366CC;color: D8F2A5;">&quot;file&quot;</span><span style="color: #339933;color: white;">,</span> <span style="color: #3366CC;color: D8F2A5;">&quot;a href=&quot;</span> <span style="color: #339933;color: white;">+</span> eURI<span style="color: #009900;color: white;">&#41;</span><span style="color: #339933;color: white;">;</span>
so.<span style="color: #006600;">addVariable</span><span style="color: #009900;color: white;">&#40;</span><span style="color: #3366CC;color: D8F2A5;">&quot;type&quot;</span><span style="color: #339933;color: white;">,</span> <span style="color: #3366CC;color: D8F2A5;">&quot;mp3&quot;</span><span style="color: #009900;color: white;">&#41;</span><span style="color: #339933;color: white;">;&lt;</span>br <span style="color: #339933;color: white;">/&gt;</span>
so.<span style="color: #006600;">addVariable</span><span style="color: #009900;color: white;">&#40;</span><span style="color: #3366CC;color: D8F2A5;">&quot;width&quot;</span><span style="color: #339933;color: white;">,</span><span style="color: #3366CC;color: D8F2A5;">&quot;320&quot;</span><span style="color: #009900;color: white;">&#41;</span><span style="color: #339933;color: white;">;&lt;</span>br <span style="color: #339933;color: white;">/&gt;</span>
so.<span style="color: #006600;">addVariable</span><span style="color: #009900;color: white;">&#40;</span><span style="color: #3366CC;color: D8F2A5;">&quot;height&quot;</span><span style="color: #339933;color: white;">,</span><span style="color: #3366CC;color: D8F2A5;">&quot;20&quot;</span><span style="color: #009900;color: white;">&#41;</span><span style="color: #339933;color: white;">;&lt;</span>br <span style="color: #339933;color: white;">/&gt;</span></pre></div></div>

<p>Consider encodeURI(uri) like your friend that comes over for a party, has a great time, cleans up your house for you and then goes home :).</p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2007/10/24/s3-vs-jw-mp3-player/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lispy</title>
		<link>http://mando.org/blog/2007/09/24/lispy/</link>
		<comments>http://mando.org/blog/2007/09/24/lispy/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 21:39:17 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<category><![CDATA[lisp tutorial]]></category>

		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://mando.org/blog/?p=179</guid>
		<description><![CDATA[Peter Seibel (author of Practical Common Lisp) has asked for some Google juice.  I love the book and so I thought I would contribute what little Google juice I&#8217;VE got to helping getting Practical Common Lisp recognized as the defacto Lisp tutorial.
I know&#8230;  real smooth :).
]]></description>
			<content:encoded><![CDATA[<p>Peter Seibel (author of <a href="http://www.gigamonkeys.com/book/">Practical Common Lisp</a>) <a href="http://www.gigamonkeys.com/blog/2007/09/19/bomb-me.html">has asked for some Google juice</a>.  I love the book and so I thought I would contribute what little Google juice I&#8217;VE got to helping getting Practical Common Lisp recognized as the defacto <a href="http://www.gigamonkeys.com/book/">Lisp tutorial</a>.</p>
<p>I know&#8230;  real smooth :).</p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2007/09/24/lispy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>For Future Reference</title>
		<link>http://mando.org/blog/2007/07/10/for-future-reference/</link>
		<comments>http://mando.org/blog/2007/07/10/for-future-reference/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 07:09:53 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[Computers]]></category>

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

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

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

		<guid isPermaLink="false">http://mando.org/blog/?p=175</guid>
		<description><![CDATA[Since I always seem to forget how to do this, here are the steps to create a new Rails project and import it into subversion:

mkdir PROJECT_NAME
cd PROJECT_NAME
mkdir branches
mkdir tags
mkdir trunk
rails trunk
cd ../
svn import -m &#8220;Initial import.&#8221; PROJECT_NAME

Done and done :).
]]></description>
			<content:encoded><![CDATA[<p>Since I always seem to forget how to do this, here are the steps to create a new Rails project and import it into subversion:
<ol>
<li>mkdir PROJECT_NAME</li>
<li>cd PROJECT_NAME</li>
<li>mkdir branches</li>
<li>mkdir tags</li>
<li>mkdir trunk</li>
<li>rails trunk</li>
<li>cd ../</li>
<li>svn import -m &#8220;Initial import.&#8221; PROJECT_NAME</li>
</ol>
<p>Done and done :).</p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2007/07/10/for-future-reference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>All Done</title>
		<link>http://mando.org/blog/2007/04/03/all-done/</link>
		<comments>http://mando.org/blog/2007/04/03/all-done/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 07:56:46 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[General]]></category>

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

		<guid isPermaLink="false">http://mando.org/blog/?p=173</guid>
		<description><![CDATA[I&#8217;m all done here.  Check out http://mando.tumblr.com for all future updates.
*Edit* Just kidding 
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m all done here.  Check out http://mando.tumblr.com for all future updates.</p>
<p>*Edit* Just kidding <img src='http://mando.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2007/04/03/all-done/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Decisions, Decisions</title>
		<link>http://mando.org/blog/2007/04/02/decisions-decisions/</link>
		<comments>http://mando.org/blog/2007/04/02/decisions-decisions/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 05:53:28 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[General]]></category>

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

		<guid isPermaLink="false">http://mando.org/blog/?p=172</guid>
		<description><![CDATA[Current conversation in my head:
 Me: I need a more formal presence on teh intarweb.
Inner Me: Why?
Me: A couple of reasons:
Me: 1) I need to build the Mando Escamilla Brand.
Me: 2) I need a place to put all the stuff I work on.
Me: 3) I never blog any more, so mando.org is all empty and [...]]]></description>
			<content:encoded><![CDATA[<p>Current conversation in my head:</p>
<blockquote><p> Me: I need a more formal presence on teh intarweb.<br />
Inner Me: Why?<br />
Me: A couple of reasons:<br />
Me: 1) I need to build the Mando Escamilla Brand.<br />
Me: 2) I need a place to put all the stuff I work on.<br />
Me: 3) I never blog any more, so mando.org is all empty and stuff.<br />
Me: 4) No one knows about me.<br />
Inner Me: *sigh*.  Let&#8217;s take these in reverse order, shall we?<br />
Inner Me: 4)  Who cares?  Your friends and family know all about you.<br />
Inner Me: Why should you care that Joe Random knows you?<br />
Inner Me: 3)  What about <a href="http://mando.tumblr.com">your tumblelog</a>?  You do that all the time.<br />
Inner Me: 2)  Ok, I&#8217;ll give you that one.<br />
Inner Me: 1)  Can you BE any more obnoxious?<br />
Me:  Alright, alright.<br />
Me:  So, you&#8217;re saying incorporate the tumblelog and some static pages for projects?<br />
Inner Me:  Actually, I&#8217;m saying it&#8217;s almost midnight and you should be in bed before the super flu kills you, but we&#8217;ll go with your idea since you never listen to me anyway.<br />
Me:  Hmm&#8230;.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2007/04/02/decisions-decisions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Yankee Stadium</title>
		<link>http://mando.org/blog/2006/08/17/new-yankee-stadium/</link>
		<comments>http://mando.org/blog/2006/08/17/new-yankee-stadium/#comments</comments>
		<pubDate>Thu, 17 Aug 2006 22:52:10 +0000</pubDate>
		<dc:creator>mando</dc:creator>
		
		<category><![CDATA[General]]></category>

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

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

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

		<guid isPermaLink="false">http://mando.org/blog/?p=170</guid>
		<description><![CDATA[ 
It&#8217;s nice, but I&#8217;m glad I&#8217;ve been to the House that Babe Built (on opening day, no less :). Rumor has it there&#8217;s gonna be even less seats in the new stadium, which will drive the ticket prices all the higher.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/36521986557@N01/217820864"> <img src="http://static.flickr.com/82/217820864_15a34d3dca_d.jpg" border="0" height="279" width="449" /></a></p>
<p>It&#8217;s nice, but I&#8217;m glad I&#8217;ve been to the House that Babe Built (on opening day, no less :). Rumor has it there&#8217;s gonna be even less seats in the new stadium, which will drive the ticket prices all the higher.</p>
]]></content:encoded>
			<wfw:commentRss>http://mando.org/blog/2006/08/17/new-yankee-stadium/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
