<?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>Senplicity</title>
	<atom:link href="http://senplicity.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://senplicity.wordpress.com</link>
	<description>Foraging the World</description>
	<lastBuildDate>Mon, 02 May 2011 19:31:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='senplicity.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Senplicity</title>
		<link>http://senplicity.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://senplicity.wordpress.com/osd.xml" title="Senplicity" />
	<atom:link rel='hub' href='http://senplicity.wordpress.com/?pushpress=hub'/>
		<item>
		<title>More Ruby Syntax Fun</title>
		<link>http://senplicity.wordpress.com/2008/07/09/more-ruby-syntax-fun/</link>
		<comments>http://senplicity.wordpress.com/2008/07/09/more-ruby-syntax-fun/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 12:53:53 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[rad]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/?p=28</guid>
		<description><![CDATA[With the addition of Brian&#8217;s revised lcd and servo libraries, we&#8217;ve been working to ensure consistent syntax across the sketch.  The original screencast featured the following method calls: 1 class Quattro &#60; ArduinoSketch 2 3 input_pin 3, :as =&#62; :sensor 4 output_pin 13, :as =&#62; :led 5 6 7 def loop 8 reading = add_hysteresis [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=28&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With the addition of <a href="http://web.mac.com/brianbr/">Brian&#8217;s</a> revised lcd and servo libraries,  we&#8217;ve been working to ensure consistent syntax across the sketch.  The original <a title="Original Madrona Fork Screencast" href="http://www.vimeo.com/1272402">screencast</a> featured the following method calls:</p>
<div class="CodeRay">
<div class="code">
<pre><span class="no"> 1</span> <span class="r">class</span> <span class="cl">Quattro</span> &lt; <span class="co">ArduinoSketch</span>
<span class="no"> 2</span>
<span class="no"> 3</span>   input_pin <span class="i">3</span>, <span class="sy">:as</span> =&gt; <span class="sy">:sensor</span>
<span class="no"> 4</span>   output_pin <span class="i">13</span>, <span class="sy">:as</span> =&gt; <span class="sy">:led</span>
<span class="no"> 5</span>
<span class="no"> 6</span>
<span class="no"> 7</span>   <span class="r">def</span> <span class="fu">loop</span>
<span class="no"> 8</span>     reading = add_hysteresis sensor, <span class="i">8</span>
<span class="no"> 9</span>     blink led, <span class="i">100</span> <span class="r">if</span> reading &gt; <span class="i">100</span>
<span class="no"><strong>10</strong></span>     blink led, <span class="i">1000</span> <span class="r">if</span> reading &lt;= <span class="i">100</span>
<span class="no">11</span>   <span class="r">end</span>
<span class="no">12</span>
<span class="no">13</span> <span class="r">end</span></pre>
</div>
</div>
<p>However, isn&#8217;t dot notation more intuitive:</p>
<div class="CodeRay">
<div class="code">
<pre><span class="no"> 1</span> <span class="r">class</span> <span class="cl">Quattro</span> &lt; <span class="co">ArduinoSketch</span>
<span class="no"> 2</span>
<span class="no"> 3</span>   input_pin <span class="i">3</span>, <span class="sy">:as</span> =&gt; <span class="sy">:sensor</span>
<span class="no"> 4</span>   output_pin <span class="i">13</span>, <span class="sy">:as</span> =&gt; <span class="sy">:led</span>
<span class="no"> 5</span>
<span class="no"> 6</span>
<span class="no"> 7</span>   <span class="r">def</span> <span class="fu">loop</span>
<span class="no"> 8</span>     reading = add_hysteresis sensor, <span class="i">8</span>
<span class="no"> 9</span>     led.blink <span class="i">100</span> <span class="r">if</span> reading &gt; <span class="i">100</span>
<span class="no"><strong>10</strong></span>     led.blink <span class="i">1000</span> <span class="r">if</span> reading &lt;= <span class="i">100</span>
<span class="no">11</span>   <span class="r">end</span>
<span class="no">12</span>
<span class="no">13</span> <span class="r">end</span></pre>
</div>
</div>
<p>Today both work.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=28&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/07/09/more-ruby-syntax-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>
	</item>
		<item>
		<title>Madrona RAD input output pin syntax</title>
		<link>http://senplicity.wordpress.com/2008/07/07/madrona-rad-input-output-pin-syntax/</link>
		<comments>http://senplicity.wordpress.com/2008/07/07/madrona-rad-input-output-pin-syntax/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 16:04:48 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[rad]]></category>
		<category><![CDATA[madrona]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/?p=25</guid>
		<description><![CDATA[How do we make input and output pin declarations simple and straightforward?  The first pass used options to trigger pin behavior.  In the following example, setting a min and max sets up a servo, and the latch option sets up a button: 1 class InOutDemo &#60; ArduinoSketch 2 3 input_pin 6, :as =&#62; :button_one, :latch [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=25&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How do we make input and output pin declarations simple and straightforward?  The first pass used options to trigger pin behavior.  In the following example, setting a min and max sets up a servo, and the latch option sets up a button:</p>
<div class="CodeRay">
<div class="code">
<pre><span class="no">1</span> <span class="r">class</span> <span class="cl">InOutDemo</span> &lt; <span class="co">ArduinoSketch</span>
<span class="no">2</span>
<span class="no">3</span>   input_pin <span class="i">6</span>, <span class="sy">:as</span> =&gt; <span class="sy">:button_one</span>, <span class="sy">:latch</span> =&gt; <span class="sy"> <img src='http://s1.wp.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> ff</span>
<span class="no">4</span>   output_pin <span class="i">7</span>, <span class="sy">:as</span> =&gt; <span class="sy">:my_servo</span>, <span class="sy">:min</span> =&gt; <span class="i">700</span>, <span class="sy">:max</span> =&gt; <span class="i">2200</span>
<span class="no">5</span></pre>
</div>
</div>
<p>After working through this, the notion of a device option seems like a better choice:</p>
<div class="CodeRay">
<div class="code">
<pre><span class="no">1</span> <span class="r">class</span> <span class="cl">InOutDemo</span> &lt; <span class="co">ArduinoSketch</span>
<span class="no">2</span>
<span class="no">3</span>   input_pin <span class="i">6</span>, <span class="sy">:as</span> =&gt; <span class="sy">:button_one</span>, <span class="sy">:device</span> =&gt; <span class="sy">:button</span>
<span class="no">4</span>   output_pin <span class="i">7</span>, <span class="sy">:as</span> =&gt; <span class="sy">:my_servo</span>, <span class="sy">:device</span> =&gt; <span class="sy">:servo</span>
<span class="no">5</span>   output_pin <span class="i">8</span>, <span class="sy">:as</span> =&gt; <span class="sy">:my_lcd</span>, <span class="sy">:device</span> =&gt; <span class="sy">:sf_lcd</span>
<span class="no">6</span></pre>
</div>
</div>
<p>Declaring a device will setup default settings for that device.  For example, the servo will default to a min and max of 544 and 2400.  For LCD screens, the default serial rate and driver is setup.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=25&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/07/07/madrona-rad-input-output-pin-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>
	</item>
		<item>
		<title>Ruby on Bells</title>
		<link>http://senplicity.wordpress.com/2008/07/01/ruby-on-bells/</link>
		<comments>http://senplicity.wordpress.com/2008/07/01/ruby-on-bells/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 06:49:35 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[rad]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/?p=23</guid>
		<description><![CDATA[Madrona Fork is not located near Yosemite, but is an experimental fork of the fab Ruby Arduino Development gem.  I liked it so much I added a basic plugin structure and extended the sketch capabilities, as well as a few other goodies such as pin options for buttons and servos.  This video shows the forked [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=23&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style='text-align:center;'>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.vimeo.com/moogaloop.swf?clip_id=1261369&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA">
	<param name="quality" value="best" />
	<param name="allowfullscreen" value="true" />
	<param name="scale" value="showAll" />
	<param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=1261369&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" />
	<param name="wmode" value="opaque" />
</object>
</div>
<p>Madrona Fork is not located near Yosemite, but is an experimental fork of the fab Ruby Arduino Development gem.  I liked it so much I added a basic plugin structure and extended the sketch capabilities, as well as a few other goodies such as pin options for buttons and servos.  This video shows the forked code running three servos playing &#8220;song methods&#8221;.  Ruby and Arduino are simply a brilliant combination.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=23&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/07/01/ruby-on-bells/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>
	</item>
		<item>
		<title>Best Toy Ever Turns 50</title>
		<link>http://senplicity.wordpress.com/2008/01/28/best-toy-ever-turns-50/</link>
		<comments>http://senplicity.wordpress.com/2008/01/28/best-toy-ever-turns-50/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 18:40:46 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[lego]]></category>
		<category><![CDATA[toys]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/?p=21</guid>
		<description><![CDATA[The LEGO brick turns 50 at exactly 1:58 p.m. today, January 28, 2008, which explains the Google graphic: Via byTheBoxes<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=21&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bytheboxes.com/boxes/93-lego-turns-50"><img src="http://bytheboxes.com/boards/0000/0093/93_lg.png" border="0" height="256" width="416" /></a></p>
<p>The <span class="caps">LEGO</span> brick turns 50 at exactly 1:58 p.m. today, January 28, 2008, which explains the Google graphic:</p>
<p><a href="http://senplicity.wordpress.com/2008/01/28/best-toy-ever-turns-50/google-lego-tribute/" rel="attachment wp-att-22" title="Google Lego Tribute"><img src="http://senplicity.files.wordpress.com/2008/01/lego08.thumbnail.gif?w=480" alt="Google Lego Tribute" border="0" /></a></p>
<p>Via <a href="http://bytheboxes.com/boxes/93-lego-turns-50">byTheBoxes</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=21&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/01/28/best-toy-ever-turns-50/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>

		<media:content url="http://bytheboxes.com/boards/0000/0093/93_lg.png" medium="image" />

		<media:content url="http://senplicity.files.wordpress.com/2008/01/lego08.thumbnail.gif" medium="image">
			<media:title type="html">Google Lego Tribute</media:title>
		</media:content>
	</item>
		<item>
		<title>No Fraud Detection System</title>
		<link>http://senplicity.wordpress.com/2008/01/28/no-fraud-detection-system/</link>
		<comments>http://senplicity.wordpress.com/2008/01/28/no-fraud-detection-system/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 17:48:11 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[derivatives]]></category>
		<category><![CDATA[Jérôme Kerviel]]></category>
		<category><![CDATA[Société Générale]]></category>
		<category><![CDATA[trading]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/2008/01/28/no-fraud-detection-system/</guid>
		<description><![CDATA[Ok, Jérôme Kerviel confesses to $70 million in &#8220;unauthorized trades&#8221; in an effort to become a &#8220;star trader&#8221;.  Quelle ambition.  Société Générale&#8217;s fraud detection system isn&#8217;t.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=19&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bytheboxes.com/boxes/91-j-r-me-kerviel-soci-t-g-n-rale"><img src="http://bytheboxes.com/boards/0000/0091/91_lg.png" border="0" height="256" width="416" /></a></p>
<p>Ok, Jérôme Kerviel confesses to $70 million in &#8220;unauthorized trades&#8221; in an effort to become a  &#8220;star trader&#8221;.  Quelle ambition.  Société Générale&#8217;s fraud detection system isn&#8217;t.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=19&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/01/28/no-fraud-detection-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>

		<media:content url="http://bytheboxes.com/boards/0000/0091/91_lg.png" medium="image" />
	</item>
		<item>
		<title>Lucioano Podcaminsky</title>
		<link>http://senplicity.wordpress.com/2008/01/24/lucioano-podcaminsky/</link>
		<comments>http://senplicity.wordpress.com/2008/01/24/lucioano-podcaminsky/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 21:59:04 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Got Milk]]></category>
		<category><![CDATA[Luciano Podcaminsky]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/2008/01/24/lucioano-podcaminsky/</guid>
		<description><![CDATA[On a light hearted note.  Besides creating “Surgery” for Nike Women online, Luciano Podcaminsky demonstrates a light Pythonesque “Got Milk?” ad: via shape + colour<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=18&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On a light hearted note.  Besides creating “<a href="http://www.youtube.com/watch?v=2c_jLMIEXhA">Surgery</a>” for Nike Women online, Luciano Podcaminsky demonstrates a light Pythonesque “Got Milk?” ad:</p>
<p><font face="Courier New"><font face="Courier New"><span style="text-align:center; display: block;"><a href="http://senplicity.wordpress.com/2008/01/24/lucioano-podcaminsky/"><img src="http://img.youtube.com/vi/4dam1SyKkOQ/2.jpg" alt="" /></a></span></font></font></p>
<p><font face="Courier New"></font></p>
<p><font face="Courier New">via <a href="http://shapeandcolour.wordpress.com/2008/01/22/luciano-podcaminsky-nike-women-surgery/">shape + colour</a></font></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=18&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/01/24/lucioano-podcaminsky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>
	</item>
		<item>
		<title>Beijing Air Quality Taking the Stage</title>
		<link>http://senplicity.wordpress.com/2008/01/24/beijing-air-quality-taking-the-stage/</link>
		<comments>http://senplicity.wordpress.com/2008/01/24/beijing-air-quality-taking-the-stage/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 07:19:59 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[air pollution]]></category>
		<category><![CDATA[beijing]]></category>
		<category><![CDATA[olympics]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/2008/01/24/beijing-air-quality-taking-the-stage/</guid>
		<description><![CDATA[&#8220;Should I run behind a bus and breathe in the exhaust? Should I train on the highway during rush hour? Is there any way to acclimate myself to pollution?&#8221; Nice lead to a tough subject, Beijing Air Quality.  by The Boxes also points to BeijingAirblog<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=17&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bytheboxes.com/boxes/84-air-pollution-in-bejing"><img src="http://bytheboxes.com/boards/0000/0084/84_lg.png" border="0" height="256" width="416" /></a></p>
<p>&#8220;Should I run behind a bus and breathe in the exhaust? Should I train on the highway during rush hour? Is there any way to acclimate myself to pollution?&#8221; Nice lead to a tough subject, Beijing Air Quality.  <a href="http://bytheboxes.com">by The Boxes</a> also points to <a href="http://pyongyangsquare.com/beijingair/">BeijingAirblog</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=17&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/01/24/beijing-air-quality-taking-the-stage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>

		<media:content url="http://bytheboxes.com/boards/0000/0084/84_lg.png" medium="image" />
	</item>
		<item>
		<title>Ethanol from Corn</title>
		<link>http://senplicity.wordpress.com/2008/01/12/ethanolo-from-corn/</link>
		<comments>http://senplicity.wordpress.com/2008/01/12/ethanolo-from-corn/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 18:55:13 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cellulose]]></category>
		<category><![CDATA[corn]]></category>
		<category><![CDATA[energy]]></category>
		<category><![CDATA[ethanol]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/2008/01/12/ethanolo-from-corn/</guid>
		<description><![CDATA[Making ethanol from corn is expensive, using 77% of its stored energy just to produce. Cellulosic ethanol which requires significantly less power to produce is ethanol produced from cellulose instead of corn starch. More corn worries: The enormous volume of corn required by the ethanol industry is sending shock waves through the food system.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=14&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bytheboxes.com/boxes/77-ethanol-from-corn-vs-cellulose" title="Ethanol from Corn"><img border="0" width="416" src="http://bytheboxes.com/boards/0000/0077/77_lg.png" alt="Ethanol from Corn" height="256" /></a></p>
<p>Making ethanol from corn is expensive, using 77% of its stored energy just to produce. Cellulosic ethanol which requires significantly less power to produce is ethanol produced from cellulose instead of corn starch. More corn worries: The enormous volume of corn required by the ethanol industry is sending shock waves through the food system.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=14&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/01/12/ethanolo-from-corn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>

		<media:content url="http://bytheboxes.com/boards/0000/0077/77_lg.png" medium="image">
			<media:title type="html">Ethanol from Corn</media:title>
		</media:content>
	</item>
		<item>
		<title>Jared Diamond on Consumption</title>
		<link>http://senplicity.wordpress.com/2008/01/10/13/</link>
		<comments>http://senplicity.wordpress.com/2008/01/10/13/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 16:37:02 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[consumption]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[Jared Diamond]]></category>
		<category><![CDATA[population]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/2008/01/10/13/</guid>
		<description><![CDATA[Via by the boxes<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=13&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bytheboxes.com/boxes/68-jared-diamond-on-consumption"><img src="http://bytheboxes.com/boards/0000/0068/68_lg.png" alt="Jared Diamond on Consumption" border="0" height="256" width="416" /></a></p>
<p>Via <a href="http://bytheboxes.com">by the boxes</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=13&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/01/10/13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>

		<media:content url="http://bytheboxes.com/boards/0000/0068/68_lg.png" medium="image">
			<media:title type="html">Jared Diamond on Consumption</media:title>
		</media:content>
	</item>
		<item>
		<title>Ice Caps</title>
		<link>http://senplicity.wordpress.com/2008/01/10/ice-caps/</link>
		<comments>http://senplicity.wordpress.com/2008/01/10/ice-caps/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 16:33:41 +0000</pubDate>
		<dc:creator>senplicity</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[glaciers]]></category>
		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://senplicity.wordpress.com/2008/01/10/ice-caps/</guid>
		<description><![CDATA[Via byTheBoxes<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=12&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bytheboxes.com/boxes/74-ice-caps"><img border="0" width="416" src="http://bytheboxes.com/boards/0000/0074/74_lg.png" alt="Ice Caps on By The Boxes" height="256" /></a></p>
<p>Via <a href="http://bytheboxes.com" title="byTheBoxes">byTheBoxes</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/senplicity.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/senplicity.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/senplicity.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/senplicity.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/senplicity.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/senplicity.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/senplicity.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/senplicity.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/senplicity.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/senplicity.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/senplicity.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/senplicity.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/senplicity.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/senplicity.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/senplicity.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/senplicity.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=senplicity.wordpress.com&amp;blog=1669804&amp;post=12&amp;subd=senplicity&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://senplicity.wordpress.com/2008/01/10/ice-caps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8d9128673b194eec2fc15832d51e401?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">senplicity</media:title>
		</media:content>

		<media:content url="http://bytheboxes.com/boards/0000/0074/74_lg.png" medium="image">
			<media:title type="html">Ice Caps on By The Boxes</media:title>
		</media:content>
	</item>
	</channel>
</rss>
