<?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>A Ruby — in the Sky —</title>
	<atom:link href="http://maelstromsky.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://maelstromsky.wordpress.com</link>
	<description>It&#039;s far more Ruby to surmise and estimate the Perl</description>
	<lastBuildDate>Mon, 16 Jan 2012 01:16:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='maelstromsky.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>A Ruby — in the Sky —</title>
		<link>http://maelstromsky.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://maelstromsky.wordpress.com/osd.xml" title="A Ruby — in the Sky —" />
	<atom:link rel='hub' href='http://maelstromsky.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Another way to super</title>
		<link>http://maelstromsky.wordpress.com/2012/01/15/another-way-to-super/</link>
		<comments>http://maelstromsky.wordpress.com/2012/01/15/another-way-to-super/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 01:16:58 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Super]]></category>

		<guid isPermaLink="false">https://maelstromsky.wordpress.com/?p=140</guid>
		<description><![CDATA[class Creature def initialize name, hp @name, @hp = name, hp end end class Hostile &#60; Creature def initialize name, hp, ap super name, hp @ap = ap end end<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=140&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code>class Creature<br />
  def initialize name, hp<br />
    @name, @hp = name, hp<br />
  end<br />
end</code><br />
<code>class Hostile &lt; Creature<br />
  def initialize name, hp, ap<br />
    super name, hp<br />
    @ap = ap<br />
  end<br />
end</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=140&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2012/01/15/another-way-to-super/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title>&amp;:</title>
		<link>http://maelstromsky.wordpress.com/2011/11/30/134/</link>
		<comments>http://maelstromsky.wordpress.com/2011/11/30/134/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 04:29:25 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maelstromsky.wordpress.com/?p=134</guid>
		<description><![CDATA[The ampersand-colon combo turns out to be quite useful in saving keystrokes. What I had been doing was creating a new array of numbers. To do so quickly, I needed to use %w, which makes an array of strings. The &#8230; <a href="http://maelstromsky.wordpress.com/2011/11/30/134/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=134&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: ruby;">&amp;:</pre></p>
<p>The ampersand-colon combo turns out to be quite useful in saving keystrokes. What I had been doing was creating a new array of numbers. To do so quickly, I needed to use %w, which makes an array of strings.</p>
<p><pre class="brush: ruby;">ary = %w(23 45 68 120 345 760 1220)</pre></p>
<p>The old way I converted to a number was the following:</p>
<p><pre class="brush: ruby;">ary.map! { |x| x.to_i }</pre></p>
<p>(Naturally, I prefer map over collect, which does the same thing, not just because of the keystroke, but because I used Scheme before.) I discovered a shorter way:</p>
<p><pre class="brush: ruby;">ary.map!(&amp;:to_i)</pre></p>
<p>Actually, instead of doing it separately, why not combine the whole thing?</p>
<p><pre class="brush: ruby;">ary = %w(23 45 68 120 345 760 1220).map(&amp;:to_i)</pre></p>
<p>It saves using exclamation point and feels less dangerous.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=134&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2011/11/30/134/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title>Ruby&#8217;s super</title>
		<link>http://maelstromsky.wordpress.com/2011/09/03/rubys-super/</link>
		<comments>http://maelstromsky.wordpress.com/2011/09/03/rubys-super/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 06:15:46 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maelstromsky.wordpress.com/?p=128</guid>
		<description><![CDATA[That, in short, is how super works. Taken from Beginning Ruby by Peter Cooper. in short calls up the parent class&#8217; instance method.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=128&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: ruby;">

class Person
  def initialize(name)
    @name = name
  end

  def name
    return @name
  end
end

class Doctor &lt; Person
  def name
    “Dr. “ + super
  end
end
</pre></p>
<p>That, in short, is how super works. Taken from <em>Beginning Ruby</em> by Peter Cooper. <pre class="brush: ruby;">super</pre></p>
<p>in short calls up the parent class&#8217; instance method.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=128&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2011/09/03/rubys-super/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title>Obama Turns 50 Despite Republican Opposition &#124; The Onion &#8211; Americas Finest News Source</title>
		<link>http://maelstromsky.wordpress.com/2011/08/04/obama-turns-50-despite-republican-opposition-the-onion-americas-finest-news-source/</link>
		<comments>http://maelstromsky.wordpress.com/2011/08/04/obama-turns-50-despite-republican-opposition-the-onion-americas-finest-news-source/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:01:38 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maelstromsky.wordpress.com/?p=125</guid>
		<description><![CDATA[Obama Turns 50 Despite Republican Opposition &#124; The Onion &#8211; Americas Finest News Source.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=125&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.theonion.com/articles/obama-turns-50-despite-republican-opposition,21061/">Obama Turns 50 Despite Republican Opposition | The Onion &#8211; Americas Finest News Source</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=125&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2011/08/04/obama-turns-50-despite-republican-opposition-the-onion-americas-finest-news-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title>Atlantis</title>
		<link>http://maelstromsky.wordpress.com/2011/07/21/atlantis/</link>
		<comments>http://maelstromsky.wordpress.com/2011/07/21/atlantis/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 17:24:03 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maelstromsky.wordpress.com/?p=123</guid>
		<description><![CDATA[Like most endings, even though I get the sense of historic proportion of not having a shuttle space program, I also recognize that it was a flawed endeavor. It was not reusable in the way that Nixon claimed it was. &#8230; <a href="http://maelstromsky.wordpress.com/2011/07/21/atlantis/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=123&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Like most endings, even though I get the sense of historic proportion of not having a shuttle space program, I also recognize that it was a flawed endeavor. It was not reusable in the way that Nixon claimed it was. Once such a program started, everything else ended because we no longer strove to go to the moon again, to Mars or to find other means of transportation, to defy the laws of physics.</p>
<p>Like most endings, I do not feel the tragedy because the shuttle program was born before my time. It felt like a common occurrence to have something flying off into space&#8211;perhaps I lost the capacity for awe.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=123&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2011/07/21/atlantis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title>Gauche and sinister</title>
		<link>http://maelstromsky.wordpress.com/2011/01/12/gauche-and-sinister/</link>
		<comments>http://maelstromsky.wordpress.com/2011/01/12/gauche-and-sinister/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 21:19:30 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://maelstromsky.wordpress.com/2011/01/12/gauche-and-sinister/</guid>
		<description><![CDATA[Such is left-handedness. I am not left-handed, but I am sensitive to their plight.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=115&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Such is left-handedness. I am not left-handed, but I am sensitive to their plight.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=115&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2011/01/12/gauche-and-sinister/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title>Scenarios For American Collapse</title>
		<link>http://maelstromsky.wordpress.com/2010/12/07/scenarios-for-american-collapse/</link>
		<comments>http://maelstromsky.wordpress.com/2010/12/07/scenarios-for-american-collapse/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 22:17:21 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maelstromsky.wordpress.com/?p=113</guid>
		<description><![CDATA[How America will collapse by 2025 &#8211; U.S. Economy &#8211; Salon.com. Via Andrew Sullivan. It is very credible.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=113&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:13px;font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"></p>
<p style="color:#444444;font-family:Georgia, 'Bitstream Charter', serif;line-height:1.5;font-size:16px;margin-bottom:24px;"><a style="color:#ff4b33;font-family:Georgia, 'Bitstream Charter', serif;line-height:1.5;" href="http://www.salon.com/news/feature/2010/12/06/america_collapse_2025">How America will collapse by 2025 &#8211; U.S. Economy &#8211; Salon.com</a>.</p>
<p></span></p>
<p><span style="white-space:pre;"> </span>Via <a href="http://andrewsullivan.theatlantic.com/the_daily_dish/2010/12/scenarios-for-american-collapse.html">Andrew Sullivan</a>. It is very credible.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=113&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2010/12/07/scenarios-for-american-collapse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title>Comfort</title>
		<link>http://maelstromsky.wordpress.com/2010/11/19/comfort/</link>
		<comments>http://maelstromsky.wordpress.com/2010/11/19/comfort/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 06:37:50 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maelstromsky.wordpress.com/?p=110</guid>
		<description><![CDATA[&#8220;What the English call &#8216;comfort&#8217; is something inexhaustible and illimitable. Others can reveal to you that what you take to be comfort at any stage is discomfort, and these discoveries never come to an end. Hence the need for greater &#8230; <a href="http://maelstromsky.wordpress.com/2010/11/19/comfort/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=110&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;What the English call &#8216;comfort&#8217; is something inexhaustible and illimitable. Others can reveal to you that what you take to be comfort at any stage is discomfort, and these discoveries never come to an end. Hence the need for greater comfort does not exactly arise within you directly; it is suggested to you by those who hope to make a profit from its creation.&#8221; &#8212; Hegel</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=110&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2010/11/19/comfort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title>Bacteria &#8216;R&#8217; Us</title>
		<link>http://maelstromsky.wordpress.com/2010/10/24/bacteria-r-us/</link>
		<comments>http://maelstromsky.wordpress.com/2010/10/24/bacteria-r-us/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 18:56:54 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://maelstromsky.wordpress.com/?p=108</guid>
		<description><![CDATA[In essence, the argument centers on whether the biosphere should be characterized as a tree of life or an interactive web. via Bacteria &#8216;R&#8217; Us<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=108&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In essence, the argument centers on whether the biosphere should be characterized as a tree of life or an interactive web.</p>
<p>via <a href="http://www.miller-mccune.com/science-environment/bacteria-r-us-23628/">Bacteria &#8216;R&#8217; Us</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=108&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2010/10/24/bacteria-r-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://maelstromsky.wordpress.com/2010/03/19/98/</link>
		<comments>http://maelstromsky.wordpress.com/2010/03/19/98/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 20:35:40 +0000</pubDate>
		<dc:creator>AJ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maelstromsky.wordpress.com/2010/03/19/98/</guid>
		<description><![CDATA[Four Ways to Mix Fonts<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=98&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.typography.com/email/2010_03/index_tw.htm">Four Ways to Mix Fonts</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maelstromsky.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maelstromsky.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maelstromsky.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maelstromsky.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maelstromsky.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maelstromsky.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maelstromsky.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maelstromsky.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maelstromsky.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maelstromsky.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maelstromsky.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maelstromsky.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maelstromsky.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maelstromsky.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maelstromsky.wordpress.com&amp;blog=3620583&amp;post=98&amp;subd=maelstromsky&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maelstromsky.wordpress.com/2010/03/19/98/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">gamin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
