<?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 &#187; Computers</title>
	<atom:link href="http://nomadicoder.com/taxonomy/tags/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://nomadicoder.com</link>
	<description>Coding wherever I happen to be</description>
	<lastBuildDate>Tue, 20 Jul 2010 18:49:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Quick RVM Rubinius 1.0.0 Install Recipe</title>
		<link>http://nomadicoder.com/2010/05/25/quick-rvm-rubinius-1-0-0-install-recipe/</link>
		<comments>http://nomadicoder.com/2010/05/25/quick-rvm-rubinius-1-0-0-install-recipe/#comments</comments>
		<pubDate>Tue, 25 May 2010 18:54:42 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[cucumber]]></category>
		<category><![CDATA[rspec]]></category>
		<category><![CDATA[rubinius]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[RVM]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2010/05/25/quick-rvm-rubinius-1-0-0-install-recipe/</guid>
		<description><![CDATA[Here are the quick and dirty commands I used to install Rubinius 1.0.0 with Rails, RSpec, and Sinatra in RVM on Mac OS X. So far I haven’t been able to get Cucumber to install. The problem has been fixed &#8230; <a href="http://nomadicoder.com/2010/05/25/quick-rvm-rubinius-1-0-0-install-recipe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 12pt;">Here are the quick and dirty commands I used to install <a href="http://rubini.us/">Rubinius</a> <a href="http://rubini.us/about/one_point_oh">1.0.0</a> with <a href="http://rubyonrails.org/">Rails</a>, <a href="http://rspec.info/">RSpec</a>, and <a href="http://www.sinatrarb.com/">Sinatra</a> in <a href="http://rvm.beginrescueend.com/">RVM</a> on <a href="http://www.apple.com/macosx/">Mac OS X</a>.  <del datetime="2010-07-12T17:55:27+00:00">So far I haven’t been able to get <a href="http://wiki.github.com/aslakhellesoy/cucumber/">Cucumber</a> to install.</del></p>
<p> <em>The problem has been <a title="Gherkin under Rubinius 1.0.0 Fails To Build From &quot;gem install cucumber&quot;" href="http://github.com/aslakhellesoy/gherkin/issues/closed/#issue/64">fixed</a> with the <a title="Rubinius 1.0.1" href="http://rubini.us/about/one_point_one">1.0.1 release</a>.  I have added commands to install Cucumber support.</em></p>
<p></span></p>
<pre><code>
rvm install rbx
rvm rbx
gem update --system --no-ri --no-rdoc
gem update --no-ri --no-rdoc
gem install rails --no-ri --no-rdoc
gem install sqlite3-ruby --no-ri --no-rdoc
gem install rspec --no-ri --no-rdoc
gem install rspec-rails --no-ri --no-rdoc
gem install cucumber --no-ri --no-rdoc
gem install cucumber-rails --no-ri --no-rdoc
gem install sinatra --no-ri --no-rdoc
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2010/05/25/quick-rvm-rubinius-1-0-0-install-recipe/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[HTML]]></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 &#8230; <a href="http://nomadicoder.com/2010/02/01/ordering-on-a-field-in-a-linked-table/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>
<code>
class Runner &gt; ActiveRecord::Base
  belongs_to :stage
end
</code>
</pre>
<p>At first glance, I figure I would simply order on the stage number:</p>
<pre>
<code>
def self.find_all_runners
  find ( :all, :order =&gt; "stage.number" )
end
</code>
</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>
<code>
def self.find_all_runners
  find ( :all, :joins =&gt; :stage, :order =&gt; "stages.number" )
end
</code>
</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>What You Can Learn From Google Search Results</title>
		<link>http://nomadicoder.com/2008/12/18/what-you-can-learn-from-google-search-results/</link>
		<comments>http://nomadicoder.com/2008/12/18/what-you-can-learn-from-google-search-results/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 18:44:05 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2008/12/18/what-you-can-learn-from-google-search-results/</guid>
		<description><![CDATA[For some reason, the Solution Configuration tool bar has gone missing from Visual Studio 2005. I googled the terms: Visual Studio 2005 Solution Configuration Missing. When the first hit that comes up is an entry from &#8220;I Hate Microsoft&#8221; blog, &#8230; <a href="http://nomadicoder.com/2008/12/18/what-you-can-learn-from-google-search-results/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For some reason, the Solution Configuration tool bar has gone missing from Visual Studio 2005. I <a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=visual+studio+2005+solution+configuration+missing&amp;ie=UTF-8&amp;oe=UTF-8">googled</a> the terms: Visual Studio 2005 Solution Configuration Missing. When the first hit that comes up is an <a href="http://blog.newslacker.net/2008/03/visual-studio-2005-missing.html">entry</a> from &#8220;I Hate Microsoft&#8221; blog, followed by a page of relevant hits, you have to figure someone at Microsoft made a really silly decision.</p>
<p>Update: The replies to <a href="http://bytes.com/groups/net/486560-missing-configuration-manager-visual-studio-toolbar">this</a> are real gems, as well as useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2008/12/18/what-you-can-learn-from-google-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IT Conversations: Kent Beck</title>
		<link>http://nomadicoder.com/2008/08/27/it-conversations-kent-beck/</link>
		<comments>http://nomadicoder.com/2008/08/27/it-conversations-kent-beck/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 12:38:42 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Podcasting]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2008/08/27/it-conversations-kent-beck/</guid>
		<description><![CDATA[The Conversations Network recently released an IT Conversations show I did post production on. Kent Beck tells stories about how his pioneering work in Test Driven Development, Design Patterns and Extreme Programming. Link. Technorati Tags: Programming]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.conversationsnetwork.org/">Conversations Network</a> recently released an <a href="http://itc.conversationsnetwork.org/">IT Conversations</a> <a href="http://itc.conversationsnetwork.org/shows/detail3759.html">show</a> I did post production on.   Kent Beck tells stories about how his pioneering work in Test Driven Development, Design Patterns and Extreme Programming.  <a href="http://itc.conversationsnetwork.org/shows/detail3759.html">Link</a>.<br />
<!-- technorati tags start --></p>
<p style="text-align: right; font-size: 10px;">Technorati Tags: <a rel="tag" href="http://www.technorati.com/tag/Programming">Programming</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2008/08/27/it-conversations-kent-beck/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Photos Offline</title>
		<link>http://nomadicoder.com/2008/02/13/some-photos-offline/</link>
		<comments>http://nomadicoder.com/2008/02/13/some-photos-offline/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 17:51:48 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2008/02/13/some-photos-offline/</guid>
		<description><![CDATA[Some of my photos are unavailable. They are hosted on Zooomr.com. Zooomr is in the process of upgrading and some images are offline, and it appears my images are in that category.]]></description>
			<content:encoded><![CDATA[<p>Some of my photos are unavailable. They are hosted on Zooomr.com. Zooomr is in the process of <a href="http://trac.zooomr.com/trac/wiki/Zooomr2008Release">upgrading</a> and some images are offline, and it appears my images are in that category.</p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2008/02/13/some-photos-offline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Los Angeles City Fire Department Gets It When it Comes to the Web</title>
		<link>http://nomadicoder.com/2007/11/25/los-angeles-city-fire-department-gets-it-when-it-comes-to-the-web/</link>
		<comments>http://nomadicoder.com/2007/11/25/los-angeles-city-fire-department-gets-it-when-it-comes-to-the-web/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 14:59:46 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2007/11/25/los-angeles-city-fire-department-gets-it-when-it-comes-to-the-web/</guid>
		<description><![CDATA[Brian Humphrey, from the Los Angeles City Fire Department&#8217;s Media and Public Relations, really understands the web and how a Fire Department can put it to use. First he started twittering major incidents. Lately, he&#8217;s been blogging complete reports, such &#8230; <a href="http://nomadicoder.com/2007/11/25/los-angeles-city-fire-department-gets-it-when-it-comes-to-the-web/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Brian Humphrey, from the Los Angeles City Fire Department&#8217;s Media and Public Relations, really understands the web and how a Fire Department can put it to use.  First he started <a href="http://twitter.com/LAFD">twittering</a> major incidents.  Lately, he&#8217;s been <a href="http://lafd.blogspot.com/">blogging</a> complete reports, such as this dramatic <a href="http://lafd.blogspot.com/2007/11/firefighters-rescue-pair-from-burning.html">rescue</a>.<br />
<!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">Technorati Tags: <a href="http://www.technorati.com/tag/blog" rel="tag">blog</a>, <a href="http://www.technorati.com/tag/fire" rel="tag">fire</a>, <a href="http://www.technorati.com/tag/technology" rel="tag">technology</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2007/11/25/los-angeles-city-fire-department-gets-it-when-it-comes-to-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerBook Charger Problem Solved?</title>
		<link>http://nomadicoder.com/2007/06/16/powerbook-charger-problem-solved/</link>
		<comments>http://nomadicoder.com/2007/06/16/powerbook-charger-problem-solved/#comments</comments>
		<pubDate>Sun, 17 Jun 2007 01:48:36 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[DIY]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2007/06/16/powerbook-charger-problem-solved/</guid>
		<description><![CDATA[For the last few months, my powerbook has been suffering from balky charger. The LED indicator on the power connection has been flickering between charging and charged (amber and green). The computer itself has been switching between charge and battery &#8230; <a href="http://nomadicoder.com/2007/06/16/powerbook-charger-problem-solved/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For the last few months, my powerbook has been suffering from balky charger.  The LED indicator on the power connection has been flickering between charging and charged (amber and green).  The computer itself has been switching between charge and battery power.  While it&#8217;s doing this, it&#8217;s been making popping sounds through the speaker.  Sometimes the power cable gets pretty hot.  I&#8217;ve been trying to find the solution to this problem for three or four months.</p>
<p>Today, I came across a very interesting Hot Topic in the <a href="http://www.apple.com/support/powerbook/">Apple Powerbook G4 Support</a> page entitled &#8220;<a href="http://docs.info.apple.com/article.html?artnum=302461">The AC power adapter won&#8217;t charge my battery</a>.&#8221;  The real title of the article is &#8220;Portable Computers: Troubleshooting power adapters&#8221; which makes more sense as the article covers three power adapter problems, in particular, &#8220;The adapter only charges the computer intermittently.&#8221;</p>
<p>Apparently when the <a href="http://docs.info.apple.com/article.html?artnum=32155">charger overheats, gets an over voltage, or senses ground noise</a> the adapter shuts down.  In my case, acts erratically.  Unplugging it from the wall and letting it rest for 60 seconds seems to have done the trick.  It&#8217;s working fine now.  The power manager is stable, the battery is charging, and the power cable is cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2007/06/16/powerbook-charger-problem-solved/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Drupal Website</title>
		<link>http://nomadicoder.com/2007/03/31/new-drupal-website/</link>
		<comments>http://nomadicoder.com/2007/03/31/new-drupal-website/#comments</comments>
		<pubDate>Sat, 31 Mar 2007 14:57:59 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Amateur Radio]]></category>
		<category><![CDATA[Baker to Vegas]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://nomadicoder.com/2007/03/31/new-drupal-website/</guid>
		<description><![CDATA[On Monday, I launched my second public Drupal website for our Baker to Vegas support team. [Update 4/11/07 - We are now Mojave RATS] Technorati Tags: AmateurRadio, Drupal, HamRadio, Drupal]]></description>
			<content:encoded><![CDATA[<p>On Monday, I launched my second public <a href="http://drupal.org/">Drupal</a> <a href="http://b2vradio.com/">website</a> for our Baker to Vegas support team.<br />
[Update 4/11/07 - We are now <a href="http://mojaverats.com">Mojave RATS</a>]</p>
<p>Technorati Tags: <a rel="tag" href="http://www.technorati.com/tag/AmateurRadio">AmateurRadio</a>, <a rel="tag" href="http://www.technorati.com/tag/Drupal">Drupal</a>, <a rel="tag" href="http://www.technorati.com/tag/HamRadio">HamRadio</a>, <a rel="tag" href="http://www.technorati.com/tag/Drupal">Drupal</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nomadicoder.com/2007/03/31/new-drupal-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
