<?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>Lane&#039;s Blog &#187; Haskell</title>
	<atom:link href="http://blog.downstairspeople.org/category/haskell/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.downstairspeople.org</link>
	<description>A blog of fleshlings and robots.</description>
	<lastBuildDate>Wed, 25 Jan 2012 12:42:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.downstairspeople.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Lane&#039;s Blog &#187; Haskell</title>
		<link>http://blog.downstairspeople.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.downstairspeople.org/osd.xml" title="Lane&#039;s Blog" />
	<atom:link rel='hub' href='http://blog.downstairspeople.org/?pushpress=hub'/>
		<item>
		<title>The One Function per Typeclass Rule</title>
		<link>http://blog.downstairspeople.org/2011/03/16/type-coercion-in-haskell/</link>
		<comments>http://blog.downstairspeople.org/2011/03/16/type-coercion-in-haskell/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 08:00:21 +0000</pubDate>
		<dc:creator>Christopher Lane Hinson</dc:creator>
				<category><![CDATA[Haskell]]></category>

		<guid isPermaLink="false">http://clanehin.wordpress.com/?p=293</guid>
		<description><![CDATA[After about five years programming in Haskell, I think we need a rule:  Only put one function in a typeclass. Why?  Because inevitably someone comes along with a data type for which one or the other function of a typeclass &#8230; <a href="http://blog.downstairspeople.org/2011/03/16/type-coercion-in-haskell/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.downstairspeople.org&amp;blog=16567664&amp;post=293&amp;subd=clanehin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After about five years programming in Haskell, I think we need a rule:  Only put one function in a typeclass.</p>
<p>Why?  Because inevitably someone comes along with a data type for which one or the other function of a typeclass is perfectly suited, and yet another function of the same typeclass is not implementable.</p>
<p>Here are some examples of consequences of breaking the rule:</p>
<ol>
<li><a href="http://www.randomhacks.net/articles/2007/03/15/data-set-monad-haskell-macros">The Infamous Set Monad</a>, which requires splitting Monad in half. (Monad)</li>
<li>All of the abstract ways to construct Nothing: fail (Monad), mempty (Monoid), mzero (MonadPlus), empty (Alternative).  Not surprisingly, all of these typeclasses are subtly related.</li>
<li>The natural numbers, which have a minBound, but not a maxBound (Bounded) . . .</li>
<li>. . . and which support addition and multiplication, but aren&#8217;t closed under subtraction and for which the concept of a sign does not exist (Num).</li>
<li>My own <a href="http://blog.downstairspeople.org/2010/07/17/memoized-dataflow-streams/">memoizable message</a> type, which would like to implement Applicative, but needs a monadic computation to implement pure. (Applicative)</li>
</ol>
<p>It&#8217;s a little extra typing to write multiple &#8220;class . . . where&#8221; clauses for each type that needs to implement a large number of type-indexed functions, but it&#8217;s quite easy to combine related typeclasses when appropriate, as follows:</p>
<p><pre class="brush: plain;">
class Foo a where
    foo :: a -&gt; b

class Bar a where
    bar :: a -&gt; b

class (Foo a,Bar a) =&gt; FooBar a where
    {this space intentionally left blank}
</pre></p>
<p>In conclusion, you should definitely follow this rule if I have convinced you that it is a good idea to follow it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clanehin.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clanehin.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clanehin.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clanehin.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clanehin.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clanehin.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clanehin.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clanehin.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clanehin.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clanehin.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clanehin.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clanehin.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clanehin.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clanehin.wordpress.com/293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.downstairspeople.org&amp;blog=16567664&amp;post=293&amp;subd=clanehin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.downstairspeople.org/2011/03/16/type-coercion-in-haskell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68435a17514570d7c6144d91a0915139?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">clanehin</media:title>
		</media:content>
	</item>
		<item>
		<title>Memoized Dataflow Streams</title>
		<link>http://blog.downstairspeople.org/2010/07/17/memoized-dataflow-streams/</link>
		<comments>http://blog.downstairspeople.org/2010/07/17/memoized-dataflow-streams/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 21:06:45 +0000</pubDate>
		<dc:creator>Christopher Lane Hinson</dc:creator>
				<category><![CDATA[Haskell]]></category>

		<guid isPermaLink="false">http://blog.downstairspeople.org/?p=170</guid>
		<description><![CDATA[In reactive programming we can choose between two models: &#8220;pull,&#8221; in which we run a computation each time output is required, and &#8220;push,&#8221; in which we run the computation each time input arrives. Which model we use depends on whether &#8230; <a href="http://blog.downstairspeople.org/2010/07/17/memoized-dataflow-streams/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.downstairspeople.org&amp;blog=16567664&amp;post=170&amp;subd=clanehin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In reactive programming we can choose between two models: &#8220;pull,&#8221; in which we run a computation each time output is required, and &#8220;push,&#8221; in which we run the computation each time input arrives.</p>
<p>Which model we use depends on whether we are working with high-frequency or low-frequency data.  If we are writing a piece of avionics software that measures pitch, yaw, and roll, then we need to constantly adjust the plane&#8217;s aerodynamic surfaces based on those variables.  We don&#8217;t need a notification when these variables change, because they change constantly.  The pull model would be perfect in this case.</p>
<p>On the other hand, engine temperature is every bit as critical to the health of the vehicle, but presumably that variable remains in equilibrium for long stretches of time, and small variations aren&#8217;t important.  We don&#8217;t want to waste CPU time monitoring temperature 100 cycles per second.  We might simply want to receive a notification whenever the engine temperature changes by 1 degree or more.  The push model works better here.</p>
<p>The problem:  How do I efficiently embed a low-frequency signal in a high-frequency channel?  If I pass the low-frequency signal naively, it will work, but entail much redundant computation.</p>
<p>When we want to avoid recomputing a value, we often use a memoization strategy.  However, in this case we need to memoize a data stream, not a function.</p>
<p>In the engine temperature example, it would be easy to memoize a function of type Int -&gt; a.  But we want to compose this function as part of a signal.  After all, if the engine temperature is low frequency, then so is any signal derived from the engine temperature.  The chain of transformations should be memoized along its entire length.  Further, this function risks artificially escalating a meaningless low-amplitude high-frequency component of an otherwise low frequency signal by imposing an arbitrary boundary: suppose that some engine vibration causes the temperature to oscillate rapidly between 198.9 and 199.05 degrees, which would truncate to 198 and 199?  This does not yield the notification heuristic we are looking for.</p>
<p>The solution:  Tag information with a unique signature at its point of departure and then memoize it at the point of arrival.  Transformations of the data stream also need to be tagged.  A source signature is either a unique integer, or an annotation of applying one signature to another. There is some overhead associated with comparing signatures, but this overhead can not be greater than the cost of performing the underlying operations.</p>
<p>Memoizable messages are very similar to applicative functors.  They can not, however, implement the Control.Applicative interface, because any pure constructor would be unsigned and therefore destroy memoization.</p>
<p>This memoization scheme requires three operations:</p>
<ul>
<li>Transmit: Sign a message with a unique signature, indicating its source.  If a subsequent signal is sufficiently similar, reuse the same signature.</li>
<li>Receive: Unpack a signal, memoizing against the signature of the previous input.</li>
<li>Apply: Combine two signals with their signatures.</li>
</ul>
<div id="attachment_185" class="wp-caption alignnone" style="width: 310px"><a href="http://clanehin.files.wordpress.com/2010/07/diagram111.png"><img class="size-medium wp-image-185" title="Memoized Message Passing Semantics" src="http://clanehin.files.wordpress.com/2010/07/diagram111.png?w=300&#038;h=212" alt="Diagram demonstrating memoized message passing semantics." width="300" height="212" /></a><p class="wp-caption-text">Memoized Message Passing Semantics</p></div>
<p>My implementation is in a module of rsagl-frp called <a href="http://roguestar.downstairspeople.org/gitweb?p=roguestar.git;a=blob;f=rsagl-frp/RSAGL/FRP/Message.hs;h=df9ecbab763858a16f4d9551ef26bf4771714174;hb=6f2ed2d99698229be98b94104ef1a1dbb04745b5">Message.hs</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clanehin.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clanehin.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clanehin.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clanehin.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clanehin.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clanehin.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clanehin.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clanehin.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clanehin.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clanehin.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clanehin.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clanehin.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clanehin.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clanehin.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.downstairspeople.org&amp;blog=16567664&amp;post=170&amp;subd=clanehin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.downstairspeople.org/2010/07/17/memoized-dataflow-streams/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68435a17514570d7c6144d91a0915139?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">clanehin</media:title>
		</media:content>

		<media:content url="http://clanehin.files.wordpress.com/2010/07/diagram111.png?w=300" medium="image">
			<media:title type="html">Memoized Message Passing Semantics</media:title>
		</media:content>
	</item>
		<item>
		<title>A Brutal Introduction to Arrows</title>
		<link>http://blog.downstairspeople.org/2010/06/14/a-brutal-introduction-to-arrows/</link>
		<comments>http://blog.downstairspeople.org/2010/06/14/a-brutal-introduction-to-arrows/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 05:52:29 +0000</pubDate>
		<dc:creator>Christopher Lane Hinson</dc:creator>
				<category><![CDATA[Haskell]]></category>

		<guid isPermaLink="false">http://blog.downstairspeople.org/?p=141</guid>
		<description><![CDATA[Imagine being killed by a bow and arrow. That would suck, an arrow killed you? They would never solve the crime. &#34;Look at that dead guy. Let&#8217;s go that way.&#34; &#8212; Mitch Hedberg I seem to be one of the &#8230; <a href="http://blog.downstairspeople.org/2010/06/14/a-brutal-introduction-to-arrows/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.downstairspeople.org&amp;blog=16567664&amp;post=141&amp;subd=clanehin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p><em>Imagine being killed by a bow and arrow. That would suck, an arrow killed you? They would never solve the crime. &quot;Look at that dead guy. Let&#8217;s go that way.&quot;</em> &#8212; Mitch Hedberg</p>
</blockquote>
<p>I seem to be one of the few people who absolutely adores <a href="http://haskell.org/arrows/">arrows</a>. I thought it might be helpful if I provided some insight to the advanced-level newbies regarding the practical use of arrows in Haskell. Plenty has already been written about what arrows are in category theory, how to implement the Arrow typeclass, and how to use the special arrow syntax. I want to talk about why I occasionally wake up in the morning thinking, &quot;Maybe I could solve this problem using arrows!&quot;</p>
<p>This article is just to share an extremely simple, intuitive and concrete example of an arrow. I&#8217;m not going to get into all the crazy amazing things arrows can do. I just want to show that they can do at least one cool useful thing.</p>
<p>Arrows are closely related to monads. For example, both arrows and monads can be used to capture side-effecting operations.</p>
<p>Monads have the kind <code>* -&gt; *</code>, indicating a side-effecting operation with a single output type, and a binding operation <code>m a -&gt; (a -&gt; m b) -&gt; m b</code>. The input to a monadic operation is provided via a pure function. Arrows, on the other hand, have a kind <code>* -&gt; * -&gt; *</code>, indicating a side-effecting operation with a single input type and a single output type, and a binding operation <code>a b c -&gt; a c d -&gt; a b d</code>.</p>
<p>When binding monads, it&#8217;s obvious from the type signature that the subsequent side-effecting operation does not even exist until after the output of the previous operation becomes available. It cannot, because it depends on the previous output and because we can inject any pure function to construct the subsequent operation based on completely arbitrary criteria.</p>
<p>When binding arrows, the subsequent side-effecting operation exists before execution begins.</p>
<p>All monads are arrows, but not all arrows are monads, and this observation is pertinent to their implementation in Haskell, but I&#8217;m going to restrict this article&#8217;s discussion to &quot;interesting arrows,&quot; specifically, arrows that aren&#8217;t monads because they don&#8217;t implement <code>ArrowApply</code>. Interesting arrows are basically monads without flow control: you can&#8217;t generally choose what side-effecting actions to perform based on things you learn during the execution of the arrow.</p>
<p>This is why arrow-notation creates two scopes. Between the <code>&lt;- -&lt;</code> symbols, only values that were in scope before execution of the Arrow are in scope. Outside the <code>&lt;- -&lt;</code>, values that appear during the execution of the Arrow are also in scope.</p>
<p>For example, we (you and I) might have a monad that allows us to perform certain dangerous operations, like overwriting files. In a monadic context, we can not anticipate what any particular instance of the monad will choose to do. We might write a very complicated installation script that accesses many files. Do we have permission to write to all of those files? Do the files we want to read even exist? Do we access an infinite number of files?</p>
<p>Do we ever write to <code>/dev/nuclear_missiles</code>?</p>
<p>We would like to know the answers to these questions before running the installation script, otherwise we could be interrupted and leave the system in a chaotic state. Even if we could recover from an error, we would still be wasting the user&#8217;s time, which is the opposite of the thing that computers are for.</p>
<p>But if we implemented our IO environment using an arrow, we could anticipate all of the side-effecting operations, even have a list of files to be overwritten before the operation begins.</p>
<p>In our new file IO arrow, it will be impossible to read the name of a file from a file, and then write to that file dynamically, because all file names must be specified at the time the arrow is bound. That&#8217;s a pretty onerous restriction, but we can always add new operations later, if we need them.</p>
<p>Our arrow needs a list of accessed files and an IO action. The list of file paths is going to take the form of a monoid, while the sequence of IO actions will take the form of a Kleisli arrow.</p>
<blockquote><p><code>data IORWA a b = IORWA [FilePath] (a -&gt; IO b)</code></p>
</blockquote>
<p>We need a category instance.</p>
<blockquote><p><code>instance Category IORWA where</code></p>
</blockquote>
<p>Implementing <code>id</code> is easy. <code>Id</code> accesses no files, so we give an empty file list. <code>Return</code> is the simplest monadic action that type checks.</p>
<blockquote><p><code>id = IORWA [] return</code></p>
</blockquote>
<p>The bind operation requires that we concatenate two lists of file paths, and bind the IO actions. (This is a little annoying, but note that the <code>(.)</code> operator specifies the preceding action second and the subsequent action first.)</p>
<blockquote><p><code>(IORWA sa actionA) . (IORWA sb actionB) = IORWA (sa ++ sb) (\x -&gt; actionB x &gt;&gt;= actionA)</code></p>
</blockquote>
<p>At this point, we only have a category, which has only slightly more sophistication than a monoid. To get our tricky arrow syntax, we need to implement <code>arr</code> and <code>first</code>.</p>
<blockquote><p><code>instance Arrow IORWA where</code></p>
</blockquote>
<p><code>Arr</code>, like <code>id</code>, doesn&#8217;t touch any files, so we provide an empty file list and inject the function into the arrow.</p>
<blockquote><p><code>arr f = IORWA [] $ return . f</code></p>
</blockquote>
<p><code>First</code> is a little tricky. We&#8217;re accepting a side-effecting operation as a parameter, so we need to preserve that operation&#8217;s file list.</p>
<blockquote><p><code>first (IORWA s action) = IORWA s $ \(x,k) -&gt; do { x' &lt;- action x; return (x',k) }</code></p>
</blockquote>
<p>And we need read/write operations, in which we simply pack the file path parameter into the file list. Notice that we take the file path as a static parameter, but we take the data to write as an input to the arrow.</p>
<blockquote><p><code>writeFileA :: FilePath -&gt; IORWA String ()</code></p>
<p><code>writeFileA path = IORWA [path] $ \s -&gt; writeFile path s</code></p>
<p><code>readFileA :: FilePath -&gt; IORWA () String</code></p>
<p><code>readFileA path = IORWA [path] $ \_ -&gt; readFile path</code></p>
</blockquote>
<p>Using our arrow is as simple as exporting a function to the accessed file list and the IO action, as long as we refuse to export any way to corrupt the synchronization between the two fields.</p>
<p>Looking at <a href="http://www.haskell.org/ghc/docs/6.12.2/html/libraries/base-4.2.0.1/Control-Arrow.html">Control.Arrow</a> and the <a href="http://hackage.haskell.org/package/arrows">arrows library on hackage</a>, there are a few things we could add to all this:</p>
<ul>
<li>We could implement <code>ArrowChoice</code>. This would allow us to choose at runtime between accessing two different sets of files. Both possibilities would appear in our static accessible file list, but only one would actually be accessed.</li>
<li>We could use a modified <code>ReaderArrow</code> to capture rewriting rules for file paths, e.g., to specify a current working directory. We can&#8217;t use <code>ReaderArrow</code> directly, because it would route information through the monadic component of the computation.</li>
<li>We could use a <code>WriterArrow</code> to retain a log of all of the data we actually write.</li>
<li>We could use an <code>ErrorArrow</code> to recover from file system errors.</li>
<li>We could implement <code>ArrowLoop</code> based on the <code>MonadFix</code> instance of IO.</li>
<li>We could use the <code>Automaton</code> arrow to implement multi-phase read/write cycles. Perhaps the first phase would be read-only, then we could check the file list again before proceeding to the second phase.</li>
<li>We could re-implement what we just wrote in terms of the <code>StaticArrow</code> and <code>Kleisli</code> arrows,<br />
and get a metric ton of the above for free.</li>
</ul>
<p>To play with this example, you could always <code>git clone http://www.downstairspeople.org/git/IORWA.git</code>.</p></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clanehin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clanehin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clanehin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clanehin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clanehin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clanehin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clanehin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clanehin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clanehin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clanehin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clanehin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clanehin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clanehin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clanehin.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.downstairspeople.org&amp;blog=16567664&amp;post=141&amp;subd=clanehin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.downstairspeople.org/2010/06/14/a-brutal-introduction-to-arrows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68435a17514570d7c6144d91a0915139?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">clanehin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
