<?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/"
	>

<channel>
	<title>Nomadicoder</title>
	<atom:link href="http://nomadicoder.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nomadicoder.com</link>
	<description>Coding wherever I happen to be</description>
	<lastBuildDate>Wed, 10 Mar 2010 18:22:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Stupid Smilies!</title>
		<link>http://nomadicoder.com/2010/02/03/stupid-smilies/</link>
		<comments>http://nomadicoder.com/2010/02/03/stupid-smilies/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:30:53 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Side Note]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2010/02/03/stupid-smilies/</guid>
		<description><![CDATA[It was a good idea to start blogging lessons learned as I code, but it took almost as long to post a correctly formatted entry when I ran into one problem. WordPress creates emoticons automagically. Even if the text is embedded in a &#60;code&#62; or &#60;pre&#62; block. My last posting contained a :order symbol, which [...]]]></description>
			<content:encoded><![CDATA[<p>It was a good idea to start blogging lessons learned as I code, but it took almost as long to post a correctly formatted entry when I ran into one problem. WordPress creates emoticons automagically. Even if the text is embedded in a &lt;code&gt; or &lt;pre&gt; block. My <a title="Ordering on a Field in a Linked Table" href="http://nomadicoder.com/2010/02/01/ordering-on-a-field-in-a-linked-table/">last posting</a> contained a :order symbol, which WordPress converted into a laughing smiley. Thinking it was in my code, I manually retyped in the text, tried a code tag, and removed extraneous tags to no avail. WordPress has a <a title="Using_Smilies" href="http://codex.wordpress.org/Using_Smilies">setting</a> that takes care of this. Emoticon conversion is turned on by default, a bad thing for Ruby bloggers. Problem fixed, after wasting too much time doing the right thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2010/02/03/stupid-smilies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ordering on a Field in a Linked Table</title>
		<link>http://nomadicoder.com/2010/02/01/ordering-on-a-field-in-a-linked-table/</link>
		<comments>http://nomadicoder.com/2010/02/01/ordering-on-a-field-in-a-linked-table/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 05:55:19 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Untitled]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2010/02/01/ordering-on-a-field-in-a-linked-table/</guid>
		<description><![CDATA[I attempted to order my runners based on their assigned stage number. The stage number is linked by the stage_id in the schema and the class shows that it belongs to a stage:
class Runner &#62; ActiveRecord::Base
  belongs_to :stage
end
At first glance, I figure I would simply order on the stage number:
  def self.find_all_runners
  [...]]]></description>
			<content:encoded><![CDATA[<p>I attempted to order my runners based on their assigned stage number. The stage number is linked by the stage_id in the schema and the class shows that it belongs to a stage:</p>
<pre>class Runner &gt; ActiveRecord::Base
  belongs_to :stage
end</pre>
<p>At first glance, I figure I would simply order on the stage number:</p>
<pre>  def self.find_all_runners
    find ( :all, :order =&gt; "stage.number" )
  end</pre>
<p>But this resulted in a &#8220;no such column&#8221; error:</p>
<p><em><span style="color: #ff1f19;">SQLite3::SQLException: no such column: stages.number: SELECT * FROM &#8220;runners&#8221; ORDER BY stages.number</span></em></p>
<p>I found the solution in Ryan Daigle&#8217;s <a href="http://ryandaigle.com/articles/2008/7/7/what-s-new-in-edge-rails-easy-join-table-conditions">blog</a>. In order for this to work you need a <em>:joins</em> to the linked table so Active Record knows the origin of stage.number. In my application, the find should be:</p>
<pre>  def self.find_all_runners
    find ( :all, :joins =&gt; :stage, :order =&gt; "stages.number" )
  end</pre>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2010/02/01/ordering-on-a-field-in-a-linked-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test shots of the CES video page</title>
		<link>http://nomadicoder.com/2010/01/07/test-shots-of-the-ces-video-page/</link>
		<comments>http://nomadicoder.com/2010/01/07/test-shots-of-the-ces-video-page/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 06:35:39 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Side Note]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2010/01/07/test-shots-of-the-ces-video-page/</guid>
		<description><![CDATA[http://qik.ly/yrbg
  Posted via email   from nomadicoder&#8217;s posterous  
]]></description>
			<content:encoded><![CDATA[<p><a href="http://qik.ly/yrbg">http://qik.ly/yrbg</a>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://nomadicoder.posterous.com/test-shots-of-the-ces-video-page">nomadicoder&#8217;s posterous</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2010/01/07/test-shots-of-the-ces-video-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas</title>
		<link>http://nomadicoder.com/2009/12/25/merry-christmas/</link>
		<comments>http://nomadicoder.com/2009/12/25/merry-christmas/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 15:23:02 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Dogs]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Side Note]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2009/12/25/merry-christmas/</guid>
		<description><![CDATA[I love the way Schulz drew Snoopy&#8217;s face.

]]></description>
			<content:encoded><![CDATA[<p>I love the way Schulz drew Snoopy&#8217;s face.</p>
<p><a title="Peanuts" href="http://comics.com/peanuts/2009-12-25/"><img src="http://c0389161.cdn.cloudfiles.rackspacecloud.com/dyn/str_strip/303825.full.gif" border="0" alt="Peanuts" width="447" height="92" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2009/12/25/merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Loosens The Reins A Bit, Sends Handslaps Rather Than Rejections</title>
		<link>http://nomadicoder.com/2009/12/11/apple-loosens-the-reins-a-bit-sends-handslaps-rather-than-rejections/</link>
		<comments>http://nomadicoder.com/2009/12/11/apple-loosens-the-reins-a-bit-sends-handslaps-rather-than-rejections/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 18:26:35 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Side Note]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2009/12/11/apple-loosens-the-reins-a-bit-sends-handslaps-rather-than-rejections/</guid>
		<description><![CDATA[Apple is moving in the right direction. With this and the new app to report quality of service problems, Apple and AT&#38;T are making moves that will make me reconsider moving away to Verizon:
It looks like Apple might be making moves to loosen up their restrictions, if only ever so slightly. Earlier this week, Apple [...]]]></description>
			<content:encoded><![CDATA[<p>Apple is moving in the right direction. With this and the new app to report quality of service problems, Apple and AT&amp;T are making moves that will make me reconsider moving away to Verizon:</p>
<blockquote><p>It looks like Apple might be making moves to loosen up their restrictions, if only ever so slightly. Earlier this week, Apple finally let a <a href="http://www.techcrunch.com/2009/12/09/iphone-live-streaming-ustream/">live video broadcasting app</a> through the gates, after apps of that genre sat on the review backburner for months. Today, they’ve willingly approved another application that calls upon one of Apple’s private (and generally blacklisted) APIs.</p>
<div><a href="http://www.crunchbase.com/">CrunchBase Information</a></div>
<p>&nbsp;</p>
<div class="posterous_quote_citation">via <a href="http://feedproxy.google.com/~r/Techcrunch/~3/Bz8si9vrjZs/">feedproxy.google.com</a></div>
</blockquote>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via web</a> from <a href="http://nomadicoder.posterous.com/apple-loosens-the-reins-a-bit-sends-handslaps">nomadicoder&#8217;s posterous</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2009/12/11/apple-loosens-the-reins-a-bit-sends-handslaps-rather-than-rejections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nomadic Money Saving Tip</title>
		<link>http://nomadicoder.com/2009/05/27/nomadic-money-saving-tip/</link>
		<comments>http://nomadicoder.com/2009/05/27/nomadic-money-saving-tip/#comments</comments>
		<pubDate>Wed, 27 May 2009 13:20:21 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Cool Things]]></category>
		<category><![CDATA[Nomadicy]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2009/05/27/nomadic-money-saving-tip/</guid>
		<description><![CDATA[Wear your shirts till they&#8217;re thread bare. When you wear out your shirts, save the buttons (don&#8217;t forget the spares) and collar stays before you throw it out. Use the buttons to repair shirts that don&#8217;t carry spare buttons and use the collar stays to replace the ones you lost in the laundry.
]]></description>
			<content:encoded><![CDATA[<p>Wear your shirts till they&#8217;re thread bare. When you wear out your shirts, save the buttons (don&#8217;t forget the spares) and collar stays before you throw it out. Use the buttons to repair shirts that don&#8217;t carry spare buttons and use the collar stays to replace the ones you lost in the laundry.</p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2009/05/27/nomadic-money-saving-tip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adam Savage&#8217;s Obsession</title>
		<link>http://nomadicoder.com/2009/04/04/adam-savages-obsession/</link>
		<comments>http://nomadicoder.com/2009/04/04/adam-savages-obsession/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 17:55:59 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Culture]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2009/04/04/adam-savages-obsession/</guid>
		<description><![CDATA[What&#8217;s in the mind behind one of the hosts of Mythbusters
]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s in the mind behind one of the hosts of Mythbusters<object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/embed/AdamSavage_2008P-embed-PARTNER_high.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/AdamSavage-2008P.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=488"></param><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgcolor="#ffffff" width="446" height="326" allowfullscreen="true" flashvars="vu=http://video.ted.com/talks/embed/AdamSavage_2008P-embed-PARTNER_high.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/AdamSavage-2008P.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=488"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2009/04/04/adam-savages-obsession/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle for iPhone</title>
		<link>http://nomadicoder.com/2009/03/04/kindle-for-iphone/</link>
		<comments>http://nomadicoder.com/2009/03/04/kindle-for-iphone/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 15:27:16 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2009/03/04/kindle-for-iphone/</guid>
		<description><![CDATA[The New York Times reported that Amazon just released an Kindle Reader for the iPhone
I downloaded it an hour ago and had a chance to briefly use it. It gives me access to all of the books I&#8217;ve already purchased. I don&#8217;t see my newspaper subscriptions, but I suspect that will come in a future [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://nytimes.com/">New York Times</a> reported that Amazon just <a href="http://www.nytimes.com/2009/03/04/technology/04kindle.html?_r=1&amp;scp=1&amp;sq=kindle%20iphone&amp;st=cse">released</a> an Kindle <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=302584613&amp;mt=8">Reader</a> for the iPhone</p>
<p>I downloaded it an hour ago and had a chance to briefly use it. It gives me access to all of the books I&#8217;ve already purchased. I don&#8217;t see my newspaper subscriptions, but I suspect that will come in a future release.</p>
<p>The interface more book-like than the Stanza Reader. Where the Stanza reader uses touch regions to turn pages, on the Kindle reader, you use the page change gesture of sliding your finger from right to left across the screen as if you were flipping pages. Page changes are fast without the refresh flash you get on the Kindle device.</p>
<p>The iPhone is just about my mobile all-in-one device.</p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2009/03/04/kindle-for-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle 1.2 Update</title>
		<link>http://nomadicoder.com/2009/02/10/kindle-12-update/</link>
		<comments>http://nomadicoder.com/2009/02/10/kindle-12-update/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 13:58:31 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2009/02/10/kindle-12-update/</guid>
		<description><![CDATA[Amazon recently updated the Kindle firmware to version 1.2. The update has been taking place over the past week or so. My Kindle updated last night. So far i see a new &#8220;Sync &#38; Check Items&#8221; which I gather from on line discussions synchronizes purchased items and synchronize bookmarks between devices. This will probably make [...]]]></description>
			<content:encoded><![CDATA[<p>Amazon recently updated the Kindle firmware to version 1.2. The update has been taking place over the past week or so. My Kindle updated last night. So far i see a new &#8220;Sync &amp; Check Items&#8221; which I gather from on line discussions synchronizes purchased items and synchronize bookmarks between devices. This will probably make it easy for folks who purchase the soon to be released Kindle 2.Opening a book purchased from Amazon, there is also a &#8220;Sync to Furthest Page Read&#8221;. I think this lets you return to where you left off in a book, if you have not read your purchased book in some time or if you go back to an earlier location in a book.You can also delete books from the main menu. Now, you don&#8217;t have to open content management and manually search for books to delete.Lastly, while I don&#8217;t recommend the device for browsing the web, I&#8217;ve found the browsing and updating to run somewhat faster.Overall, Kindle 1.2 feels as if it has improved performance. Better content management is a definite plus. This upgrade seems to ease the way for Kindle 1 owners who transition to the Kindle 2. [Update March 4, 2009: It appears the page changes are faster.  Also, I've noticed that every other page does not flash, but immediately transitions to the next page.] </p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2009/02/10/kindle-12-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keri Mullis on Scientists</title>
		<link>http://nomadicoder.com/2009/01/16/keri-mullis-on-scientists/</link>
		<comments>http://nomadicoder.com/2009/01/16/keri-mullis-on-scientists/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 06:40:09 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2009/01/16/keri-mullis-on-scientists/</guid>
		<description><![CDATA[
Nobel Prize winning biochemist, Keri Mullis, talks about doing science and what we can learn about climate data and global warming.
]]></description>
			<content:encoded><![CDATA[<p><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/embed/KaryMullis_2002-embed_high.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/KaryMullis-2002.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=426" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/KaryMullis_2002-embed_high.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/KaryMullis-2002.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=426"></embed></object></p>
<p>Nobel Prize winning biochemist, Keri Mullis, <a href="http://ted.org/index.php/talks/kary_mullis_on_what_scientists_do.html">talks</a> about doing science and what we can learn about climate data and global warming.</p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2009/01/16/keri-mullis-on-scientists/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
