<?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>Coding Mind</title>
	<atom:link href="http://codingmind.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://codingmind.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 06 Jan 2011 18:44:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='codingmind.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Coding Mind</title>
		<link>http://codingmind.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://codingmind.wordpress.com/osd.xml" title="Coding Mind" />
	<atom:link rel='hub' href='http://codingmind.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Anyone Can Program: 2-Say Hello to Ruby</title>
		<link>http://codingmind.wordpress.com/2007/12/07/anyone-can-program-2-say-hello-to-ruby/</link>
		<comments>http://codingmind.wordpress.com/2007/12/07/anyone-can-program-2-say-hello-to-ruby/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 05:44:27 +0000</pubDate>
		<dc:creator>CptOatmeal</dc:creator>
				<category><![CDATA[anyone_can_program]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://codingmind.wordpress.com/2007/12/07/anyone-can-program-2-say-hello-to-ruby/</guid>
		<description><![CDATA[The first thing we need to do is put a copy of the Ruby Interpreter on your computer. In order to talk to the interpreter, programmers use something called The Command Line. The command line is, oddly enough, a line &#8230; <a href="http://codingmind.wordpress.com/2007/12/07/anyone-can-program-2-say-hello-to-ruby/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codingmind.wordpress.com&amp;blog=2252144&amp;post=15&amp;subd=codingmind&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The first thing we need to do is put a copy of the Ruby Interpreter on your computer.  In order to talk to the interpreter, programmers use something called <i>The Command Line</i>.  The command line is, oddly enough, a line where you type in commands.  To talk to Ruby, all you do is type the word &#8220;ruby&#8221; and then whatever commands or programming statements you want it to translate into computer lingo (binary.)  Here&#8217;s how to use ruby with the command line:</p>
<h3>If You&#8217;re Using Windows</h3>
<p><a>Click here</a> to download a program that will install everything you need to use Ruby.  Double click on the installer to start it up, and press &#8220;Next&#8221; a bunch of times to finish the installation.  Once that&#8217;s done, click on the Start menu and click on the option that says &#8220;Run&#8230;&#8221;.  Then, type the word &#8220;cmd&#8221; in the popup box and press &#8220;Ok.&#8221;  The thing that should pop up after that is the Windows Command Line.</p>
<p><img src='http://codingmind.files.wordpress.com/2007/12/cmdprompt.gif?w=500' width="500px" alt='Windows Command Line (Prompt)' /></p>
<h3>If You&#8217;re Using a Mac</h3>
<p>Macs already have ruby installed on them.  To start the mac command line, go to the &#8220;Applications&#8221; folder (where all your programs are) and open the &#8220;Utilities&#8221; folder.  Inside of &#8220;Utilities,&#8221; double click on the program named &#8220;Terminal&#8221; to start the OS X Command Line.</p>
<p><img src='http://codingmind.files.wordpress.com/2007/12/terminal.gif?w=500' width="496px" alt='Mac OS X Terminal - Command Line' /></p>
<p>This is it, you&#8217;re now ready to begin talking to the ruby interpreter.  Type in the word &#8220;irb&#8221; and press enter.  You have now entered into an interactive conversation with our buddy Ruby (&#8220;irb&#8221; stands for Interactive Ruby.)  Let&#8217;s tell the computer to say hello to us:</p>
<p><code style="font-size:14px;background:#ddd;display:block;padding:3px;">print "Hello World"</code></p>
<p>(Whenever you see stuff that looks this, that means that it&#8217;s real live programming code and you can type it directly into irb.)</p>
<p>If all is well, ruby should hear you loud and clear and respond with something like: &#8220;Hello World&#8221;.</p>
<p>It didn&#8217;t, did it?  Instead you probably saw &#8220;Hello World=&gt; nil&#8221;, which is almost but not quite what we told the computer to say.  What you have to remember is that programming is like speaking a language and, unless you&#8217;re speaking to a wall, someone is usually going to respond to what you say.  That little &#8220;=&gt; nil&#8221; at the end is ruby&#8217;s response to what you told it to do.</p>
<p>Understanding the response will take some time, so for now we&#8217;re just going to do that thing men are good at and ignore the other side of the conversation (if you&#8217;re a woman, don&#8217;t worry, &#8220;=&gt; nil&#8221; is Ruby&#8217;s way of saying it has nothing intelligent to say &#8211; like when men grunt.)  To make it easier on us, we&#8217;re going to use a slightly different command that makes it easier to ignore Ruby&#8217;s responses.</p>
<p><code style="font-size:14px;background:#ddd;display:block;padding:3px;">puts "Hello World"</code></p>
<p>Now you should see:</p>
<p><code style="font-size:14px;background:#ddd;display:block;padding:3px;">Hello World<br />
=&gt; nil<br />
</code></p>
<p>Ruby&#8217;s being considerate and stating his half of the conversation on the next line, where we can conveniently ignore it.</p>
<p><b>To Summarize:</b>  Like normal conversations, there are usually responses to the things you say.  Every statement in the Ruby language produces a corresponding response from the computer. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/codingmind.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/codingmind.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingmind.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingmind.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingmind.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingmind.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codingmind.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codingmind.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codingmind.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codingmind.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingmind.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingmind.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingmind.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingmind.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingmind.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingmind.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codingmind.wordpress.com&amp;blog=2252144&amp;post=15&amp;subd=codingmind&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codingmind.wordpress.com/2007/12/07/anyone-can-program-2-say-hello-to-ruby/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f8431547202925c35bba4a15c9678b5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">CptOatmeal</media:title>
		</media:content>

		<media:content url="http://codingmind.files.wordpress.com/2007/12/cmdprompt.gif" medium="image">
			<media:title type="html">Windows Command Line (Prompt)</media:title>
		</media:content>

		<media:content url="http://codingmind.files.wordpress.com/2007/12/terminal.gif" medium="image">
			<media:title type="html">Mac OS X Terminal - Command Line</media:title>
		</media:content>
	</item>
		<item>
		<title>Anyone Can Program: 1-Introduction</title>
		<link>http://codingmind.wordpress.com/2007/12/06/anyone-can-program-1-introduction/</link>
		<comments>http://codingmind.wordpress.com/2007/12/06/anyone-can-program-1-introduction/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 07:12:20 +0000</pubDate>
		<dc:creator>CptOatmeal</dc:creator>
				<category><![CDATA[anyone_can_program]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://codingmind.wordpress.com/2007/12/06/anyone-can-program-1-introduction/</guid>
		<description><![CDATA[Anyone can program.  There&#8217;s a reason programmers use something called a &#8220;programming language.&#8221;  Programming is nothing more than telling the computer to do what you want in a language it understands.  Just like you can understand English, you can learn &#8230; <a href="http://codingmind.wordpress.com/2007/12/06/anyone-can-program-1-introduction/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codingmind.wordpress.com&amp;blog=2252144&amp;post=12&amp;subd=codingmind&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Anyone can program.  There&#8217;s a reason programmers use something called a &#8220;programming <b>language</b>.&#8221;  Programming is nothing more than telling the computer to do what you want in a language it understands.  Just like you can understand English, you can learn to understand  any programming language out there.  People learn new languages every day, so why can&#8217;t you?</p>
<p>The first step is to not be intimidated by what you might have heard about programming.  Programming code (the word used to represent stuff written in a programming language) does not look like this:</p>
<p><img src="http://kimpluseddie.files.wordpress.com/2007/08/matrix.jpg?w=256&#038;h=192" width="256" height="192" alt="Matrix Code" /></p>
<p>It looks like this:</p>
<p><code style="font-size:14px;background:#ddd;display:block;padding:3px;">print "Hello World"</code></p>
<p>Compare that to this: &#8220;La programación es fácil.&#8221; or &#8220;Программирование легко.&#8221; or even  &#8220;編程容易。&#8221;</p>
<p>Learning a programming language is often easier than learning a different spoken language.  Every programming language out there is actually some form of english.  Like the preceding example shows, to print the words &#8220;Hello World&#8221; to the screen, you would type &#8216; print &#8220;Hello World&#8221;.&#8217;  You may not understand how or why this works yet, but it&#8217;s a lot more understandable than any of the other languages I showed.</p>
<h3>So Let&#8217;s Do It</h3>
<p>Alright, let&#8217;s just quickly cover a few basics about what a programming language really is, then we&#8217;ll get cracking.</p>
<p>All computers speak a single language, called binary, which consists entirely of 0&#8242;s and 1&#8242;s.  Because it can take thousands of 0&#8242;s and 1&#8242;s to write a simple sentence in computer language, programmers came up with special programming languages.  These languages are understandable by humans, but can be easily translated into the computers&#8217; native language of binary.</p>
<p><a href='http://codingmind.files.wordpress.com/2007/12/helloworldbinary.gif' title='Hello World in Binary'><img src='http://codingmind.files.wordpress.com/2007/12/helloworldbinary.gif?w=500' alt='Hello World in Binary' /></a></p>
<p>Of course, when I say &#8220;translated&#8221; I mean that another computer program (often called an &#8220;interpreter&#8221;) comes along and translates our programming statements.  There are many different interpreters out there.  All of them speak binary, but they all speak a different programming language.  Let me introduce you to some of these interpreters:</p>
<p><a href='http://codingmind.files.wordpress.com/2007/12/rubyperlpython.gif' title='Ruby, Perl, and Python'><img src='http://codingmind.files.wordpress.com/2007/12/rubyperlpython.gif?w=500' alt='Ruby, Perl, and Python' /></a></p>
<p>Python&#8217;s a slick character and, as you can see, a big fan of white empty spaces.  We&#8217;re not going to learn his native language because I can&#8217;t draw a snake very well.  Perl is an interesting guy, but it&#8217;s really hard to tell what&#8217;s going on behind that shiny head of his.  In fact, only those who know him well really understand what he&#8217;s saying.  Ruby is really cool guy.  You can tell he&#8217;s cool because he&#8217;s wearing sunglasses and he&#8217;s on a motorcycle.  We&#8217;re going to learn Ruby&#8217;s language because we want to be cool like him.</p>
<p><b>So to summarize:</b>  Programming languages are easily understandable by humans and are converted into computer language (binary) by interpreters.  There are many different interpreters, and each one speaks a different programming language.  We&#8217;re going to learn Ruby&#8217;s language because it&#8217;s so totally awesome.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/codingmind.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/codingmind.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingmind.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingmind.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingmind.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingmind.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codingmind.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codingmind.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codingmind.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codingmind.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingmind.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingmind.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingmind.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingmind.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingmind.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingmind.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codingmind.wordpress.com&amp;blog=2252144&amp;post=12&amp;subd=codingmind&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codingmind.wordpress.com/2007/12/06/anyone-can-program-1-introduction/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f8431547202925c35bba4a15c9678b5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">CptOatmeal</media:title>
		</media:content>

		<media:content url="http://kimpluseddie.files.wordpress.com/2007/08/matrix.jpg" medium="image">
			<media:title type="html">Matrix Code</media:title>
		</media:content>

		<media:content url="http://codingmind.files.wordpress.com/2007/12/helloworldbinary.gif" medium="image">
			<media:title type="html">Hello World in Binary</media:title>
		</media:content>

		<media:content url="http://codingmind.files.wordpress.com/2007/12/rubyperlpython.gif" medium="image">
			<media:title type="html">Ruby, Perl, and Python</media:title>
		</media:content>
	</item>
		<item>
		<title>Sam Smoot on Polymorphic Associations (in DataMapper)</title>
		<link>http://codingmind.wordpress.com/2007/12/03/sam-smoot-on-polymorphic-associations-in-datamapper/</link>
		<comments>http://codingmind.wordpress.com/2007/12/03/sam-smoot-on-polymorphic-associations-in-datamapper/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 20:34:13 +0000</pubDate>
		<dc:creator>CptOatmeal</dc:creator>
				<category><![CDATA[datamapper]]></category>

		<guid isPermaLink="false">http://codingmind.wordpress.com/2007/12/03/sam-smoot-on-polymorphic-associations-in-datamapper/</guid>
		<description><![CDATA[A recent discussion in #datamapper (freenode) yielded a pearl of wisdom from DataMapper creator Sam Smoot. In leu of a blog, Sam seems to convey his thoughts in pure pastie (or, as rubymaverick put it &#8220;rant ala pastie&#8221;.)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codingmind.wordpress.com&amp;blog=2252144&amp;post=8&amp;subd=codingmind&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A recent discussion in #datamapper (freenode) yielded a <a href="http://pastie.textmate.org/private/mrvx3qmuagypwukrri9jq">pearl of wisdom</a> from <a href="http://datamapper.org/">DataMapper</a> creator Sam Smoot.</p>
<p>In leu of a blog, Sam seems to convey his thoughts in pure pastie (or, as rubymaverick put it &#8220;rant ala pastie&#8221;.)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/codingmind.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/codingmind.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingmind.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingmind.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingmind.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingmind.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codingmind.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codingmind.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codingmind.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codingmind.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingmind.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingmind.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingmind.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingmind.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingmind.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingmind.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codingmind.wordpress.com&amp;blog=2252144&amp;post=8&amp;subd=codingmind&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codingmind.wordpress.com/2007/12/03/sam-smoot-on-polymorphic-associations-in-datamapper/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f8431547202925c35bba4a15c9678b5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">CptOatmeal</media:title>
		</media:content>
	</item>
		<item>
		<title>Merb Jaunt Graphic (PDF)</title>
		<link>http://codingmind.wordpress.com/2007/12/03/merb-jaunt-graphic-pdf/</link>
		<comments>http://codingmind.wordpress.com/2007/12/03/merb-jaunt-graphic-pdf/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 18:22:47 +0000</pubDate>
		<dc:creator>CptOatmeal</dc:creator>
				<category><![CDATA[info]]></category>
		<category><![CDATA[merb]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://codingmind.wordpress.com/2007/12/03/merb-jaunt-graphic-pdf/</guid>
		<description><![CDATA[It&#8217;s high time I had a blog. We&#8217;ll start this off with a little diagram I made of the Merb request flow. Simply a graphical representation of Ezra&#8217;s excellent post.Is their anything else you think I should add?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codingmind.wordpress.com&amp;blog=2252144&amp;post=4&amp;subd=codingmind&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s high time I had a blog.  We&#8217;ll start this off with a <a href="http://codingmind.files.wordpress.com/2007/12/merbjaunt.pdf" title="How Merb Processes a Request">little diagram</a> I made of the Merb request flow.  Simply a graphical representation of Ezra&#8217;s <a href="http://brainspl.at/articles/2007/12/02/a-quick-jaunt-through-merbs-framework-code">excellent post</a>.Is their anything else you think I should add?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/codingmind.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/codingmind.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingmind.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingmind.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingmind.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingmind.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codingmind.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codingmind.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codingmind.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codingmind.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingmind.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingmind.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingmind.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingmind.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingmind.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingmind.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codingmind.wordpress.com&amp;blog=2252144&amp;post=4&amp;subd=codingmind&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codingmind.wordpress.com/2007/12/03/merb-jaunt-graphic-pdf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f8431547202925c35bba4a15c9678b5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">CptOatmeal</media:title>
		</media:content>
	</item>
	</channel>
</rss>
