<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
  <title>RidingTheClutch.com - Home</title>
  <id>tag:ridingtheclutch.com,2008:mephisto/</id>
  <generator uri="http://mephistoblog.com" version="0.7.3">Mephisto Noh-Varr</generator>
  <link href="http://ridingtheclutch.com/feed/atom.xml" rel="self" type="application/atom+xml"/>
  <link href="http://ridingtheclutch.com/" rel="alternate" type="text/html"/>
  <updated>2008-09-02T20:00:01Z</updated>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2008-09-02:6557</id>
    <published>2008-09-02T19:58:00Z</published>
    <updated>2008-09-02T20:00:01Z</updated>
    <category term="ruby,rails,rake,development"/>
    <link href="http://ridingtheclutch.com/2008/9/2/weird-ruby-error-undefined-method-require_gem" rel="alternate" type="text/html"/>
    <title>Weird ruby error - undefined method 'require_gem'</title>
<content type="html">
            &lt;p&gt;Really just posting this for future Googling of this error. (Just jump to the last two paragraphs if all you care about is my solution and not any of these symptoms.) &lt;/p&gt;

&lt;p&gt;I was working on a new app (more on that soon) and getting ready to push to my production server. When I tried to load the database schema to get it ready I got the following error:&lt;/p&gt;

&lt;pre&gt;/usr/local/bin/rake:17: undefined method `require_gem' for main:Object (NoMethodError)&lt;/pre&gt;

I figured that deep inside the massive stack of what whatever files rake was including there was some esoteric error, probably dude to different gem versions.  The production server had an older version of gem so I updated that. No go. Checked the rake gem and both production and development had the same version (0.8.1). Searched online and there were other people listing this error, but no solution that helped me.

This morning I figured I would just manually create the database and see if the app worked, and it did. Not ideal, but it worked. Now came them time to start the application (two instances of mongrel balanced by Apache) and damn it, the same error! Only this time it was in the mongrel_rails executable:

&lt;pre&gt;/usr/local/bin/mongrel_rails:17: undefined method `require_gem' for main:Object (NoMethodError)&lt;/pre&gt;

What the hell??  So I looked at the mongrel_rails executable:

&lt;pre&gt;
#!/usr/local/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'mongrel' is installed as part of a gem, and
# this file is here to facilitate running it. 
#

require 'rubygems'
version = &quot;&gt; 0&quot;
if ARGV.size &gt; 0 &amp;&amp; ARGV[0][0]==95 &amp;&amp; ARGV[0][-1]==95
  if Gem::Version.correct?(ARGV[0][1..-2])
    version = ARGV[0][1..-2] 
    ARGV.shift
  end
end
require_gem 'mongrel', version
load 'mongrel_rails' 
&lt;/pre&gt;

&lt;p&gt;Sure enough, line 17 has the &lt;em&gt;require_gem&lt;/em&gt; method call. What does that same file look like on development?&lt;/p&gt;

&lt;pre&gt;
#!/usr/local/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'mongrel' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = &quot;&gt;= 0&quot;

if ARGV.first =~ /^_(.*)_$/ and Gem::Version.correct? $1 then
  version = $1
  ARGV.shift
end

gem 'mongrel', version
load 'mongrel_rails'
&lt;/pre&gt;

&lt;p&gt;Pretty different.  Checked on mongrel versions and the production server had an older one (1.0.1 versus 1.1.4). So I &lt;em&gt;sudo gem update mongrel&lt;/em&gt; and I'm back in business&amp;mdash;my app loads. But I still couldn't rake my database to life...&lt;/p&gt;

&lt;p&gt;I go back and look at the source of &lt;em&gt;/usr/local/bin/rake&lt;/em&gt; and sure enough it's different on my dev machine and production (pretty much the same differences as the mongrel&lt;em&gt;rails script).  But rake is already up-to-date...what gives? Maybe there's some secret gem command to update the script for rake, but I don't know it. I just copied the rake executable from dev to production and everything was perfect! *rake db:schema:load RAILS&lt;/em&gt;ENV=production* ran like a charm.&lt;/p&gt;

&lt;p&gt;No idea why these scripts changed (maybe when rubygems 1.0 was released?) and why there was no process to update these scripts that depended on them...if anyone knows, please leave a comment and share!&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2008-06-19:5512</id>
    <published>2008-06-19T23:27:00Z</published>
    <updated>2008-06-19T23:28:27Z</updated>
    <category term="alfred"/>
    <category term="rails"/>
    <category term="ruby"/>
    <category term="ruby on rails"/>
    <link href="http://ridingtheclutch.com/2008/6/19/launch-alfred-a-rails-app-for-monitoring-other-rails-apps" rel="alternate" type="text/html"/>
    <title>Launch! Alfred - A Rails app for monitoring other Rails apps</title>
<content type="html">
            &lt;p&gt;I finally made &lt;a href=&quot;http://github.com/cannikin/alfred&quot;&gt;Alfred&lt;/a&gt; official! In my current position as UI Architect I'm always putting together little HTML or dynamic prototypes and mockups. For me the quickest way to do this has been with &lt;a href=&quot;http://rubyonrails.org&quot;&gt;Rails&lt;/a&gt;. As I started getting three, four, five apps that I needed to keep running in order for others in the company to play with, I found that starting and stopping these apps (and keep tracking of which port they were running on, whether they were already running, etc.) got to be a huge chore.&lt;/p&gt;

&lt;p&gt;So I wrote on more Rails app called Alfred. Alfred (named after Batman's faithful butler) watches over your Rails apps, let's you know if they're running or not, and gives you one central place to start, restart and stop them. It's been very handy at work and I couldn't live without it now.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2008/6/19/alfred_1.png&quot; alt=&quot;Alfred screenshot&quot; /&gt;&lt;/p&gt;

&lt;p&gt;It still needs quite a bit of work (it has no idea what to do in the case of an error with your app or how to gracefully recover from it) but that's coming soon enough! I also plan on adding a public view so that you can give out the link to others if they want to check out one of your prototypes, but don't want them having access to start/stop, new project creation, etc.&lt;/p&gt;

&lt;p&gt;Head over to &lt;a href=&quot;http://github.com/cannikin/alfred&quot;&gt;github&lt;/a&gt; and check out the &lt;a href=&quot;http://github.com/cannikin/alfred/tree/master/README&quot;&gt;README&lt;/a&gt; for instructions on getting a copy and installing. Since this is an open source project everyone out there is welcome to contribute and improve with features that they themselves find handy.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2008-05-21:5145</id>
    <published>2008-05-21T19:44:00Z</published>
    <updated>2008-09-02T20:00:35Z</updated>
    <category term="big brother"/>
    <category term="privacy"/>
    <category term="social"/>
    <link href="http://ridingtheclutch.com/2008/5/21/are-we-big-brother" rel="alternate" type="text/html"/>
    <title>Are WE Big Brother?</title>
<content type="html">
            &lt;p&gt;I was thinking about social networking today. You know, that whole revolution that's taking place on the internet right now which lets you see what all of your friends are doing at any given moment?&lt;/p&gt;

&lt;p&gt;Is it possible that, like &lt;a href=&quot;http://en.wikipedia.org/wiki/Skynet_%28Terminator%29&quot;&gt;Skynet&lt;/a&gt;, we were so worried about the government becoming &lt;a href=&quot;http://en.wikipedia.org/wiki/Big_Brother_%28Nineteen_Eighty-Four%29&quot;&gt;Big Brother&lt;/a&gt; that we didn't notice we were creating him ourselves? And that we're &lt;em&gt;willingly&lt;/em&gt; giving up our privacy to him?&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2008-05-15:5081</id>
    <published>2008-05-15T23:28:00Z</published>
    <updated>2008-09-02T20:00:42Z</updated>
    <category term="firefox,development,ide,programming"/>
    <link href="http://ridingtheclutch.com/2008/5/15/plea-to-firefox-extension-community-please-build-an-ide" rel="alternate" type="text/html"/>
    <title>Plea to Firefox extension community - Please build an IDE!</title>
<content type="html">
            &lt;p&gt;I'm begging the community -- could someone build a simple IDE on top of Mozilla? I'm talking just a big text editor window, access to the filesystem and code-coloring. That's all I need. I do everything else in &lt;a href=&quot;http://getfirefox.com&quot;&gt;Firefox&lt;/a&gt; already (how did we ever program for the web before &lt;a href=&quot;http://getfirebug.com&quot;&gt;Firebug&lt;/a&gt;?) and if I could just switch tabs to write the actual code, I would be in HEAVEN. &lt;/p&gt;

&lt;p&gt;Right now I'm using &lt;a href=&quot;http://macromates.com&quot;&gt;TextMate&lt;/a&gt; on my Mac, which I love, but there aren't any features in there that I use that couldn't be duplicated in this barebones Mozilla/Firefox IDE. I'd even define the syntax for the code coloring myself if it was extensible enough to do so (it would have to be to support all the languages that people would want to use this for). Out the box I would want HTML, CSS, Javascript and Ruby/Rails. I will happily build the lexicons for those syntaxes, someone just give me the format they want them in! Might I suggest TextMate's highly customizable Bundles as a potential drop-in?&lt;/p&gt;

&lt;p&gt;I don't care about refactoring, automated builds or even code hinting. Files and colors are all I need (although being able to define a Project would be a nice-to-have). I've looked into Mozilla development and it's just going to take too much of an investment in time to get ramped up to the point that I could actually begin to write something useful, so I'm begging someone out there who already knows what they're doing to help me out! I'd even pay for the damn thing!&lt;/p&gt;

&lt;p&gt;Anyone?&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2008-02-11:3810</id>
    <published>2008-02-11T18:52:00Z</published>
    <updated>2008-09-02T20:00:46Z</updated>
    <category term="api"/>
    <category term="backpack"/>
    <category term="cfc"/>
    <category term="coldfusion"/>
    <link href="http://ridingtheclutch.com/2008/2/11/backpack-api-cfc" rel="alternate" type="text/html"/>
    <title>Backpack API CFC</title>
<content type="html">
            &lt;p&gt;Did some searching and found the old &lt;a href=&quot;http://ridingtheclutch.com/assets/2008/2/9/Backpack.cfc&quot;&gt;Backpack API CFC &lt;/a&gt; that people have been asking for!  I created this several years ago as &lt;a href=&quot;http://37signals.com&quot;&gt;37signals&lt;/a&gt; was &lt;a href=&quot;http://jf.backpackit.com/pub/73119&quot;&gt;linking to various implementations and language helpers&lt;/a&gt; for their API.  I haven't tried this thing since and I don't even know if it still works, but here it is (also available under 'Projects' at the right).&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2008-02-05:3735</id>
    <published>2008-02-05T04:26:00Z</published>
    <updated>2008-09-02T20:00:50Z</updated>
    <category term="lost"/>
    <category term="music"/>
    <category term="piano"/>
    <category term="sheet music"/>
    <category term="soundtrack"/>
    <link href="http://ridingtheclutch.com/2008/2/5/life-and-death-sheet-music-from-the-lost-soundtrack" rel="alternate" type="text/html"/>
    <title>Life and Death (or Win One for the Reaper) - Sheet Music from the Lost Soundtrack</title>
<content type="html">
            &lt;p&gt;&lt;a href=&quot;http://abc.go.com/primetime/lost/index?pn=index&quot;&gt;Lost&lt;/a&gt; is my favorite show on TV right now. I finally got around to purchasing the &lt;a href=&quot;http://www.amazon.com/Lost-Music-Television-Michael-Giacchino/dp/B000EHSVDM/ref=pd_bbs_sr_1?ie=UTF8&amp;amp;amp;s=music&amp;amp;amp;qid=1202147775&amp;amp;amp;sr=8-1&quot;&gt;soundtrack&lt;/a&gt; this weekend and I'm glad I did. Perfect recordings of some of the best music from the show. You almost don't notice it when you're watching, you just feel what you're supposed to feel. The best example of this for me was the finale of season 1 after they blow open the hatch. We flash back to everyone getting on the plane. Everyone is moving towards their seats, giving a polite smile or nod to strangers--others they'll end up sharing the island with. *We* know what's going to happen to them in the next few hours and the music playing (a variation on the song mentioned below) starts to play...very sad moment, even though you know they're going to be &quot;okay.&quot;&lt;/p&gt;

&lt;p&gt;One of the best songs from the show is The Sad One (usually played when someone dies) entitled &lt;em&gt;Life and Death&lt;/em&gt; on the soundtrack. There's actually another version, &lt;em&gt;Win One for the Reaper&lt;/em&gt; that I like better--no strings in the background (although there is a little guitar) and it feels like a finished song.  &lt;em&gt;Life and Death&lt;/em&gt; sort of fades out and then up come the discordant strings letting you know that something is wrong, usually right before a commercial. &lt;em&gt;Win One for the Reaper&lt;/em&gt; is very clean and has a distinct end to the song. It even ends a little high note, just a bit of hope there at the very end. Beautiful song.&lt;/p&gt;

&lt;p&gt;I don't really play the piano. Well, not in the normal sense. I can learn a song note by note and then sit down and play it from memory, but I can't read music to save my life (not &lt;em&gt;while&lt;/em&gt; playing, anyway).  Nevertheless I searched for the sheet music online, either to download or purchase but there was nothing. There was a torrent of the sheet music a while ago, apparently, but it doesn't seem to be available anymore. Google returned a few results for some &lt;a href=&quot;http://youtube.com/watch?v=AtEfWzakvYQ&quot;&gt;YouTube&lt;/a&gt; &lt;a href=&quot;http://youtube.com/watch?v=chtSbAU9Lqo&quot;&gt;videos&lt;/a&gt;. After going through a couple of those I found one that shows step-by-step how to play the song. Bingo! Now all I needed was a piano...&lt;/p&gt;

&lt;p&gt;I purchased my &lt;a href=&quot;http://www.apple.com/macbook/&quot;&gt;Macbook&lt;/a&gt; last year and one of the first things I did was uninstall &lt;a href=&quot;http://www.apple.com/ilife/garageband/&quot;&gt;GarageBand&lt;/a&gt;. When I installed &lt;a href=&quot;http://www.apple.com/macosx/&quot;&gt;Leopard&lt;/a&gt; I decided to keep it this time and even spent a few minutes playing around to see what I could do. It sat unused for months until this weekend when I realized I could use it as my piano. There's a neat mode that lets you use the keyboard to simulate the piano keys and works surprisingly well. I also played with the default piano sound to get much softer than default (turned down the velocity to about 23 and the release up to about 1 second). I started recording, tweaked things here and there and then ended up with what I thought sounded like a pretty good version of the real thing.  I also repeatedly listened to the real thing to fill in some gaps in the YouTube videos (several subtleties that it took me dozens of listenings to sound out for myself).&lt;/p&gt;

&lt;p&gt;Now I wanted to share with everyone else who might have been searching for the sheet music just like me. I had no idea if this would work, but I went up to File &gt; Print... and sure enough, I've got the sheet music!  So, attached below is a PDF of the sheet music for &lt;em&gt;Win One for the Reaper&lt;/em&gt; by &lt;a href=&quot;http://www.michaelgiacchino.com/&quot;&gt;Michael Giacchino&lt;/a&gt; (it has my name on the sheet simply because my name is in the computer, sorry Michael!).  With a little modification this is also &lt;em&gt;Life and Death&lt;/em&gt;.  Listen to the soundtrack and you'll be able to figure out the differences.  Enjoy!&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://ridingtheclutch.com/assets/2008/2/4/win_one_for_the_reaper-lost_soundtrack.pdf&quot;&gt;Win One for the Reaper / Life and Death - Lost Soundtrack (pdf)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Update&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here's an MP3 straight out of Garageband of myself playing the song. Had to tweak the default Grand Piano to make it softer and not nearly as bright:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://ridingtheclutch.com/assets/2008/2/5/Win_One_for_the_Reaper.mp3&quot;&gt;Win One for the Reaper (mp3)&lt;/a&gt;&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2007-10-12:3262</id>
    <published>2007-10-12T05:54:00Z</published>
    <updated>2008-09-02T20:00:55Z</updated>
    <link href="http://ridingtheclutch.com/2007/10/12/a-dilemma" rel="alternate" type="text/html"/>
    <title>A dilemma</title>
<content type="html">
            &lt;p&gt;Lately I&#8217;ve been bouncing between two extremes at work: wanting to Make a Difference and just Collecting a Paycheck. There are times at my job where I really want to fight for something, a design or a new feature, and sometimes I win&amp;mdash;Making a Difference. Other times I realize it&#8217;s not worth the fight and so I give up&amp;mdash;Collecting a Paycheck. Making a difference is great for the soul, but is it worth the aggravation and stress that comes along with it? Sitting back and collecting a paycheck is easy and carefree, but will I feel empty years later when I look back at what I&#8217;ve done with my life?&lt;/p&gt;


	&lt;p&gt;When I&#8217;m collecting a paycheck I feel like my free time is more important, and that I&#8217;ve got my priorities right. Or what the general consensus would say are the right priorities&#8212;family and friends first, work second. One of my favorite quotes: &#8220;On their deathbed, no one ever said &#8216;I wish I&#8217;d spent more time at the office.&#8217;&#8221; But do I want to look back and see that 33%+ of my life was spent just doing what I was told, not what I believed in?&lt;/p&gt;


	&lt;p&gt;When I&#8217;m making a difference I feel alive&amp;mdash;the code flows out of my fingers and the day flies by. I don&#8217;t mind working late to just finish up this one feature. I&#8217;m at home, thinking of little tweaks and updates. This is when family and friends start to move down the totem pole a little. Being at home becomes a distraction from what I &lt;em&gt;should&lt;/em&gt; be doing. Is that any way to live a life?&lt;/p&gt;


	&lt;p&gt;There are times at work when I feel&amp;mdash;when I know&amp;mdash;that my opinion doesn&#8217;t matter to the decision makers and that &lt;a href=&quot;http://despair.com/goals.html&quot;&gt;things are just going to be a certain way&lt;/a&gt; , no matter how clear it might be to everyone else that we&#8217;re moving in the wrong direction. At these times trying to Make a Difference just leads to disappointment&amp;mdash;you can&#8217;t win.  The boss wants it a certain way, and that&#8217;s just how it&#8217;s going to be. That when it&#8217;s time to go into paycheck mode. &lt;a href=&quot;http://despair.com/gettowork.html&quot;&gt;Just do what you&#8217;re told&lt;/a&gt; , the boss will be happy (the customers, they&#8217;re a different story).&lt;/p&gt;


	&lt;p&gt;I feel like someone who just collects a paycheck isn&#8217;t the guy who becomes &lt;span class=&quot;caps&quot;&gt;CEO&lt;/span&gt; of the company one day. But do I want to be that guy? Do I want even more stress and responsibility for things that, in the long run, really don&#8217;t matter? Or do I just enjoy my small victories when I can get them, do a good job from 9 to 5 and then come home and Make a Difference with the people that really matter?&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2007-08-22:3118</id>
    <published>2007-08-22T17:40:00Z</published>
    <updated>2008-09-02T20:00:59Z</updated>
    <category term="dvd"/>
    <category term="hd"/>
    <category term="home theater"/>
    <link href="http://ridingtheclutch.com/2007/8/22/welcome-to-hd" rel="alternate" type="text/html"/>
    <title>Welcome to HD</title>
<content type="html">
            &lt;p&gt;I finally crossed the threshold into High-Def.  I&#8217;d been holding back for quite a while, what with &lt;span class=&quot;caps&quot;&gt;HD DVD&lt;/span&gt; vs. Blu-ray, 1080i vs. 1080p, &lt;span class=&quot;caps&quot;&gt;LCD&lt;/span&gt; vs. plasma vs. &lt;span class=&quot;caps&quot;&gt;DLP&lt;/span&gt;&#8230; the list goes on.  After much research I finally found a &lt;span class=&quot;caps&quot;&gt;TV I&lt;/span&gt; knew I&#8217;d be happy with for a few years, the &lt;a href=&quot;http://www.amazon.com/gp/product/B000N50S5Y/?m=ATVPDKIKX0DER&quot;&gt;Samsung LN-T4661&lt;/a&gt; .  Glowing reviews from professionals and home users as well.  I&#8217;ve gone through and did a quick once-over calibration with the new &lt;span class=&quot;caps&quot;&gt;HD DVD&lt;/span&gt; version of &lt;a href=&quot;http://www.amazon.com/Digital-Video-Essentials-Combo-Disc/dp/B000IHYY3Y&quot;&gt;Digital Video Essentials&lt;/a&gt; and it looks amazing.  I can&#8217;t stress this enough: do not just plug in your TV and leave it like that forever.  Get this disc or something similar and tweak those settings. From the factory most TVs are set to look good in a showroom and that means maximum brightness and overly saturated colors, which ruins the fine details in your favorite TV show or movie.&lt;/p&gt;


	&lt;p&gt;I knew that normal TV programming wouldn&#8217;t keep me satiated very long so I also picked up a &lt;a href=&quot;http://www.amazon.com/Toshiba-HD-A20-1080p-DVD-Player/dp/B000MKC34E&quot;&gt;Toshiba HD-A20&lt;/a&gt; HD &lt;span class=&quot;caps&quot;&gt;DVD&lt;/span&gt; player, capable of 1080p output. Although depending on who you ask, it might not be true 1080p. But, the next step up in players is their top-of-the-line HD-XA2 model which costs twice as much.  I think I&#8217;ll wait for a firmware update for mine, or pick up a &lt;a href=&quot;http://gizmodo.com/gadgets/grope/hands+on-samsungs-bd+up5000-hybrid-hd-dvd-and-blu+ray-player-verdict-so-far-the-best-282569.php&quot;&gt;Samsung BD-UP5000&lt;/a&gt; dual format player when it arrives in October.&lt;/p&gt;


	&lt;p&gt;Now for images.  In a word: stunning.  When you have a great set showing some great content (check out the &lt;a href=&quot;http://www.amazon.com/Planet-Earth-Complete-BBC-DVD/dp/B000MRAAJW&quot;&gt;Planet Earth&lt;/a&gt; series), it&#8217;s hard to believe that images from a television can look this good. There&#8217;s a scene in Planet Earth where the camera zooms out and you see litterally thousands of birds on the screen at once.  Each is perfectly clear and identifiable.If you don&#8217;t plan on upgrading from standard definition any time soon, do yourself a favor and don&#8217;t go out of your way to find a setup like this.  Ignorance is bliss!  I can&#8217;t imagine going back to standard def now.  I watched a couple scenes from &lt;a href=&quot;http://www.amazon.com/King-Kong-HD-DVD-Adrien-Brody/dp/B000ICM5VW&quot;&gt;King Kong&lt;/a&gt; in HD last night and I don&#8217;t remember it looking half this good in the theater. The colors are so rich, everything pops off the screen.  You can make out individual flies buzzing around the T-Rex as it wakes up next to Naomi Watts in the jungle.&lt;/p&gt;


	&lt;p&gt;And maybe it&#8217;s just all in my head, but the sound seems that much better as well.  HD discs are supposed to have more bandwidth for sound, so it &lt;em&gt;should&lt;/em&gt; be better.  I&#8217;ve got a &lt;a href=&quot;http://usa.denon.com/ArchivedAVReceivers.asp?archivedModelSearch=true&amp;amp;#38;clearCurrent=true&amp;amp;#38;archivedCategory=AV&amp;amp;#38;archivedModel=AVR-3805&amp;amp;#38;imageField.x=23&amp;amp;#38;imageField.y=6&quot;&gt;Denon &lt;span class=&quot;caps&quot;&gt;AVR&lt;/span&gt;-3805&lt;/a&gt; receiver talking to 7.1 &lt;a href=&quot;http://www.amazon.com/s/ref=nb_ss_gw/105-1815532-4898853?initialSearch=1&amp;amp;#38;url=search-alias%3Daps&amp;amp;#38;field-keywords=infinity+primus&amp;amp;#38;Go.x=0&amp;amp;#38;Go.y=0&amp;amp;#38;Go=Go&quot;&gt;Infinity Primus&lt;/a&gt; speakers, and had this same setup even before the new TV.  Sound was good before but it feels like a true home theater now. There&#8217;s a point in King Kong where he stomps off past the camera and you can hear him walking off to the side and eventually behind you, staying easily localized the whole time.&lt;/p&gt;


	&lt;p&gt;If you&#8217;re on the fence about HD, just go ahead and take the plunge, you won&#8217;t be disappointed. I&#8217;m not aware of any big changes to the specifications on the horizon so you should remain future-proof for some time. If you haven&#8217;t see a good setup yet, make it a point to go and find one. It will definitely push you over the edge.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2007-08-03:3085</id>
    <published>2007-08-03T19:57:00Z</published>
    <updated>2008-09-02T20:01:03Z</updated>
    <category term="rubyweaver,textmate,google,dreamweaver"/>
    <link href="http://ridingtheclutch.com/2007/8/3/what-about-rubyweaver" rel="alternate" type="text/html"/>
    <title>What about RubyWeaver?</title>
<content type="html">
            &lt;p&gt;Thanks to &lt;a href=&quot;http://google.com/analytics&quot;&gt;Google Analytics&lt;/a&gt; I've found that plenty of people have been coming here looking for the old RubyWeaver extension. Thanks to Jason Gill, it has a new home:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://rubyweaver.gilluminate.com/&quot;&gt;RubyWeaver&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I also added a link in the side nav and the 404 page, so hopefully people can find it. Sorry about that! &lt;a href=&quot;http://macromates.com&quot;&gt;TextMate&lt;/a&gt; is my editor of choice now, I haven't touched &lt;a href=&quot;http://adobe.com/products/dreamweaver&quot;&gt;Dreamweaver&lt;/a&gt; in ages.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2007-07-30:3074</id>
    <published>2007-07-30T16:42:00Z</published>
    <updated>2008-09-02T20:01:06Z</updated>
    <link href="http://ridingtheclutch.com/2007/7/30/if-i-ever-release-an-album" rel="alternate" type="text/html"/>
    <title>If I ever release an album</title>
<content type="html">
            &lt;p&gt;This will be the cover:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/30/rob_album_small.jpg&quot; alt=&quot;The Very Best of Rob Cameron&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I think you can agree that no other image could sum up my very best.&lt;/p&gt;

&lt;p&gt;See the &lt;a href=&quot;http://www.amazon.com/Very-Best-Glen-Campbell/dp/B00000DQT3&quot;&gt;original album here&lt;/a&gt;&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2007-07-23:3059</id>
    <published>2007-07-23T03:15:00Z</published>
    <updated>2008-08-13T15:55:36Z</updated>
    <category term="iPhone,sony,headphones,music"/>
    <link href="http://ridingtheclutch.com/2007/7/23/use-your-headphones-with-the-iphone" rel="alternate" type="text/html"/>
    <title>Use your headphones with the iPhone</title>
<content type="html">
            &lt;p&gt;Here's how to get most Sony earbud-style headphones to fit the iPhone without one of those &lt;a href=&quot;http://catalog.belkin.com/IWCatProductPage.process?Product_Id=374491&quot;&gt;ridiculous 6&quot; extenders available from Belkin&lt;/a&gt; and others.&lt;/p&gt;

&lt;p&gt;I'll be using a pair of &lt;a href=&quot;http://www.amazon.com/Sony-MDREX90LP-MDR-EX90LP-Stereo-Earphones/dp/B000EGLZUE/ref=pd_bbs_sr_1/002-9037687-9220860?ie=UTF8&amp;amp;amp;s=electronics&amp;amp;amp;qid=1185162051&amp;amp;amp;sr=8-1&quot;&gt;Sony MDR-EX90LP&lt;/a&gt; earbuds (highly recommended, by the way). Most, if not all, Sony earbuds have this same right angle connector on the end:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Here's the infamous iPhone port. The actual port is sunk down 3/16ths of inch or so making it very difficult for headphones with a normal plug to fit:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/1a.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Here's what happens when we try to plug in our Sony headphones as they are right out of the package:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Not ideal. Luckily all we need to remedy this situation is your standard razor blade:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/3.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I've done this with another pair of headphones so I already know that we need to remove about 1/8 inch of rubber around the plug:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/4.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Simply repeat this cut all the way around the plug:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/5.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Peel off (may need to touch up your cuts if they weren't deep enough the first time):&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/6.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;And there we go!&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/7.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Let's try to plug them in:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/8.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Whoops. Need to remove a little of the plastic as well.  We'll need to remove the corners from the &quot;bottom&quot; edge&amp;mdash;the same side that the cord is on. Here's one edge cut and another scored, ready to be cut:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/9.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/10.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Ahh, much better. The plug will go in like this but doesn't quite rotate freely in the socket unless we trim the other two corners as well:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/11.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Here's the final trim on all corners:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/12.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Now that's a good fit! You'll feel it lock right in and it should rotate freely in the socket. Enjoy!&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2007/7/23/13.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;P.S. These in-ear earbud style headphones are the most comfortable type I've found. While none will ever sound as good as a nice pair of over-the-ear phones, even those make my ears &quot;tired&quot; after a while (something about them being constantly covered) and they're just not practical for most travel. The standard earbud style, like the ones that come with the iPhone/iPod just irritate the edges of the inside of my ear. But I can wear these in-ear style all day and they never become uncomfortable.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2007-07-03:2991</id>
    <published>2007-07-03T15:53:00Z</published>
    <updated>2008-09-02T20:01:20Z</updated>
    <category term="iPhone"/>
    <link href="http://ridingtheclutch.com/2007/7/3/the-iphone-does-everything" rel="alternate" type="text/html"/>
    <title>The iPhone does everything</title>
<content type="html">
            &lt;p&gt;I just paid my bills, got directions, secured a ride and am posting this article, all from my iPhone. It is, without a doubt, the greatest piece of technology I have ever used. How can Apple consistently make such amazing products? Doesn't anyone else out there &quot;get it?&quot; This is what the future was meant to be like.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://ridingtheclutch.com/">
    <author>
      <name>Rob</name>
    </author>
    <id>tag:ridingtheclutch.com,2007-02-14:556</id>
    <published>2007-02-14T15:06:00Z</published>
    <updated>2008-06-26T17:18:18Z</updated>
    <category term="coldfusion"/>
    <category term="rails"/>
    <category term="ruby"/>
    <category term="wheels"/>
    <link href="http://ridingtheclutch.com/2007/2/14/ridingtheclutch-is-back" rel="alternate" type="text/html"/>
    <title>RidingTheClutch is back</title>
<content type="html">
            &lt;p&gt;Yes, after months of absence, a new server and a couple new jobs, I&#8217;m back. My newest pursuit is all things &lt;a href=&quot;http://www.rubyforge.org&quot;&gt;Ruby&lt;/a&gt; and &lt;a href=&quot;http://www.rubyonrails.org&quot;&gt;Rails&lt;/a&gt; (this blog is running on &lt;a href=&quot;http://mephistoblog.com/&quot;&gt;Mephisto&lt;/a&gt; . I released &lt;a href=&quot;http://www.cfwheels.com&quot;&gt;ColdFusion on Wheels&lt;/a&gt; to little fanfare in the community. If one of the big guys don&#8217;t pick up on your framework it&#8217;s pretty much destined to fail. There&#8217;s a little bit of closed-mindedness in every programming community, but the CF community seems particularly susceptible. After all, didn&#8217;t we &lt;em&gt;invent&lt;/em&gt; rapid application development? How dare some little upstart framework claim to do something better/faster/easier? And why would someone then come along and adopt the best parts of that framework for our own beloved language?&lt;/p&gt;


	&lt;p&gt;My own development of Wheels is on hiatus for a while, but until then my co-core-committer, Per Djurner is taking over the helm. The &lt;a href=&quot;http://groups.google.com/group/cfwheels&quot;&gt;Google Group&lt;/a&gt; is still hopping and there are a couple production sites out there running on Wheels (they should be posted to &lt;a href=&quot;http://www.cfwheels.com&quot;&gt;cfwheels.com&lt;/a&gt;&lt;/p&gt;
          </content>  </entry>
</feed>
