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

<channel>
	<title>Andrew Ferrier</title>
	<atom:link href="http://www.andrewferrier.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andrewferrier.com/blog</link>
	<description>Economics; Travel; Film; and Technology.</description>
	<pubDate>Mon, 01 Dec 2008 10:55:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Blood, Sex and Coffee</title>
		<link>http://www.andrewferrier.com/blog/2008/11/27/blood-sex-and-coffee/</link>
		<comments>http://www.andrewferrier.com/blog/2008/11/27/blood-sex-and-coffee/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 13:47:59 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[blood]]></category>

		<category><![CDATA[coffee]]></category>

		<category><![CDATA[fiction]]></category>

		<category><![CDATA[novel]]></category>

		<category><![CDATA[personal]]></category>

		<category><![CDATA[sex]]></category>

		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=546</guid>
		<description><![CDATA[I don&#8217;t normally do plugs on here, but my good friend Ella has just recently completed her first novel: Blood, Sex and Coffee. It&#8217;s a mammoth achievement, weighing in at a good 700 pages, and is a campy vampire novel bringing in more themes than you&#8217;d think could be fit in such as a size [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t normally do plugs on here, but my good friend Ella has just recently completed her first novel: <a href="http://www.lulu.com/content/5084140">Blood, Sex and Coffee</a>. It&#8217;s a mammoth achievement, weighing in at a good 700 pages, and is a campy vampire novel bringing in more themes than you&#8217;d think could be fit in such as a size - although is fundamentally a huge tract of story crossing space and time. I haven&#8217;t yet had a chance to read it - and I&#8217;m not normally a big fiction reader - but I have a 12 hour flight to Cape Town at the weekend, so maybe be burning through some of it then. I hope to post a review sometime soon.</p>
<p>You can download it for free or buy a paper copy for £13, <a href="http://www.lulu.com/content/5084140">either of them via Lulu</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/11/27/blood-sex-and-coffee/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Connecting Google Reader and podget</title>
		<link>http://www.andrewferrier.com/blog/2008/11/23/connecting-google-reader-and-podget/</link>
		<comments>http://www.andrewferrier.com/blog/2008/11/23/connecting-google-reader-and-podget/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 21:08:09 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[google-reader]]></category>

		<category><![CDATA[perl]]></category>

		<category><![CDATA[podcast]]></category>

		<category><![CDATA[podget]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[scripting]]></category>

		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=542</guid>
		<description><![CDATA[For some time, I&#8217;ve had a Perl script that runs regularly, backing up my Google Reader subscriptions using the standard OPML format:

#!/usr/bin/perl
#
# Usage:
#  backup-google-reader-opml file-to-write-to.opml google.user.name@domain google-password
&#160;
use strict;
use warnings;
&#160;
use WWW::Mechanize;
&#160;
my $mech = WWW::Mechanize-&#62;new&#40;&#41;;
&#160;
$mech-&#62;get&#40;&#34;http://reader.google.com&#34;&#41;
    or die &#34;Cannot reach Google Reader Homepage&#34;;
&#160;
$mech-&#62;submit_form&#40;
    form_number =&#62; 1,
    fields =&#62;
 [...]]]></description>
			<content:encoded><![CDATA[<p>For some time, I&#8217;ve had a Perl script that runs regularly, backing up my Google Reader subscriptions using the standard OPML format:</p>

<div class="wp_syntax"><div class="code"><pre class="perl perl" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/perl</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Usage:</span>
<span style="color: #666666; font-style: italic;">#  backup-google-reader-opml file-to-write-to.opml google.user.name@domain google-password</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">use</span> strict;
<span style="color: #000000; font-weight: bold;">use</span> warnings;
&nbsp;
<span style="color: #000000; font-weight: bold;">use</span> WWW<span style="color: #339933;">::</span><span style="color: #006600;">Mechanize</span>;
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$mech</span> <span style="color: #339933;">=</span> WWW<span style="color: #339933;">::</span><span style="color: #006600;">Mechanize</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">new</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
&nbsp;
<span style="color: #0000ff;">$mech</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">get</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;http://reader.google.com&quot;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #b1b100;">or</span> <span style="color: #000066;">die</span> <span style="color: #ff0000;">&quot;Cannot reach Google Reader Homepage&quot;</span>;
&nbsp;
<span style="color: #0000ff;">$mech</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">submit_form</span><span style="color: #009900;">&#40;</span>
    form_number <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>
    fields <span style="color: #339933;">=&gt;</span>
    <span style="color: #009900;">&#123;</span>
        Email <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">$ARGV</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
        Passwd <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">$ARGV</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#41;</span>
    <span style="color: #b1b100;">or</span> <span style="color: #000066;">die</span> <span style="color: #ff0000;">&quot;Cannot submit form&quot;</span>;
&nbsp;
<span style="color: #0000ff;">$mech</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">get</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;http://www.google.com/reader/subscriptions/export&quot;</span><span style="color: #009900;">&#41;</span>;
<span style="color: #0000ff;">$mech</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">save_content</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$ARGV</span><span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;</pre></div></div>

<p>However, I recently wrote another script (this time Python) that then takes this OPML, parses out all the URLs that are tagged with &#8216;podcast&#8217;, and outputs a serverlist file for <a href="http://podget.sourceforge.net/">podget</a> (an automated console-based podcast downloader). This enables me to subscribe to a podcast in Google Reader, and have the podcast automatically added to the download list. The script looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="python python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/python</span>
<span style="color: #808080; font-style: italic;">#</span>
<span style="color: #808080; font-style: italic;"># Pass in the OPML file as the first command-line parameter. Will output the</span>
<span style="color: #808080; font-style: italic;"># podget serverlist on stdout.</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">re</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">sys</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">xml</span>.<span style="color: black;">dom</span>.<span style="color: black;">minidom</span>
&nbsp;
doc = <span style="color: #dc143c;">xml</span>.<span style="color: black;">dom</span>.<span style="color: black;">minidom</span>.<span style="color: black;">parse</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">sys</span>.<span style="color: black;">argv</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
&nbsp;
body = doc.<span style="color: black;">getElementsByTagName</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;body&quot;</span><span style="color: black;">&#41;</span><span style="color: black;">&#91;</span>0<span style="color: black;">&#93;</span>
&nbsp;
p = <span style="color: #dc143c;">re</span>.<span style="color: #008000;">compile</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'^<span style="color: #000099; font-weight: bold;">\W</span>+'</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">for</span> outline <span style="color: #ff7700;font-weight:bold;">in</span> doc.<span style="color: black;">getElementsByTagName</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;outline&quot;</span><span style="color: black;">&#41;</span>:
    <span style="color: #ff7700;font-weight:bold;">if</span> outline.<span style="color: black;">getAttribute</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;text&quot;</span><span style="color: black;">&#41;</span> == <span style="color: #483d8b;">&quot;podcast&quot;</span>:
        <span style="color: #ff7700;font-weight:bold;">for</span> subOutlines <span style="color: #ff7700;font-weight:bold;">in</span> outline.<span style="color: black;">getElementsByTagName</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;outline&quot;</span><span style="color: black;">&#41;</span>:
            title = subOutlines.<span style="color: black;">getAttribute</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;title&quot;</span><span style="color: black;">&#41;</span>
            title = p.<span style="color: black;">sub</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;&quot;</span>, title<span style="color: black;">&#41;</span>
            <span style="color: #ff7700;font-weight:bold;">print</span> subOutlines.<span style="color: black;">getAttribute</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;xmlUrl&quot;</span><span style="color: black;">&#41;</span> + <span style="color: #483d8b;">&quot; NoCategory &quot;</span> + title</pre></div></div>

<p>Feel free to use and adapt to your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/11/23/connecting-google-reader-and-podget/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fixing up TripIt and Dopplr Integration</title>
		<link>http://www.andrewferrier.com/blog/2008/11/14/fixing-up-tripit-and-dopplr-integration/</link>
		<comments>http://www.andrewferrier.com/blog/2008/11/14/fixing-up-tripit-and-dopplr-integration/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 13:05:47 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[dopplr]]></category>

		<category><![CDATA[pipes]]></category>

		<category><![CDATA[synchronise]]></category>

		<category><![CDATA[synchronize]]></category>

		<category><![CDATA[travel]]></category>

		<category><![CDATA[tripit]]></category>

		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[yahoo]]></category>

		<category><![CDATA[yahoopipes]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=537</guid>
		<description><![CDATA[I&#8217;ve had my TripIt Personal Calendar Feed specified as an iCal feed into Dopplr for some time, to keep the two in sync by adding every trip in TripIt into Dopplr automatically (I&#8217;d give up on Dopplr entirely, as it seems a bit overdesigned and buggy - but it is a bit shinier than TripIt [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had my <a href="http://www.tripit.com/account/edit/section/feeds">TripIt Personal Calendar Feed</a> specified as <a href="http://www.dopplr.com/account/sources">an iCal feed into Dopplr</a> for some time, to keep the two in sync by adding every trip in <a href="http://www.tripit.com/">TripIt</a> into <a href="http://www.dopplr.com/">Dopplr</a> automatically (I&#8217;d give up on Dopplr entirely, as it seems a bit overdesigned and buggy - but it is a bit shinier than TripIt and produces nicer stats, so I&#8217;m hanging on to using it against my better judgement). But unfortunately the folks at TripIt broke this integration recently by adding exact geographic locations to the feed. This caused Dopplr to be over-zealous and make the destinations too specific (regions of Madrid and Paris, for example - rather than the whole city).</p>
<p>So I wrote <a href="http://pipes.yahoo.com/andrewf/tripitpersonalcalendarfeeddopplr">a Yahoo Pipe</a> that fixes up the stream - by removing the exact geographic locations and any items that describe activities and not the trip. Feel free to use it if it&#8217;s helpful - the single parameter for the pipe is the URL of your TripIt Personal Calendar Feed, and you&#8217;ll want to grab the URL of the pipe as an iCal feed to specify in your Dopplr account.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/11/14/fixing-up-tripit-and-dopplr-integration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Burn After Reading</title>
		<link>http://www.andrewferrier.com/blog/2008/10/24/burn-after-reading/</link>
		<comments>http://www.andrewferrier.com/blog/2008/10/24/burn-after-reading/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 16:01:51 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[blackcomedy]]></category>

		<category><![CDATA[coenbrothers]]></category>

		<category><![CDATA[comedy]]></category>

		<category><![CDATA[farce]]></category>

		<category><![CDATA[film]]></category>

		<category><![CDATA[movie]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=532</guid>
		<description><![CDATA[Went to see Burn After Reading with plv last night. It&#8217;s a bit of a slow starter, but when it gets going, there are some real solid comedic moments. It&#8217;s not laugh-a-minute, and is a little disjointed, but it&#8217;s sure entertaining as the plot gets more and more mashed up, and could almost be classed [...]]]></description>
			<content:encoded><![CDATA[<p>Went to see Burn After Reading with <a href="http://plv.livejournal.com/">plv</a> last night. It&#8217;s a bit of a slow starter, but when it gets going, there are some real solid comedic moments. It&#8217;s not laugh-a-minute, and is a little disjointed, but it&#8217;s sure entertaining as the plot gets more and more mashed up, and could almost be classed as a farce if it were a little clearer. Indeed, as the CIA boss says at one point:</p>
<blockquote><p>Report back to me when &#8230; I dunno &#8230; when it makes sense.</p></blockquote>
<p>It&#8217;s definitely worth the price of admission, and is a Coen brothers pic I actually like (they vary a lot). <a href="http://en.wikipedia.org/wiki/Brad_Pitt">Brad Pitt</a> and <a href="http://en.wikipedia.org/wiki/George_Clooney">George Clooney</a> both do a good job of playing bozos (Brad&#8217;s attempt to blackmail <a href="http://en.wikipedia.org/wiki/John_Malkovich">John Malkovich</a> is hilarious), and <a href="http://en.wikipedia.org/wiki/J._K._Simmons">J.K. Simmons</a> as the aforementioned CIA officer is also very funny.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/10/24/burn-after-reading/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Threadless&#8217;s Customer Service</title>
		<link>http://www.andrewferrier.com/blog/2008/10/21/threadlesss-customer-service/</link>
		<comments>http://www.andrewferrier.com/blog/2008/10/21/threadlesss-customer-service/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 08:00:41 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[customerservice]]></category>

		<category><![CDATA[post]]></category>

		<category><![CDATA[shipping]]></category>

		<category><![CDATA[t-shirt]]></category>

		<category><![CDATA[threadless]]></category>

		<category><![CDATA[thsirt]]></category>

		<category><![CDATA[usa]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=530</guid>
		<description><![CDATA[
Ordered a t-shirt from Threadless.
It never turned up.
They offered to refund me in full, no complaints needed.
They also gave me a $5 voucher for future orders, bringing the whole deal even further into the red for them.

This is pretty excellent customer service. I struggle to see this happening in the UK.
]]></description>
			<content:encoded><![CDATA[<ul>
<li>Ordered a t-shirt from <a href="http://www.threadless.com/">Threadless</a>.</li>
<li>It never turned up.</li>
<li>They offered to refund me in full, no complaints needed.</li>
<li>They also gave me a $5 voucher for future orders, bringing the whole deal even further into the red for them.</li>
</ul>
<p>This is pretty excellent customer service. I struggle to see this happening in the UK.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/10/21/threadlesss-customer-service/feed/</wfw:commentRss>
		</item>
		<item>
		<title>NBA @ O2</title>
		<link>http://www.andrewferrier.com/blog/2008/10/14/nba-o2/</link>
		<comments>http://www.andrewferrier.com/blog/2008/10/14/nba-o2/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 21:56:36 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[arena]]></category>

		<category><![CDATA[basketball]]></category>

		<category><![CDATA[greenwich]]></category>

		<category><![CDATA[london]]></category>

		<category><![CDATA[nba]]></category>

		<category><![CDATA[o2]]></category>

		<category><![CDATA[sport]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=522</guid>
		<description><![CDATA[I went to the see the NBA game at the O2 Arena on Sunday evening on a last minute whim - Chris had a ticket spare.
The game was certainly entertaining (everything the Telegraph says about attention deficit disorder is true), even though I know little about basketball. It gave me a chance to try out [...]]]></description>
			<content:encoded><![CDATA[<p>I went to the see <a href="http://www.telegraph.co.uk/sport/othersports/basketball/3189842/Dwayne-Wade-and-Vince-Carter-bring-Londons-NBA-crowd-to-life---eventually-Basketball.html">the NBA game at the O2 Arena on Sunday evening</a> on a last minute whim - <a href="http://www.ctomkins.co.uk/">Chris</a> had a ticket spare.</p>
<p>The game was certainly entertaining (everything the Telegraph says about attention deficit disorder is true), even though I know little about basketball. It gave me a chance to try out my (new to me) telephoto lens. I was a little disappointed with the results once I pulled them off the camera - I had trouble sucking in enough light whilst getting stable shots - but I still ended up with <a href="http://www.flickr.com/photos/andrewferrier/sets/72157608027769342/">one or two reasonable ones</a>, although mostly not of the game itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/10/14/nba-o2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reinstalling The Thinkpad</title>
		<link>http://www.andrewferrier.com/blog/2008/10/10/reinstalling-the-thinkpad/</link>
		<comments>http://www.andrewferrier.com/blog/2008/10/10/reinstalling-the-thinkpad/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 12:02:45 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[bios]]></category>

		<category><![CDATA[computing]]></category>

		<category><![CDATA[lenovo]]></category>

		<category><![CDATA[reinstall]]></category>

		<category><![CDATA[sata]]></category>

		<category><![CDATA[t61]]></category>

		<category><![CDATA[technical]]></category>

		<category><![CDATA[thinkpad]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=520</guid>
		<description><![CDATA[My work Thinkpad (a T61) was becoming a little crufty, so I decided to reinstall it from scratch. Here are a few lessons I learnt along the way:

Making a hot copy of your entire drive onto a USB hard disk with VMWare Converter beforehand is a great idea. This basically means you have your entire [...]]]></description>
			<content:encoded><![CDATA[<p>My work Thinkpad (a T61) was becoming a little crufty, so I decided to reinstall it from scratch. Here are a few lessons I learnt along the way:</p>
<ul>
<li>Making a hot copy of your entire drive onto a USB hard disk with <a href="http://www.vmware.com/products/converter/">VMWare Converter</a> beforehand is a great idea. This basically means you have your entire previous installation still bootable, so you can rescue any data or settings you forgot about, after you&#8217;ve done the reformat and reinstall. VMWare Converter is free.</li>
<li>Windows XP won&#8217;t install if the <a href="http://en.wikipedia.org/wiki/BIOS">BIOS</a> has the <a href="http://en.wikipedia.org/wiki/Sata">SATA</a> controller set to AHCI mode - it won&#8217;t find the HD to install to. Read <a href="ftp://ftp.software.ibm.com/pc/pccbbs/mobiles/7tim04ww.txt">the install instructions for the SATA driver</a> before installing Windows. Doing this without a floppy drive involves installing Service Pack 2 first (see below).</li>
<li>Windows, surprisingly, does not contain a driver that can work with the Ethernet controller. Have a copy of it ready on a USB stick.</li>
<li>The redistributable version of Service Pack 3 isn&#8217;t standalone, despite claims to the contrary; it pre-reqs. at least Service Pack 1. Windows Update won&#8217;t take you the whole way there, so it&#8217;s easiest to get the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=049C9DBE-3B8E-4F30-8245-9E368D3CDB5A&amp;displaylang=en">SP2</a> and <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5B33B5A8-5E76-401F-BE08-1E1555D4F3D4&amp;displaylang=en">SP3</a> standalones.</li>
<li>The USB ports will not operate at high speed until you install the <a href="http://www-307.ibm.com/pc/support/site.wss/MIGR-67818.html">Intel Chipset Device Software</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/10/10/reinstalling-the-thinkpad/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Daily Show Back</title>
		<link>http://www.andrewferrier.com/blog/2008/10/09/daily-show-back/</link>
		<comments>http://www.andrewferrier.com/blog/2008/10/09/daily-show-back/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 18:52:10 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[channel4]]></category>

		<category><![CDATA[comedy]]></category>

		<category><![CDATA[comedycentral]]></category>

		<category><![CDATA[dailyshow]]></category>

		<category><![CDATA[entertainment]]></category>

		<category><![CDATA[haveigotnewsforyou]]></category>

		<category><![CDATA[jonstewart]]></category>

		<category><![CDATA[online]]></category>

		<category><![CDATA[streaming]]></category>

		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=516</guid>
		<description><![CDATA[Super. After the mean folks at Comedy Central stopped allowing streaming of The Daily Show outside the US, it&#8217;s now available again, courtesy of Channel 4 Catch Up.
If you&#8217;ve never watched it, it&#8217;s definitely worth a peek. Jon Stewart is pretty funny, and although it has an obvious leftist bias, it has an even greater [...]]]></description>
			<content:encoded><![CDATA[<p>Super. After the mean folks at Comedy Central stopped allowing streaming of <a href="http://www.thedailyshow.com/">The Daily Show</a> outside the US, it&#8217;s now available again, courtesy of <a href="http://www.channel4.com/watch_online/">Channel 4 Catch Up</a>.</p>
<p>If you&#8217;ve never watched it, it&#8217;s definitely worth a peek. Jon Stewart is pretty funny, and although it has an obvious leftist bias, it has an even greater bias for ridiculing deserving politicans. Kinda the American <a href="http://www.bbc.co.uk/comedy/haveigotnewsforyou/">Have I Got News For You</a>, without the panel-game element.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/10/09/daily-show-back/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Icesave</title>
		<link>http://www.andrewferrier.com/blog/2008/10/07/icesave/</link>
		<comments>http://www.andrewferrier.com/blog/2008/10/07/icesave/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 18:50:04 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[creditcrunch]]></category>

		<category><![CDATA[finance]]></category>

		<category><![CDATA[icesave]]></category>

		<category><![CDATA[isa]]></category>

		<category><![CDATA[personalfinance]]></category>

		<category><![CDATA[savings]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=514</guid>
		<description><![CDATA[I was just about to diversify my savings into a newly-opened Icesave ISA this evening. Boy, am I glad it took me a while to get round to it.
Now to try and guess analyse the best place for my money.
]]></description>
			<content:encoded><![CDATA[<p>I was just about to diversify my savings into a newly-opened <a href="http://www.icesave.co.uk/">Icesave</a> ISA this evening. <a href="http://www.guardian.co.uk/money/2008/oct/07/banks.savings">Boy, am I glad it took me a while to get round to it</a>.</p>
<p>Now to try and <del>guess</del> analyse the best place for my money.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/10/07/icesave/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Byron</title>
		<link>http://www.andrewferrier.com/blog/2008/10/02/byron/</link>
		<comments>http://www.andrewferrier.com/blog/2008/10/02/byron/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 19:17:37 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[food]]></category>

		<category><![CDATA[hamburger]]></category>

		<category><![CDATA[hollandpark]]></category>

		<category><![CDATA[kensington]]></category>

		<category><![CDATA[london]]></category>

		<category><![CDATA[restaurant]]></category>

		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=501</guid>
		<description><![CDATA[Decent Hamburger restaurant in Kensington. Well worth a try. Another similar option is Tootsie&#8217;s, nearby.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://byronhamburgers.com/">Decent Hamburger restaurant in Kensington</a>. Well worth a try. Another similar option is <a href="http://www.tootsiesrestaurants.com/tootsiesrestaurant/holland_park_london.html">Tootsie&#8217;s</a>, nearby.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/10/02/byron/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Did you mean &#8216;to type correctly&#8217;?</title>
		<link>http://www.andrewferrier.com/blog/2008/10/01/did-you-mean-to-type-correctly/</link>
		<comments>http://www.andrewferrier.com/blog/2008/10/01/did-you-mean-to-type-correctly/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 16:56:19 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[amazon]]></category>

		<category><![CDATA[correction]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[spelling]]></category>

		<category><![CDATA[technology]]></category>

		<category><![CDATA[typing]]></category>

		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=499</guid>
		<description><![CDATA[I suddenly realised that I expect Amazon (and indeed many other websites) to correct my misspellings in the same way as Google:
Did you mean: lost in translation ?
But it doesn&#8217;t.
They should fix this.
]]></description>
			<content:encoded><![CDATA[<p>I suddenly realised that I expect <a href="http://www.amazon.co.uk/">Amazon</a> (and indeed many other websites) to correct my misspellings in the same way as <a href="http://www.google.co.uk/">Google</a>:</p>
<p><span class="p" style="color: #cc0000;">Did you mean: </span><a class="p" href="http://www.google.co.uk/search?hl=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=lost+in+translation&amp;spell=1">lost in <strong><em>translation</em></strong></a> ?</p>
<p>But it doesn&#8217;t.</p>
<p>They should fix this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/10/01/did-you-mean-to-type-correctly/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Geconomics</title>
		<link>http://www.andrewferrier.com/blog/2008/09/11/geconomics/</link>
		<comments>http://www.andrewferrier.com/blog/2008/09/11/geconomics/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 15:41:15 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[davidfriedman]]></category>

		<category><![CDATA[economics]]></category>

		<category><![CDATA[economist]]></category>

		<category><![CDATA[friedman]]></category>

		<category><![CDATA[geek]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[miltonfriedman]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=487</guid>
		<description><![CDATA[The son of one of the world&#8217;s most influential and talented economists is obviously a total geek. How wonderful.
Oh, and get this blog comment and response.
Update 16:58: Then, of course, you read this.
Why don&#8217;t economists get any respect?
]]></description>
			<content:encoded><![CDATA[<p><a href="http://daviddfriedman.blogspot.com/">The son</a> of <a href="http://en.wikipedia.org/wiki/Milton_Friedman">one of the world&#8217;s most influential and talented economists</a> <a href="http://daviddfriedman.blogspot.com/2008/09/alia-iacta-est.html">is obviously a total geek</a>. How wonderful.</p>
<p>Oh, and get <a href="http://daviddfriedman.blogspot.com/2008/09/alia-iacta-est.html#c5624397038566138275">this blog comment and response</a>.</p>
<p><strong>Update 16:58</strong>: Then, of course, you read <a href="http://www.economist.com/blogs/freeexchange/2008/09/dismal_scientists.cfm">this</a>.</p>
<p>Why don&#8217;t economists get any respect?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/09/11/geconomics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>TripIt is &#8230; er &#8230; Really Good</title>
		<link>http://www.andrewferrier.com/blog/2008/08/30/tripit-is-er-really-good/</link>
		<comments>http://www.andrewferrier.com/blog/2008/08/30/tripit-is-er-really-good/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 07:13:29 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[customerservice]]></category>

		<category><![CDATA[dopplr]]></category>

		<category><![CDATA[t-shirt]]></category>

		<category><![CDATA[travel]]></category>

		<category><![CDATA[travelling]]></category>

		<category><![CDATA[tripit]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=477</guid>
		<description><![CDATA[I grumbled to the nice folks at TripIt because I wasn&#8217;t eligible for their referral competition, so they sent me a T-shirt instead. So I think it&#8217;s only fair that I put in a good word for them:

Try it. If you travel a lot it&#8217;s invaluable.
It&#8217;s free.
It&#8217;s better than Dopplr.
Er&#8230; that&#8217;s it.

]]></description>
			<content:encoded><![CDATA[<p>I grumbled to the nice folks at <a href="http://www.tripit.com/">TripIt</a> because I wasn&#8217;t eligible for <a href="http://www.tripit.com/promo/referSummary">their referral competition</a>, so they sent me a T-shirt instead. So I think it&#8217;s only fair that I put in a good word for them:</p>
<ol>
<li>Try it. If you travel a lot it&#8217;s invaluable.</li>
<li>It&#8217;s free.</li>
<li>It&#8217;s <a href="http://www.andrewferrier.com/blog/2008/07/08/dopplr-half-inches-from-tripit/">better</a> than Dopplr.</li>
<li>Er&#8230; that&#8217;s it.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/08/30/tripit-is-er-really-good/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BAA Break-up</title>
		<link>http://www.andrewferrier.com/blog/2008/08/26/baa-break-up/</link>
		<comments>http://www.andrewferrier.com/blog/2008/08/26/baa-break-up/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 20:34:33 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[airline]]></category>

		<category><![CDATA[airport]]></category>

		<category><![CDATA[baa]]></category>

		<category><![CDATA[competition]]></category>

		<category><![CDATA[economics]]></category>

		<category><![CDATA[gatwick]]></category>

		<category><![CDATA[heathrow]]></category>

		<category><![CDATA[libertarianism]]></category>

		<category><![CDATA[london]]></category>

		<category><![CDATA[monopoly]]></category>

		<category><![CDATA[transport]]></category>

		<category><![CDATA[travel]]></category>

		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=474</guid>
		<description><![CDATA[I&#8217;m kinda undecided on the BAA break-up. The FT thinks it should definitely go ahead. But as a fairly strict libertarian, and therefore keen on economic freedom, I&#8217;ve always had a problem with monopoly break-up except in the most extreme of cases (and I&#8217;m not sure this qualifies).
Nevertheless, as my job now takes me onto [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m kinda undecided on the <a href="http://www.baa.com/">BAA</a> break-up. <a href="http://www.ft.com/cms/s/0/72d400ce-7306-11dd-983b-0000779fd18c.html">The FT thinks</a> it should definitely go ahead. But as a fairly strict libertarian, and therefore keen on economic freedom, I&#8217;ve always had a problem with <a href="http://en.wikipedia.org/wiki/Monopoly">monopoly</a> break-up except in the most extreme of cases (and I&#8217;m not sure this qualifies).</p>
<p>Nevertheless, as my job now takes me onto an aeroplane more than I before, I&#8217;m curious and so I read the summary from the Competition Commission&#8217;s <a href="http://www.competition-commission.org.uk/inquiries/ref2007/airports/provisional_findings.htm">provisional report</a>. I&#8217;m not sure I&#8217;m any the wiser, but there were some interesting facts and statistics embedded within:</p>
<ul>
<li>Gatwick&#8217;s proportion of business travellers is a mere 18%, far lower than I would imagine (I know it&#8217;s not strong on the transfer front, but normally appears to have many terminating flights to useful places, from what I&#8217;ve seen). By comparison, Heathrow&#8217;s is 40%.</li>
<li>From the set of BAA-owned airports, only Heathrow and Aberdeen have above 20% of transferring passengers, with 34% and 21% respectively. Heathrow&#8217;s reputation as a hub is clearly deserved.</li>
<li>BAA&#8217;s airports account for 60% of UK air passengers, but 90% in south-east England, and 84% in Scotland. Maybe there could be a <a href="http://en.wikipedia.org/wiki/Local_monopoly">local monopoly</a> at work here, at least?</li>
</ul>
<p>It&#8217;s interesting that the Competition Commission makes lots of slights about poor service, lack of responsiveness to the market, high prices, and so on. This seems a bit unfair. I&#8217;ve often wondered how one can gauge the degree of monopoly exploitation fairly, partly there&#8217;s rarely an accurate enough free-market alternative implementation to compare it to. The theory does dictate that a monopoly might happen, given some of the stats above, but saying that there is one is a much bigger stretch. This does make me think that perhaps a bit more <em>laissez-faire</em> might go a long way in keeping things market fair - although, as I think they hint at, a bit less regulation would help even things out too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/08/26/baa-break-up/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Not-so-Jubbly Line</title>
		<link>http://www.andrewferrier.com/blog/2008/08/26/not-so-jubbly-line/</link>
		<comments>http://www.andrewferrier.com/blog/2008/08/26/not-so-jubbly-line/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 14:53:42 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[closure]]></category>

		<category><![CDATA[customerservice]]></category>

		<category><![CDATA[jubliee]]></category>

		<category><![CDATA[london]]></category>

		<category><![CDATA[tfl]]></category>

		<category><![CDATA[travel]]></category>

		<category><![CDATA[tube]]></category>

		<category><![CDATA[waterloo]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=472</guid>
		<description><![CDATA[I&#8217;m beginning to enjoy transport in London almost as much as Richard. Got to Waterloo this morning to find that once again, the Jubilee line entrance was closed - this happened last Monday too. Not being a fan of taking replacement buses and braving the crowds with two large bags half-way across London, I copped [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m beginning to enjoy transport in London <a href="http://gendal.blogspot.com/2008/08/i-think-they-trying-to-tell-me.html">almost</a> <a href="http://gendal.blogspot.com/2008/04/getting-from-dlr-to-district-line-at.html">as</a> <a href="http://gendal.blogspot.com/2008/05/narrow-platforms.html">much</a> as <a href="http://gendal.blogspot.com/">Richard</a>. Got to Waterloo this morning to find that once again, the Jubilee line entrance was closed - this happened last Monday too. Not being a fan of taking replacement buses and braving the crowds with two large bags half-way across London, I copped out and got a taxi.</p>
<p>But what&#8217;s going on here? And why are TfL incapable of communicating with me when it does?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/08/26/not-so-jubbly-line/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fullscreen Video Flicker on T61 Thinkpad</title>
		<link>http://www.andrewferrier.com/blog/2008/08/24/fullscreen-video-flicker-on-t61-thinkpad/</link>
		<comments>http://www.andrewferrier.com/blog/2008/08/24/fullscreen-video-flicker-on-t61-thinkpad/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 10:27:26 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[140m]]></category>

		<category><![CDATA[flicker]]></category>

		<category><![CDATA[nvidia]]></category>

		<category><![CDATA[quadro]]></category>

		<category><![CDATA[t61]]></category>

		<category><![CDATA[thinkpad]]></category>

		<category><![CDATA[troubleshooting]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=462</guid>
		<description><![CDATA[Until recently, I was having problems with fullscreen video in Windows on my new T61 Thinkpad, which uses an NVidia Quadro NVS 140M display adapter. Video would regularly flicker when fullscreen was enabled in a variety of players, including Windows Media Player and various embedded Flash players, and had to be taken out of fullscreen [...]]]></description>
			<content:encoded><![CDATA[<p>Until recently, I was having problems with fullscreen video in Windows on my new T61 Thinkpad, which uses an <a href="http://www.nvidia.com/object/quadro_nvs_notebook.html">NVidia Quadro NVS 140M</a> display adapter. Video would regularly flicker when fullscreen was enabled in a variety of players, including Windows Media Player and various embedded Flash players, and had to be taken out of fullscreen and put back - sometimes as many as 10 times - before the image was stable.</p>
<p>After doing a bit of hunting around yesterday, and noticing that <a href="http://forums.lenovo.com/lnv/board/message?board.id=T_Series_Thinkpads&amp;thread.id=12069">at least one other person had the same problem</a>, I came to the conclusion that it was power-saving based - my suspicion is that the refresh rate is reduced under some power-saving circumstances.</p>
<p>The following set of steps seems to remove the problem (or, to be more exact, I haven&#8217;t seen the problem return since following them):</p>
<ul>
<li>Open the NVIDIA control panel (from the Start Menu or the system tray).</li>
<li>Navigate to <strong>Mobile / Change PowerMizer settings</strong>.</li>
<li>Select <strong>Not manage my power consumption (Disable PowerMizer)</strong>.</li>
</ul>
<p>Hope this helps someone else.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/08/24/fullscreen-video-flicker-on-t61-thinkpad/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Delicious - For Mobile Once Again</title>
		<link>http://www.andrewferrier.com/blog/2008/08/07/new-delicious-for-mobile-once-again/</link>
		<comments>http://www.andrewferrier.com/blog/2008/08/07/new-delicious-for-mobile-once-again/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 11:03:50 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[bookmarks]]></category>

		<category><![CDATA[delicious]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[technical]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=458</guid>
		<description><![CDATA[Used to be, I employed a cunning trick I found on the web to create a quick &#8216;n&#8217; dirty homepage for my browser on my mobile - all the delicious bookmarks I&#8217;d tagged with mtag.
Then delicious went and released a new version and this trick broke.
After a bit of fiddling, I&#8217;ve found a reasonable alternative. [...]]]></description>
			<content:encoded><![CDATA[<p>Used to be, I employed <a href="http://www.webpronews.com/blogtalk/2006/04/22/delicious-mobile">a cunning trick I found on the web</a> to create a quick &#8216;n&#8217; dirty homepage for my browser on <a href="http://europe.nokia.com/e65">my mobile</a> - all the <a href="http://delicious.com/">delicious</a> bookmarks I&#8217;d tagged with <a href="http://delicious.com/andrewferrier/mtag">mtag</a>.</p>
<p>Then delicious went and <a href="http://blog.delicious.com/blog/2008/07/oh-happy-day.html">released a new version</a> and this trick broke.</p>
<p>After a bit of fiddling, I&#8217;ve found a reasonable alternative. <a href="http://feed.informer.com/">feed.informer</a> will take any RSS feed and turn it into fairly plain HTML. So take your RSS feed, which might look something like this:</p>
<p><a href="http://feeds.delicious.com/v2/rss/andrewferrier/mtag?count=100">http://feeds.delicious.com/v2/rss/andrewferrier/mtag?count=100</a></p>
<p>(the <em>count </em>increases the maximum number of items in the feed to 100)</p>
<p>Now plug it into feed.informer, and edit the options to make the result look how you want (hint: I modify the template, and set the Per-Item Template to <strong>&lt;a href=&#8221;%URL%&#8221;&gt;%TITLE%&lt;/a&gt;&lt;br /&gt;</strong>, leaving the rest of the template blank - this prints one bookmark per line). You&#8217;ll also need to sign up and create a feed.informer account whilst you&#8217;re doing this (assuming you don&#8217;t already have one).</p>
<p>Once done, just view the &#8216;HTML&#8217; version of the digest you created, and set that as your mobile homepage. Bingo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/08/07/new-delicious-for-mobile-once-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Energy Efficient Lightbulbs</title>
		<link>http://www.andrewferrier.com/blog/2008/08/02/energy-efficient-lightbulbs/</link>
		<comments>http://www.andrewferrier.com/blog/2008/08/02/energy-efficient-lightbulbs/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 12:36:53 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[carbon]]></category>

		<category><![CDATA[economics]]></category>

		<category><![CDATA[environment]]></category>

		<category><![CDATA[green]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=456</guid>
		<description><![CDATA[Anyone want any free energy efficient lightbulbs? I keep getting spammed with them by British Gas, Southern Electric, et. al., in a desperate attempt to prove their green credentials. Of course, it doesn&#8217;t work - I already have all I need and they are now piling up in the cupboard (here&#8217;s a hint: maybe that [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone want any free energy efficient lightbulbs? I keep getting spammed with them by British Gas, Southern Electric, et. al., in a desperate attempt to prove their green credentials. Of course, it doesn&#8217;t work - I already have all I need and they are now piling up in the cupboard (here&#8217;s a hint: maybe that ain&#8217;t so green).</p>
<p><a href="http://en.wikipedia.org/wiki/Unintended_consequence">The law of unintended consequences is a bitch</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/08/02/energy-efficient-lightbulbs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>24h Doughnuts</title>
		<link>http://www.andrewferrier.com/blog/2008/07/31/24h-doughnuts/</link>
		<comments>http://www.andrewferrier.com/blog/2008/07/31/24h-doughnuts/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 19:15:14 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[addiction]]></category>

		<category><![CDATA[doughnuts]]></category>

		<category><![CDATA[food]]></category>

		<category><![CDATA[krispykreme]]></category>

		<category><![CDATA[london]]></category>

		<category><![CDATA[tesco]]></category>

		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=454</guid>
		<description><![CDATA[I generally consider myself to be a pretty liberal guy (in the old-fashioned sense). However, 24-hour doughnuts are testing my patience. Lots of London Tesco Express stores now seem to stock delicious Krispy Kremes, and to compound the evil, they do it at all times of day and night, just outside the hotels I tend [...]]]></description>
			<content:encoded><![CDATA[<p>I generally consider myself to be a pretty liberal guy (<a href="http://en.wikipedia.org/wiki/Libertarianism">in the old-fashioned sense</a>). However, 24-hour doughnuts are testing my patience. Lots of London <a href="http://www.tesco.com/">Tesco</a> Express stores now seem to stock delicious <a href="http://www.krispykreme.co.uk/">Krispy Kremes</a>, and to compound the evil, they do it at all times of day and night, just outside the hotels I tend to stay in. I think they are following me.</p>
<p>They should clearly be banned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/07/31/24h-doughnuts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Black &#038; Blue</title>
		<link>http://www.andrewferrier.com/blog/2008/07/30/black-blue/</link>
		<comments>http://www.andrewferrier.com/blog/2008/07/30/black-blue/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 19:15:11 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[food]]></category>

		<category><![CDATA[london]]></category>

		<category><![CDATA[restaurant]]></category>

		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/?p=452</guid>
		<description><![CDATA[Being as I travel so much these days, I tend to eat out far more often than is good for me (quite literally). London, where I&#8217;m currently holed up for a few months, is generally an excellent location for a good selection of good places to eat, although it&#8217;s still challenging to find a good [...]]]></description>
			<content:encoded><![CDATA[<p>Being as I travel so much these days, I tend to eat out far more often than is good for me (quite literally). London, where I&#8217;m currently holed up for a few months, is generally an excellent location for a good selection of good places to eat, although it&#8217;s still challenging to find a good (and quick) meal every night. However, my hotel for this week and last (the above average <a href="http://www.hilton.co.uk/kensington">Hilton Kensington</a>) doesn&#8217;t exactly seem to be replete with places to dine.</p>
<p>So I was pleasantly surprised when I ventured a bit further up to Notting Hill this evening and found the <a href="http://www.blackandbluerestaurants.com/restaurants/notting_hill_gate.html">Black and Blue</a>. A basic but incredibly juicy steak definitely made my evening. Much better than yet another so-so Indian meal (the <a href="http://www.thebombaybicycleclub.co.uk/">Bombay Bicycle Club</a> is definitely over-rated). It&#8217;s re-affirmed my faith in moderately-budgeted expense accounts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/07/30/black-blue/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
