<?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>notebook &#187; today</title>
	<atom:link href="http://eddcouchman.com/notebook/category/today/feed/" rel="self" type="application/rss+xml" />
	<link>http://eddcouchman.com/notebook</link>
	<description>from edd couchman, the creator of redheat and chopter</description>
	<lastBuildDate>Sat, 24 Jul 2010 13:14:35 +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>iPhone Review after 50 days</title>
		<link>http://eddcouchman.com/notebook/iphone-review-after-50-days/</link>
		<comments>http://eddcouchman.com/notebook/iphone-review-after-50-days/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 16:16:12 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[installer.app]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/iphone-review-after-50-days/</guid>
		<description><![CDATA[I&#8217;ve now had my iPhone for 50 days, so thought I&#8217;d give you all a quick review.It&#8217;s incredible! But, I have decided to jailbreak it &#8212; which, by the way, is pretty easy to do. The main reason for jailbreaking the &#8230; <a href="http://eddcouchman.com/notebook/iphone-review-after-50-days/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve now had my iPhone for 50 days, so thought I&#8217;d give you all a quick review.It&#8217;s incredible!</p>
<p>But, I have decided to jailbreak it &#8212; which, by the way, is <a href="http://lifehacker.com/337863/how-to-install-third+party-apps-on-your-new-iphone-or-ipod-touch">pretty easy to do</a>.</p>
<p>The main reason for jailbreaking the iPhone, is because you can&#8217;t send a text message to multiple people, which in my opinion, is a really big oversight by Apple. Other than this small problem, the iPhone is pretty perfect&#8230; or, I thought it was pretty perfect.</p>
<p>Since jailbreaking, I have re-fallen in love with this gadget. It&#8217;s incredibly powerful, and now does all of the things I wish it could do from the off.</p>
<ul>
<li>Rule number one when buying the iPhone. Jailbreak!</li>
<li>Rule number two: buy some decent headphones. I just bought the V-moda &#8216;phones, and they&#8217;re really, really good. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/iphone-review-after-50-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dispatch.fcgi or, How to get Ruby on Rails to work</title>
		<link>http://eddcouchman.com/notebook/dispatchfcgi-or-how-to-get-ruby-on-rails-to-work/</link>
		<comments>http://eddcouchman.com/notebook/dispatchfcgi-or-how-to-get-ruby-on-rails-to-work/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 12:14:53 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/dispatchfcgi-or-how-to-get-ruby-on-rails-to-work/</guid>
		<description><![CDATA[I host all of my website with Dreamhost. I think they’re fantastic — a little slow, perhaps — but they’re full of features, and let you install all kinds of goodness on their servers. Recently, however, I have been struggling &#8230; <a href="http://eddcouchman.com/notebook/dispatchfcgi-or-how-to-get-ruby-on-rails-to-work/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I host all of my website with <a href="http://www.dreamhost.com/r.cgi?200192">Dreamhost</a>. I think they’re fantastic — a little slow, perhaps — but they’re full of features, and let you install all kinds of goodness on their servers.</p>
<p>Recently, however, I have been struggling to get Ruby on Rails working on their domains. I have been fighting an uphill battle and losing, until I worked out the Shebang! line in dispatch.fcgi…</p>
<blockquote><p>#!/usr/bin/ruby1.8</p></blockquote>
<p>This will magically get your <abbr title="Ruby on Rails">RoR</abbr> application working.</p>
<p>The full dispatch.fcgi file is below:</p>
<pre><code lang="fcgi">#!/usr/bin/ruby1.8
#
# You may specify the path to the FastCGI crash log (a log of unhandled
# exceptions which forced the FastCGI instance to exit, great for debugging)
# and the number of requests to process before running garbage collection.
#
# By default, the FastCGI crash log is RAILS_ROOT/log/fastcgi.crash.log
# and the GC period is nil (turned off).  A reasonable number of requests
# could range from 10-100 depending on the memory footprint of your app.
#
# Example:
#   # Default log path, normal GC behavior.
#   RailsFCGIHandler.process!
#
#   # Default log path, 50 requests between GC.
#   RailsFCGIHandler.process! nil, 50
#
#   # Custom log path, normal GC behavior.
#   RailsFCGIHandler.process! '/var/log/myapp_fcgi_crash.log'
#
require File.dirname(__FILE__) + "/../config/environment"
require 'fcgi_handler'</code>

RailsFCGIHandler.process!</pre>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/dispatchfcgi-or-how-to-get-ruby-on-rails-to-work/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MacBook Pro Plus™</title>
		<link>http://eddcouchman.com/notebook/macbook-pro-plus%e2%84%a2/</link>
		<comments>http://eddcouchman.com/notebook/macbook-pro-plus%e2%84%a2/#comments</comments>
		<pubDate>Fri, 22 Jun 2007 13:34:23 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/macbook-pro-plus%e2%84%a2/</guid>
		<description><![CDATA[It&#8217;s amazing! The MacBook Pro that Vuture bought me is incredible. The whole machine flies (not literally, obviously) and running Windows in real-time alongside OS X is such a boon. If you have the money, I would definitely recommend that &#8230; <a href="http://eddcouchman.com/notebook/macbook-pro-plus%e2%84%a2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>It&#8217;s amazing!</strong></p>
<p>The MacBook Pro that <a href="http://www.vuture.co.uk/">Vuture</a> bought me is incredible. The whole machine flies (not literally, obviously) and running Windows in real-time alongside OS X is such a boon.</p>
<p>If you have the money, I would definitely recommend that you buy one of these beasts.</p>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/macbook-pro-plus%e2%84%a2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacBook Pro</title>
		<link>http://eddcouchman.com/notebook/macbook-pro/</link>
		<comments>http://eddcouchman.com/notebook/macbook-pro/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 16:09:39 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/macbook-pro/</guid>
		<description><![CDATA[One week ago today I started fulltime work at Vuture. Today, Vuture ordered me a brand new 2.4GHz Core 2 Duo MacBook Pro! (For those of you who don&#8217;t understand &#8220;Geek speak&#8221;, that means: kick-ass laptop). I&#8217;m very excited! Thank you &#8230; <a href="http://eddcouchman.com/notebook/macbook-pro/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One week ago today I started fulltime work at Vuture.<br />
Today, Vuture ordered me a brand new 2.4GHz Core 2 Duo MacBook Pro! (For those of you who don&#8217;t understand &#8220;Geek speak&#8221;, that means: kick-ass laptop).<br />
I&#8217;m <strong>very</strong> excited!</p>
<p>Thank you Vuture!</p>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/macbook-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coda</title>
		<link>http://eddcouchman.com/notebook/coda/</link>
		<comments>http://eddcouchman.com/notebook/coda/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 09:45:29 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/coda/</guid>
		<description><![CDATA[I have fallen in love. Seriously, I&#8217;m truly, truly smitten with Coda from Panic. It is a fantastic bit of kit, and by far better than Adobe&#8217;s Dreamweaver CS3. The page views are stunning, the FTP integration and large Publish &#8230; <a href="http://eddcouchman.com/notebook/coda/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have fallen in love. Seriously, I&#8217;m truly, truly smitten with <a href="http://www.panic.com/coda/">Coda</a> from Panic. It is a fantastic bit of kit, and by far better than Adobe&rsquo;s Dreamweaver CS3.</p>
<p>The page views are stunning, the FTP integration and large <strong>Publish All</strong> button works incredibly well.</p>
<p>While the text editor isn&#8217;t as powerful as Textmate, and the CSS editor isn&#8217;t as flexible as CSSEdit2, the overall synergy of this tool is fantastic.</p>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/coda/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tradeswomen</title>
		<link>http://eddcouchman.com/notebook/tradeswomen/</link>
		<comments>http://eddcouchman.com/notebook/tradeswomen/#comments</comments>
		<pubDate>Sat, 24 Feb 2007 22:29:07 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/tradeswomen/</guid>
		<description><![CDATA[The tradeswomen development blog is up and running. Check it out!]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://blog.tradeswomen.biz/">tradeswomen development blog</a> is up and running. Check it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/tradeswomen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fisheye and go!</title>
		<link>http://eddcouchman.com/notebook/fisheye-and-go/</link>
		<comments>http://eddcouchman.com/notebook/fisheye-and-go/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 20:35:54 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/fisheye-and-go/</guid>
		<description><![CDATA[I know, I know: it&#8217;s just a camera. But the colour reproduction is incredible, and the lens is phenomenal. Today (about 24 hours after the camera arrived) a fisheye lens arrived from eBay. The photos I have taken with it &#8230; <a href="http://eddcouchman.com/notebook/fisheye-and-go/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I know, I know: it&#8217;s just a camera. But the colour reproduction is incredible, and the lens is phenomenal. Today (about 24 hours after the camera arrived) a fisheye lens arrived from eBay.</p>
<p>The photos I have taken with it will <a href="http://flickr.com/photos/redheat/tags/eos350d">appear on flickr</a> tomorrow at some point, but taking photos on a beautiful camera that come out so nicely <a href="http://www.lomography.com/">lomographied</a> is a strange but great experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/fisheye-and-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon EOS 350D</title>
		<link>http://eddcouchman.com/notebook/canon-eos-350d/</link>
		<comments>http://eddcouchman.com/notebook/canon-eos-350d/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 15:49:36 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/canon-eos-350d/</guid>
		<description><![CDATA[I&#8217;ve just ordered a Canon EOS 350D digital SLR camera. It&#8217;s a 8-megapixel beast, and the picture quality is amazing! Here&#8217;s a sample photo, taken on my first day with the camera, to show off how good the lens is:]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just ordered a Canon EOS 350D digital SLR camera. It&#8217;s a 8-megapixel beast, and the picture quality is amazing!</p>
<p>Here&#8217;s a sample photo, taken on my first day with the camera, to show off how good the lens is:<br />
<a href="http://flickr.com/photos/redheat/236058244/"><img src="http://static.flickr.com/92/236058244_256a9f073f.jpg?v=0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/canon-eos-350d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logitech MX 610</title>
		<link>http://eddcouchman.com/notebook/logitech-mx-610/</link>
		<comments>http://eddcouchman.com/notebook/logitech-mx-610/#comments</comments>
		<pubDate>Tue, 29 Aug 2006 08:57:45 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/logitech-mx-610/</guid>
		<description><![CDATA[First impressions of this mouse are very positive. It feels nice in the hand, looks the part, and has enough flashing lights and buttons to keep everybody happy. It&#8217;s really smooth and precise (the lazer helps with this) and started &#8230; <a href="http://eddcouchman.com/notebook/logitech-mx-610/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span class="imagelink"><span class="imagelink"><a title="Logitech MX 610" class="imagelink" href="http://eddcouchman.com/notebook/wp-content/uploads/2006/08/logitech-mx610.jpg"><img align="left" alt="Logitech MX 610" id="image16" title="Logitech MX 610" src="http://eddcouchman.com/notebook/wp-content/uploads/2006/08/logitech-mx610.thumbnail.jpg" /></a>First impressions of this mouse are very positive. It feels nice in the hand, looks the part, and has enough flashing lights and buttons to keep everybody happy. It&#8217;s really smooth and precise (the lazer helps with this) and started to work straight away.</span></span></p>
<p>So far, it&#8217;s better than the IntelliMouse Explorer, and probably will overtake the bluetooth Mighty Mouse as my mouse of choice.</p>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/logitech-mx-610/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>waiting. coffee. more waiting. more coffee</title>
		<link>http://eddcouchman.com/notebook/waiting-coffee-more-waiting-more-coffee/</link>
		<comments>http://eddcouchman.com/notebook/waiting-coffee-more-waiting-more-coffee/#comments</comments>
		<pubDate>Thu, 17 Aug 2006 21:59:57 +0000</pubDate>
		<dc:creator>edd</dc:creator>
				<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://eddcouchman.com/notebook/2006/08/waiting-coffee-more-waiting-more-coffee/</guid>
		<description><![CDATA[It&#8217;s almost 11 o&#8217;clock, which means I&#8217;m halfway through my evening. At 2am I can go to pick up my girl, which is nice because it means I can expect to get about 4 hours sleep tonight. Honestly, I&#8217;m not &#8230; <a href="http://eddcouchman.com/notebook/waiting-coffee-more-waiting-more-coffee/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/redheat/201977536/" title="photo sharing"><img src="http://static.flickr.com/65/201977536_62a8b428c1_m.jpg" align="left" /></a>It&#8217;s almost 11 o&#8217;clock, which means I&#8217;m halfway through my evening. At 2am I can go to pick up my girl, which is nice because it means I can expect to get about 4 hours sleep tonight.</p>
<p>Honestly, I&#8217;m not complaining; I&#8217;m used to late nights, and she <strong>really</strong> deserves to go out (good A-levels = University of Surrey, Maths and Business), but why does she have to do it on a work night?</p>
]]></content:encoded>
			<wfw:commentRss>http://eddcouchman.com/notebook/waiting-coffee-more-waiting-more-coffee/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
