<?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:georss="http://www.georss.org/georss" >

<channel>
	<title>Even the wrong words seem to rhyme</title>
	<atom:link href="http://www.kevinblake.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinblake.co.uk</link>
	<description>a blog-life by Kevin Blake</description>
	<pubDate>Sun, 16 Nov 2008 21:42:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Automatically Geotagging your Gallery</title>
		<link>http://www.kevinblake.co.uk/automatically-geotagging-your-gallery/344/</link>
		<comments>http://www.kevinblake.co.uk/automatically-geotagging-your-gallery/344/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 21:42:12 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=344</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_348" class="wp-caption alignright" style="width: 160px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/11/blakepics-tags.jpg" rel="lightbox"><img class="size-thumbnail wp-image-348" title="blakepics-tags" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/11/blakepics-tags-150x150.jpg" alt="Tags from Blakepics" width="150" height="150" /></a><p class="wp-caption-text">Automatically add geonames.org tags to Gallery</p></div>
<p>As always, an imminent holiday has inspired me to update the entire system behind geotagging my photos.  Likewise, needing to plan said holiday has given me the opportunity to procrastinate and do something else instead.</p>
<p><strong>Wishlist</strong></p>
<ul>
<li>A repository I can drop files created by the Genie BGT-31 GPS tracker.</li>
<li>Automatically convert the tracks into GPX format.</li>
<li>Automatically stamp any photos within <a href="http://www.blakepics.com" target="_blank">Blakepics</a> with their longitude / latitude values into the EXIF information.</li>
<li>Use that EXIF information to populate the database for the <a href="http://gallery.menalto.com/" target="_blank">Gallery2</a> maps module.</li>
<li>Use <a href="http://www.geonames.org/" target="_blank">geonames</a> to get some basic tags, and automatically add those to the tags database.</li>
</ul>
<p>I can happily report all of the above is happily running on a schedule on the Blakepics server.   Whilst I realise a lot of these options aren&#8217;t particularly available on a shared hosting server, I&#8217;m going to talk about them anyway.</p>
<p><strong>A small disclaimer</strong></p>
<p>Be under no illusion, a lot of these scripts are hacked together with no thought given to scalability, stability, or re-use.  They&#8217;d be a lot better off as a proper Gallery2 module to be honest - and hopefully someone will beat me to it in making that a reality.  However, for the time being - this is all provided as-is <img src='http://www.kevinblake.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>NMEA repository</strong></p>
<p>The repository is quite simple with an SFTP server running (sshd for example), and <a href="http://filezilla-project.org/" target="_blank">FileZilla</a> on the client</p>
<p><strong>Convert the tracks to GPX</strong></p>
<ol>
<li>Install the rather excellent gpsbabel.<br />
<code>yum install gpsbabel</code></li>
<li>Run this <a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/11/convert-to-gpx.txt">convert-to-gpx.pl.txt</a> perl script to combine all your nmea tracks to create a single gpx file.</li>
</ol>
<p><strong>Stamp the photos</strong></p>
<ol>
<li>Get the <a href="http://www.carto.net/projects/photoTools/gpsPhoto/" target="_blank">gpsPhoto perl script</a>.  You might find you need to install some perl modules:<br />
<code>perl -eshell -MCPAN<br />
install <em>modulename</em></code></li>
<li>Use this <a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/11/geocode-photospl.txt">geocode-photos.pl.txt</a> script to find any matching photos from your Gallery, and tag them.  Note that I limit them to only photos I&#8217;ve uploaded myself, as I don&#8217;t want to go messing around with other peoples (and they were probably not at the same location anyway)</li>
</ol>
<p><strong>Fill the Gallery2 maps module with the EXIF data</strong></p>
<p>There&#8217;s a maintenance task to use the EXIF data to power the maps module of Gallery2, so using <a href="http://www.roelbroersma.nl/index.php/2008/07/29/gallery2-cron-job-to-automate-build-all-thumbnailresizes" target="_blank">Roel Broersma&#8217;s excellent script to run the maintenance tasks</a>, these can be scheduled with the extra line:</p>
<p><code>wget --quiet --output-document=/dev/null --cookies=on --load-cookies $TMP_PATH/myg2cookies "$G2_URL/main.php?g2_controller=core.AdminMaintenance&amp;g2_form%5Baction%5D%5BrunTask%5D=1&amp;g2_taskId=PopulateGPSEXIFInfos&amp;g2_authToken=$AUTHTOKEN"</code></p>
<p><strong>Give some meaning to your location data with geonames</strong></p>
<p>Geonames provides a reverse-lookup to get some more human readable descriptions of your photos.  So I use this to put in the country, region and town data into my Gallery.  You can go a bit further and get details of nearby landmarks from Wikipedia to add if you like, but i don&#8217;t find it too useful for my purposes.</p>
<ol>
<li>You&#8217;ll need some more perl modules<br />
<code>perl -eshell -MCPAN<br />
install Image::ExifTool;<br />
install Image::ExifTool::Location;<br />
install Geo::GeoNames;<br />
install Data::Dumper;</code></li>
<li>Get my <a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/11/write-geoname-tagspl.txt">write-geoname-tags.pl.txt</a> perl script, which is actually a combination of all the previous scripts.  This will query the web service, and update your tags.</li>
</ol>
<p><strong>It all sounds very complicated&#8230;</strong></p>
<p>Well, yes.  My aim isn&#8217;t to create the easiest system to set-up, it&#8217;s to create the easiest system to use.  Uploading a single NMEA track list now causes all of the above to happen automatically.  That said, I recognise that it&#8217;s not for the faint-hearted.</p>
<p>So why not try one of these easier solutions:</p>
<ul>
<li><a href="http://www.gpsbabel.org/os/Windows_FE.html" target="_blank">GPS Babel GUI</a> (Windows / Linux command-line tools available)</li>
<li><a href="http://code.google.com/p/gpicsync/" target="_blank">GPicSync</a> (Linux / Windows)</li>
<li><a href="http://freefoote.dview.net/linux_gpscorr.html" target="_blank">GPS Correlate</a> (Linux only)</li>
<li><a href="http://www.flickr.com" target="_blank">Flickr</a> (all)</li>
</ul>
<p><strong>What next?</strong></p>
<p>Add all of these scripts mentioned above to a cron task, and forget all about it.  You can probably combine the whole lot into a single job (I wanted to keep them separate, so some could be run nightly, and others weekly or monthly).</p>
<p>Hopefully this is the humble beginnings of a more efficient and elegant solution.  For now I&#8217;m at least getting a lot more data into and out of my photos</p>
<p>Do let me know if you make any improvements, or have any ideas for viable new features - I&#8217;d be interested to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/automatically-geotagging-your-gallery/344/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Geotagging with the Genie BGT-31</title>
		<link>http://www.kevinblake.co.uk/geotagging-with-the-genie-bgt-31/336/</link>
		<comments>http://www.kevinblake.co.uk/geotagging-with-the-genie-bgt-31/336/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 23:00:21 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[bgt-31]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=336</guid>
		<description><![CDATA[Don&#8217;t get me wrong, buying the Trackstick was a really good idea, it&#8217;s fuelled my interest in the location-aware Internet, it&#8217;s given me excuses to connect with other developers on Gallery2, had me writing geo-based modules, updates and hacks, and eased geotagging a whole bunch of photos.
But in the past two years, it&#8217;s also caused [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t get me wrong, buying the <a href="http://www.trackstick.com/" target="_blank">Trackstick</a> was a really good idea, it&#8217;s fuelled my interest in the <a href="http://www.kevinblake.co.uk/blogging-on-location/32/">location-aware Internet</a>, it&#8217;s given me excuses to connect with other developers on Gallery2, had me writing geo-based modules, updates and hacks, and eased geotagging a whole bunch of photos.</p>
<p>But in the past two years, it&#8217;s also caused me to create and use some <a href="http://www.kevinblake.co.uk/geo-tagging-the-universe-one-step-at-a-time/81/">really really complicated geotagging techniques</a>,  frustration over <a href="http://www.kevinblake.co.uk/travelling-with-technology/113">forgetting what the flashing lights mean</a> in Krakow, and aided and abetted in <a href="http://www.kevinblake.co.uk/split-internet-or-lack-of/89/">destroying one man&#8217;s Internet business</a> in Split, even if just for a day.</p>
<p>Even the new Trackstick II&#8217;s still only boast a 1MB block of memory for storing tracks on, and I still need their proprietary drivers that caused me to destroy the book store/Internet Cafe in Split.  So for my next trip to Vietnam, I&#8217;ve bought the <a href="http://www.storagedepot.co.uk/Handheld-GPS/sc893/p75.aspx" target="_blank">Genie BGT-31</a>.  Granted, it&#8217;s almost twice the size of the Trackstick but contains a USB-chargeable battery which means no more carrying around stacks of AAA batteries and separate charger.</p>
<p>The built-in memory will store up to 20,000 records - but more importantly, supports SD cards, increases the measly 1MB into 1GB (thanks to the numerous cards lying around my flat and down the side of sofas).  These can taken out very quickly and dropped into the EEE where <a href="http://www.gpsbabel.org/" target="_blank">gpsbabel</a> will convert the flat NMEA text format to whatever you might need &#8230; GPX, for example.</p>
<p>It also has a screen, so I no longer need to repeat the mantra constantly to myself in my head (or aloud) - &#8220;green for good, red for bad&#8221;.  Not to mention keep my blog posts updated with some more positioning (well, possibly).</p>
<p>So far the first impressions are good - and it will certainly tide me over until we can just tag the photos using our government-issue ID card&#8217;s weekly e-statements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/geotagging-with-the-genie-bgt-31/336/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu Eee (701) Suspend / Resume problems</title>
		<link>http://www.kevinblake.co.uk/ubuntu-eee-701-suspend-resume-problems/324/</link>
		<comments>http://www.kevinblake.co.uk/ubuntu-eee-701-suspend-resume-problems/324/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 21:32:35 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

		<category><![CDATA[ubuntu eee]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=324</guid>
		<description><![CDATA[
Since installing Ubuntu on the Eee, I had no doubt it was going to replace the Xandros install full-time.  It has a lot more features for my inner geek and better support for the applications that only I can find essential.
It also takes a hell of a lot longer to boot up.
But that&#8217;s okay, these [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_325" class="wp-caption alignright" style="width: 190px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/11/eeeubuntu1.jpg" rel="lightbox"><img class="size-medium wp-image-325" title="Eee Ubuntu" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/11/eeeubuntu1-300x240.jpg" alt="" width="180" height="144" /></a><p class="wp-caption-text">Eee Ubuntu</p></div>
<p>Since installing <a href="http://www.ubuntu-eee.com/" target="_blank">Ubuntu</a> on the Eee, I had no doubt it was going to replace the Xandros install full-time.  It has a lot more features for my inner geek and better support for the applications that only I can find essential.</p>
<p>It also takes a hell of a lot longer to boot up.</p>
<p>But that&#8217;s okay, these new Atom processors don&#8217;t take up a lot of battery life when they&#8217;re in standby&#8230; If I were a real reporter, I&#8217;d test that theory.  But since I&#8217;m blogging, so I&#8217;ll throw out any kinds of lies that I like - so long as I&#8217;m upfront and honest about it.</p>
<p>So far so good, except Resume doesn&#8217;t work on Ubuntu Eee, either.</p>
<p>Great.</p>
<p>So I followed the <a href="http://wiki.eeeuser.com/ubuntu#suspend_resume" target="_blank">steps on the usual eee user wiki about suspend/resume</a>.  And that didn&#8217;t work either.</p>
<p>What I did find, is that you can actually resume from the never-ending sleep of the Ubuntu if you run the command:</p>
<p><code>sudo /etc/acpi/sleep.sh force</code></p>
<p>Furthermore, you can replace the pm-suspend command with the same - and your shiny new Ubuntu Eee will wake up when you ask it.  Rather than whining about it being too early and throwing the covers over its head.<br />
<code>#Make a backup, just in case.<br />
sudo cp /usr/sbin/pm-suspend /usr/sbin/pm-suspend.bak<br />
sudo echo "/etc/acpi/sleep.sh force" &gt;/usr/sbin/pm-suspend<br />
</code></p>
<p>And that will let you continue to use the lid or the shut-down screen for all your eee suspension needs.  Hopefully I can do something about that initial boot-time, next.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/ubuntu-eee-701-suspend-resume-problems/324/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Convergence - Ten Top Twitter Tools</title>
		<link>http://www.kevinblake.co.uk/twitter-convergence-ten-top-twitter-tools/257/</link>
		<comments>http://www.kevinblake.co.uk/twitter-convergence-ten-top-twitter-tools/257/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 11:07:56 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=257</guid>
		<description><![CDATA[
Two months ago, I had no use for Twitter.  Now it seems it&#8217;s everywhere, on everything and no device can survive without that talkative little bird.  So I thought I&#8217;d gather together all the different applications I&#8217;ve managed to dig out and install so far.

TwitterFeed - Update Twitter automatically from this blog - both the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_258" class="wp-caption alignright" style="width: 160px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/fridge-twitter.jpg" rel="lightbox"><img class="size-thumbnail wp-image-258" title="Twitter from your Fridge" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/fridge-twitter-150x150.jpg" alt="i twitter from my fridge" width="150" height="150" /></a><p class="wp-caption-text">&#39;i twitter from my fridge&#39; ... Still waiting...</p></div>
<p><a href="http://www.kevinblake.co.uk/twitter-conversation-in-the-machine/184/">Two months ago</a>, I had no use for Twitter.  Now it seems it&#8217;s everywhere, on everything and no device can survive without that talkative little bird.  So I thought I&#8217;d gather together all the different applications I&#8217;ve managed to dig out and install so far.</p>
<ol>
<li><a href="http://www.twitterfeed.com/" target="_blank">TwitterFeed</a> - Update Twitter automatically from this blog - both the posts and currently reading RSS feeds.</li>
<li><a href="http://www.msgpluslive.net/scripts/view/315-Twit4Live/">Twit4Live</a> (<a href="http://www.msgplus.net/" target="_blank">MSN Live Messenger Plus!</a>) - Update your status from within any messenger chat window with /twitter &lt;tweet&gt;.</li>
<li><a href="http://www.msgplus.net/scripts/view/282-rss2psm-Nutz/" target="_blank">rss2psm Nutz</a> (<a href="http://www.msgplus.net/" target="_blank">MSN Live Messenger Plus!</a>) - A slightly modified version of this script updates my MSN Personal Message whenever I post to Twitter.</li>
<li><a href="http://www.kevdaly.co.nz/Software/Twitter/Twitula.aspx" target="_blank">Twitula</a> (Windows Mobile enabled iPAQ 4150)</li>
<li><a href="http://www.shozu.com/" target="_blank">Shozu</a> (Symbian Nokia N95)</li>
<li><a href="http://sourceforge.net/projects/twitux" target="_blank">Twitux</a> (GNOME Linux / Ebuntu Eee PC 701)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5081" target="_blank">TwitterFox</a> (Firefox) - Update and view status from within the browser.</li>
<li><a href="http://rss2imap.sourceforge.net/" target="_blank">RSS2IMAP</a> - My RSS feed reader of choice, read the Twitter RSS and convert into emails, for viewing in Thunderbird.</li>
<li><a href="http://apps.new.facebook.com/twitter/" target="_blank">Facebook Twitter</a> - Updates my Facebook status whenever I post to twitter (from anywhere).</li>
<li><a href="http://32hours.com/" target="_blank">BeTwittered</a> (iGoogle)</li>
</ol>
<p>And because of all of this, I never need to visit twitter.com any more.  That&#8217;s progress <img src='http://www.kevinblake.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/twitter-convergence-ten-top-twitter-tools/257/feed/</wfw:commentRss>
	<georss:point>51.654856 -0.398203</georss:point>	</item>
		<item>
		<title>Using SVN to manage your Wordpress install</title>
		<link>http://www.kevinblake.co.uk/using-svn-to-manage-your-wordpress-install/251/</link>
		<comments>http://www.kevinblake.co.uk/using-svn-to-manage-your-wordpress-install/251/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 23:16:50 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=251</guid>
		<description><![CDATA[I use SVN to manage both this blog and the Blakepics Gallery2 installation.  Using the version control software as a means of keeping my own sites&#8217; shared components up to date is horribly convenient once you get through the initial attempts of &#8220;shit, I&#8217;ve broken it again&#8221;.
Wordpress have full instructions for setting up your blog [...]]]></description>
			<content:encoded><![CDATA[<p>I use SVN to manage both this blog and the Blakepics Gallery2 installation.  Using the version control software as a means of keeping my own sites&#8217; shared components up to date is horribly convenient once you get through the initial attempts of &#8220;shit, I&#8217;ve broken it again&#8221;.</p>
<p>Wordpress have <a href="http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion" target="_blank">full instructions for setting up your blog with SVN</a>.  I&#8217;d recommend sticking to the &#8216;Tracking Stable Version&#8217; section and controlling your upgrades rather than checking out the trunk and risking an unstable install.  This basically comes down to a single command to be run within your wwwroot.</p>
<p><code>svn co http://svn.automattic.com/wordpress/tags/2.6.2 .</code></p>
<p>When a new version is released, you can switch to that with:</p>
<p><code>svn sw http://svn.automattic.com/wordpress/tags/2.6.3</code></p>
<p>What they don&#8217;t mention, is you can do exactly the same with your plugins using the repository here&#8230;</p>
<ul>
<li><a href="http://plugins.svn.wordpress.org/" target="_blank">http://plugins.svn.wordpress.org/</a></li>
</ul>
<p>For example, find the plugin you want, and checkout to your plugin folder:</p>
<p><code>svn co http://plugins.svn.wordpress.org/share-this/tags/2.3/ share-this</code></p>
<p>As before, you can switch to new releases (make sure you&#8217;re in that plugin directory first) with:</p>
<p><code>svn sw http://plugins.svn.wordpress.org/share-this/tags/2.3/</code></p>
<p>And should you forget the URL you&#8217;ve got it from (like when you see there&#8217;s an upgrade available, running &#8217;svn status&#8217; in that directory should help you out.</p>
<p>Once you get the hang of it, it really saves so much more time than that slow download, unzip, copy process you&#8217;re probably all used to, and you stand a much better chance at maintaining your own modifications without rewriting them all the time <img src='http://www.kevinblake.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/using-svn-to-manage-your-wordpress-install/251/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mobile Internet on the Eee PC (Ubuntu Eee)</title>
		<link>http://www.kevinblake.co.uk/mobile-internet-on-the-eee-pc-ubuntu-eee/242/</link>
		<comments>http://www.kevinblake.co.uk/mobile-internet-on-the-eee-pc-ubuntu-eee/242/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 20:04:19 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=242</guid>
		<description><![CDATA[Setting up the Internet on the Eee PC over bluetooth to my Nokia N95 with T-Mobile GPRS/EDGE/3G connection can be tricky.  Yet it sounds like one of those setups that could be so easy, right?  Well it seems stable for the moment, so here&#8217;s what you&#8217;ll need.  Or rather, what I have&#8230;

Eee PC 701
Nokia N95
Bluetooth [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up the Internet on the Eee PC over bluetooth to my Nokia N95 with T-Mobile GPRS/EDGE/3G connection can be tricky.  Yet it sounds like one of those setups that could be so easy, right?  Well it seems stable for the moment, so here&#8217;s what you&#8217;ll need.  Or rather, what I have&#8230;</p>
<ul>
<li><a href="http://www.expansys.com/p.aspx?i=158485" target="_blank">Eee PC 701</a></li>
<li>Nokia N95</li>
<li><a href="http://www.memorybits.co.uk/shop/bluetooth-dongles/bluemicronext-pro-v2.0-bluetooth-dongle-/8156" target="_blank">Bluetooth dongle</a></li>
<li><a href="http://www.ubuntu-eee.com/" target="_blank">Ubuntu Eee installed</a> on the 701 (not Xandros - although check out <a href="http://www.3eportal.com/index.php?option=com_content&amp;task=view&amp;id=17&amp;Itemid=1" target="_blank">these scripts</a> if you don&#8217;t want to change)</li>
<li>T-Mobile UK contract with included data plan (preferably).  And Internet already working on the phone.</li>
</ul>
<p>You&#8217;re going to be setting up your connection though pppd, and all of these instructions are <a href="http://davesource.com/Solutions/20070520.T-Mobile-Nokia-E65-Ubuntu-Linux.html#bluetooth" target="_blank">based on instructions</a> that I&#8217;m going to steal, slightly change and probably skip parts to suit my purposes (and hopefully yours) perfectly.</p>
<p>If your set-up doesn&#8217;t match exactly, perhaps you can make use of both pages and work out where things should change.  Or lovingly rip these instructions off, as I did - to make your own.</p>
<p><strong>Setup your bluetooth dongle</strong><br />
First off, you&#8217;re going to need an apt repository that has the bluez-utils packages in.  So open up a terminal<br />
<code>sudo nano /etc/apt/sources.list</code><br />
and add the line<br />
<code>deb http://ftp.de.debian.org/debian etch main</code></p>
<p>Then you can install the package.</p>
<p><code>apt-update<br />
apt-get install bluez-utils<br />
/etc/init.d/bluetooth restart<br />
lsusb | grep -i bluetooth<br />
<em>(should show the bluetooth device)</em><br />
hcitool dev<br />
<em> (also lists bluetooth devices)</em><br />
</code></p>
<p><strong>Setup networking</strong></p>
<p>You can grab my <a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/gprs-settings.tar">gprs-settings</a> which should be put into /etc/ppp/peers directory, and untarred.<br />
<code>tar -xvf gprs-settings.tar</code></p>
<p><strong>Pair the phone</strong></p>
<p>First, get the bluetooth ID of the N95<br />
<code>hcitool scan</code><br />
Then pair your Eee with your phone, you have to do this from the N95.<br />
<code>Bluetooth -&gt; right arrow (Paired devices) - Options<br />
New paired devices (search)<br />
Choose your eee and then type the pairing keys (anything of your choosing</code></p>
<p><strong>Bind bluetooth to an rfcomm device</strong></p>
<p>We use &#8220;rfcomm&#8221; to bind the bluetooth connection to a device. So first, find out the channel the phones bluetooth dial up networking system is on.  You can do this with sdptool (Service Discovery Protocol tool):<br />
<code>sdptool search dun<br />
Service Name: Dial-Up Networking<br />
Service RecHandle: 0x1001e<br />
Service Class ID List:<br />
"Dialup Networking" (0x1103)<br />
Protocol Descriptor List:<br />
"L2CAP" (0x0100)<br />
"RFCOMM" (0x0003)<br />
<strong>Channel: 2</strong><br />
Language Base Attr List:<br />
code_ISO639: 0&#215;454e<br />
encoding:    0&#215;6a<br />
base_offset: 0&#215;100<br />
Profile Descriptor List:<br />
&#8220;Dialup Networking&#8221; (0&#215;1103)<br />
Version: 0&#215;0100</code></p>
<p>Note the &#8220;Channel: 2&#8243; which show which channel to bind.</p>
<p>Then to bind the channel (in this case #2) to one of the rfcomm devices (for example, rfcomm0):<br />
<code>rfcomm bind 0 11:22:BE:EF:44:33 2</code><br />
You can see the binding with:<br />
<code>rfcomm<br />
rfcomm0: 11:22:BE:EF:44:33 channel 2 clean</code><br />
You might find you need to reset the bind and restart it every now and then (especially failed connection attempts)<br />
<code>rfcomm release 0<br />
rfcomm bind 0 11:22:BE:EF:44:33 2</code><br />
You can edit the settings in &#8220;/etc/bluetooth/rfcomm.conf,&#8221; set bind to &#8220;yes&#8221; and give the device and channel for rfcomm0.  Then you can put these commands into /etc/init.d/bluetooth and it will automatically bind and release the rfcomm device:<br />
<code># At the end of the "start)" section<br />
rfcomm bind all<br />
# At the beginning of the "stop)" section<br />
rfcomm release all</code><br />
<strong>Start pppd to connect.</strong><br />
Start up pppd.  Command line first, but because we&#8217;ve called it ppp0, you will later be able to do this via the normal ubuntu eee networking menu in the menu bar.<br />
<code>% pppd call ppp0</code><br />
You should now have a <tt>ppp0</tt> interface in your &#8216;ifconfig&#8217; output that is up and running.  The output should look something like this:<br />
<code># pppd call ppp0<br />
Press CTRL-C to close the connection at any stage!<br />
defining PDP context...<br />
rAT<br />
OK<br />
ATH<br />
OK<br />
ATE1<br />
OK<br />
AT+CGDCONT=1,"IP","general.t-mobile.uk","",0,0<br />
OK<br />
waiting for connect...<br />
ATD*99#<br />
CONNECT<br />
Connected.<br />
If the following ppp negotiations fail,<br />
try restarting the phone.<br />
Serial connection established.<br />
using channel 1<br />
Using interface ppp0<br />
Connect: ppp0 &lt;--&gt; /dev/rfcomm0</code></p>
<p>You can hit control-c on the pppd process and it will shut down the connection, then you can release the rfcomm binding.</p>
<p>So&#8230; as I was saying&#8230; It&#8217;s not the easiest thing in the world to get going, but once you&#8217;ve got the hang of it, and set it up once you&#8217;ll have a connection everywhere you go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/mobile-internet-on-the-eee-pc-ubuntu-eee/242/feed/</wfw:commentRss>
	<georss:point>51.654856 -0.398203</georss:point>	</item>
		<item>
		<title>Eee PC - cheap mobile computing for the masses</title>
		<link>http://www.kevinblake.co.uk/eee-pc-cheap-mobile-computing-for-the-masses/236/</link>
		<comments>http://www.kevinblake.co.uk/eee-pc-cheap-mobile-computing-for-the-masses/236/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 14:48:36 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=236</guid>
		<description><![CDATA[
I recently bought myself an Asus Eee 701 4G Surf from Expansys for the bargain price of 169.33 including delivery.  If you don&#8217;t know about these tiny laptops, they&#8217;re low-spec, cheap machines often times running a Debian-based Linux installation called Xandros, rather than Windows (although XP versions are also available in the higher spec versions).  [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_240" class="wp-caption alignright" style="width: 160px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p10208781.jpg" rel="lightbox"><img class="size-thumbnail wp-image-240" title="Eee PC" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p10208781-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Eee PC compared to a John Grisham paperback, and full size laptop</p></div>
<p>I recently bought myself an <a href="http://en.wikipedia.org/wiki/ASUS_Eee_PC" target="_blank">Asus Eee 701 4G Surf</a> from <a href="http://www.expansys.com/p.aspx?i=158607" target="_blank">Expansys</a> for the bargain price of 169.33 including delivery.  If you don&#8217;t know about these tiny laptops, they&#8217;re low-spec, cheap machines often times running a Debian-based Linux installation called Xandros, rather than Windows (although XP versions are also available in the higher spec versions).  Its key specs are a 7-inch screen, 512MB of RAM (upgradeable to 2GB), built-in WiFi and hard wired ethernet ports, 4GB solid-state drive, weighing only 922g, and really really small.</p>
<p>For those of you that just about nodded off to sleep - it&#8217;s really light, really small (for a feature-packed laptop, I mean), and lets you use word processing, spreadsheets, browse the Internet, read emails, blogging, instant messenger, Skype and, well - just about everything you&#8217;d normally do on your laptop really.  Except&#8230; did I mention it&#8217;s really portable?</p>
<p>I&#8217;m not totally sure where it fits into my technology arsenal yet.  It&#8217;s certainly not a desktop replacement, and it might even be best described as a second-laptop (the first of which, I hasten to add, spends way more time charging than it ever does getting used).  But the Eee PC is certainly a lot easier to carry around, and more likely to be dropped into my rucksuck as an afterthought since it takes up so little space.</p>
<p>It&#8217;s also been described as &#8220;something to play with&#8221; and the Eee fits into this category just as well as it would as a solid dependable netbook (if you&#8217;d rather leave the endless tinkering alone).  Perhaps it&#8217;s because the device is so cheap, or easy to reinstall the base system with all your essential apps in tact (take that Microsoft) - but even if you&#8217;re just looking for an alternative to Windows, the Eee might just be a good place to start.</p>
<p>So, expect more posts about the Eee shortly - the usual technical-guides are going to help me rebuild the system if I do manage to break it - as well as give me an excuse for something to write about <img src='http://www.kevinblake.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/eee-pc-cheap-mobile-computing-for-the-masses/236/feed/</wfw:commentRss>
	<georss:point>51.654856 -0.398203</georss:point>	</item>
		<item>
		<title>Super Lamb Bananas and Anthony Gormley&#8217;s Another Place</title>
		<link>http://www.kevinblake.co.uk/super-lamb-bananas-and-anthony-gormleys-another-place/219/</link>
		<comments>http://www.kevinblake.co.uk/super-lamb-bananas-and-anthony-gormleys-another-place/219/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 19:38:20 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[anthony gormley]]></category>

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

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

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

		<category><![CDATA[public art]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=219</guid>
		<description><![CDATA[
As you might have guessed, I&#8221;m a big fan of large, public displays of art. It can be a small piece of graffiti on the wall that makes me chuckle, or it can be street theatre involving a 40ft tall mechanical spider. I try not to ask for much. So this weekend in Liverpool has [...]]]></description>
			<content:encoded><![CDATA[<div class="moz-text-html" lang="x-unicode">
<div id="attachment_226" class="wp-caption alignright" style="width: 160px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p1020719.jpg" rel="lightbox"><img class="size-thumbnail wp-image-226" title="Super Lamb Banana" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p1020719-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Yellow Superlambanana in a cage</p></div>
<p>As you might have guessed, I&#8221;m a big fan of large, public displays of art. It can be a small piece of graffiti on the wall that makes me chuckle, or it can be street theatre involving a 40ft tall mechanical spider. I try not to ask for much. So this weekend in Liverpool has brought three of them all along at once, and I&#8221;ve loved it all.</p>
<p>Super Lamb Bananas. Lots of people have heard the name by now. It was originally a huge 17ft tall sculpture by a Japanese artist named Taro Chiezo. As with a lot of great pieces of art it was originally met with a resounding &#8220;huh?&#8221; by the local population of Liverpool. However, when art lovers and travellers from all over the UK to visit, they all went &#8220;huh?&#8221; too. So it&#8221;s no great surprise that the 2008 City of Culture created 125 two-metre high versions and put them all over the city.</p>
<p>Everyone is still going &#8220;huh?&#8221;, but the persistence is making everyone grow to love these little genetically modified beings. Liverpool has painted its spirit onto every single one of the unique animals, and it now sits firmly alongside the Liver bird as a modern-day symbol of the city. And now, the 8th-9th September sees a huge amount of them on display at the front of St. George&#8221;s Hall, before they&#8221;re auctioned off for charity on Wednesday. The original experience was like the pigs I&#8221;ve talked about in Bath, but Liverpool did really beat them to it. And they used genetically modified animals (originally to highlight the dangers of GM crops). You can almost sing along to &#8220;Cities just wanna have fun&#8221; (to the tune of Girls Just Wanna Have Fun) as you parade madly through the distorted flock. And you probably wouldn&#8221;t get any funny looks.</p>
<div id="attachment_227" class="wp-caption alignleft" style="width: 149px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p1020662.jpg" rel="lightbox"><img class="size-medium wp-image-227" title="p1020662" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p1020662-300x225.jpg" alt="Anthony Gormley's &quot;Another Place&quot;, Crosby Beach" width="139" height="105" /></a><p class="wp-caption-text">Another Place, Crosby Beach</p></div>
<p>Another Place is much more serene, slightly disturbing and intense. I had no idea it was near Liverpool, but a helpful lady on the train on the way in had mentioned it as a place that would be great to go and see if I could find a bus. It&#8221;s 20 minutes from Liverpool Central on the Northern Line to Crosby, or Waterloo. Both an easy 10-minute walk from the beach that stretches for 2 miles, and is full of 100 statues of Anthony Gormley, staring out to sea.</p>
<p>I&#8221;m a big fan of Anthony Gormley, and this piece is reminiscent of Event Horizon where 31 statues were placed on rooftops around London. Designed to symbolise the relationship that man has with nature, Crosby beach is such a perfect location, with signs of industry to one side, wind farms in the distance, and a long sandy (often muddy) beach meeting the sea at the horizon. So perfect, that when it came to November 2006 when the exhibit was to be moved to New York, it stayed in what will hopefully a permanent home to these 100 figures.</p>
<p>During particularly high tides all 100 figures are totally submerged, swallowed by the sea to return the next day, slightly greener, a little more worn, but still standing. A lot could be said for this as a metaphor&#8230; But having already fallen in love with a spider, genetically modified lambs, and a city running high on enthusiasm and a will to enjoy itself&#8230; I think I&#8221;ll leave this one up to you&#8230;.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/super-lamb-bananas-and-anthony-gormleys-another-place/219/feed/</wfw:commentRss>
	<georss:point>53.410777 -2.977838</georss:point>	</item>
		<item>
		<title>Farewell La Princesse</title>
		<link>http://www.kevinblake.co.uk/farewell-la-princesse/217/</link>
		<comments>http://www.kevinblake.co.uk/farewell-la-princesse/217/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 18:47:58 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

		<category><![CDATA[la machine]]></category>

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

		<category><![CDATA[street theatre]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=217</guid>
		<description><![CDATA[
Yesterday was the final day of La Machine&#8221;s incredible La Princesse. The weather has held out, with only a few light spots of rain whilst the rest of England has been submerged. But we don&#8221;t care, we&#8221;ve been watching Princess with awe. Even the people who turned up to watch her on the docks on [...]]]></description>
			<content:encoded><![CDATA[<div class="moz-text-html" lang="x-unicode">
<div id="attachment_230" class="wp-caption alignright" style="width: 160px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p1020491.jpg" rel="lightbox"><img class="size-thumbnail wp-image-230" title="p1020491" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p1020491-150x150.jpg" alt="La Princesse" width="150" height="150" /></a><p class="wp-caption-text">La Princesse</p></div>
<p>Yesterday was the final day of La Machine&#8221;s incredible La Princesse. The weather has held out, with only a few light spots of rain whilst the rest of England has been submerged. But we don&#8221;t care, we&#8221;ve been watching Princess with awe. Even the people who turned up to watch her on the docks on Friday said they didn&#8221;t mind they had to do so in the midst of a monsoon.</p>
<p>&#8220;Have you seen the spider yet?&#8221; I asked the new guy in the hostel. I forgot his name already, sorry, let&#8221;s call you Gary. Because it was something like that. &#8220;What spider?&#8221; He replied. I&#8221;d come across the only person within 15 miles of Liverpool that hadn&#8221;t heard about this magnificent event. &#8220;Right, get your shoes on, you&#8221;re coming with me.&#8221;</p>
<p>A false start at 3pm had brought everyone out to rival Saturday nights huge crowds. The spider wasn&#8221;t doing anything until 7.30pm, but the rumours had been going round and everyone turned up anyway. These had made it to the tourist offices, and all over the city. I think it was originally on the web site, but later removed - so no wonder that everyone was excited. But it wasn&#8221;t to be, and La Princesse wouldn&#8221;t awaken from her slumber on Concourse tower for another 4.5 hours.</p>
<p>And what an awakening. She walked the path around St. George&#8221;s Hall with her huge entourage of drums, harpists, and full brass band. Spraying everyone in the crowd with water, and lowering legs to just slightly skim the crowd as she went. We&#8221;d waited hours in the spots we&#8221;d all chosen. But everybody was smiling, and everyone was happy that La Princesse had graced the city with her presence.</p>
<p>The finale was spectacular. I write this as I&#8221;m on the train back home, and as someone has just attempted to proudly point out - &#8220;yeah, but the London one had a narrative, and more of a story&#8221;. Well, Liverpool had fireworks, snow, fire and a water ballet (I think that&#8221;s the correct terminology)&#8230; Not to mention the spider made use of all of its surroundings, including climbing a building!</p>
<p>I don&#8221;t say this to downplay anything that the team accomplished with the Sultan&#8221;s Elephant, because both events were huge and unforgettable. Both were remarkable feats of engineering, media, and public interaction - and something that I hope we will see much, much more of in the years to come. La Machine have dared you to dream, but I hope that they also inspire each and every one of us that magic can happen in our streets and in the cities we live. Thank you La Machine, and thank you Liverpool.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/farewell-la-princesse/217/feed/</wfw:commentRss>
	<georss:point>53.410777 -2.977838</georss:point>	</item>
		<item>
		<title>The Spider That Ate Liverpool</title>
		<link>http://www.kevinblake.co.uk/the-spider-that-ate-liverpool/215/</link>
		<comments>http://www.kevinblake.co.uk/the-spider-that-ate-liverpool/215/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 11:35:46 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

		<category><![CDATA[la machine]]></category>

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

		<category><![CDATA[street theatre]]></category>

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

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=215</guid>
		<description><![CDATA[
Back in 2006, a time traveling elephant visited London, on command of an eccentric rich sultan who was seeking to find another similar time traveler in the form of a young girl who was haunting his dreams. Well, you all know the story.
And now, new agents used on a building due to be destroyed in [...]]]></description>
			<content:encoded><![CDATA[<div class="moz-text-html" lang="x-unicode">
<div id="attachment_232" class="wp-caption alignright" style="width: 160px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p1020438.jpg" rel="lightbox"><img class="size-thumbnail wp-image-232" title="p1020438" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/p1020438-150x150.jpg" alt="La Princesse on Concourse Tower" width="150" height="150" /></a><p class="wp-caption-text">La Princesse on Concourse Tower</p></div>
<p>Back in 2006, a time traveling elephant visited London, on command of an eccentric rich sultan who was seeking to find another similar time traveler in the form of a young girl who was haunting his dreams. Well, you all know the story.</p>
<p>And now, new agents used on a building due to be destroyed in Liverpool has created a creature we all know and love, only just ever so slightly bigger. About, 40ft bigger in fact (although the sizes seem to get larger every time I hear them).</p>
<p>Royal De Luxe, or rather La Machine as they seem to now be called have let a huge 40ft spider loose on the streets, and indeed buildings of Liverpool. And there&#8221;s no way I&#8221;m going to miss something like that! She goes by the name of Princess (ahhhh), and she started out in a cocoon on the side of Liverpool Lime St. Station last Thursday. And she is definitely magnificent, if, y&#8221;know, freaky as hell at night time.</p>
<p>As soon as I left the station though, memories came flooding back of the crack-addled elephant worshipers of 2006. Children and adults alike all filtering out of the station with only one purpose in mind. &#8220;Have you seen the spider?&#8221; &#8220;Where is the spider?&#8221; &#8220;Hey, dude, like, stop hogging all the Pringles.&#8221; Not the last one.</p>
<p>The media has worked its magic, and everyone knows about Princess. Everyone wants to meet her, and we all want to be her friend (through fear of being kept alive in some kind of spider-feeding larder deep underneath Liverpool station before being eventually chewed on by gammy spider-jaws, I&#8221;d guess).</p>
<p>And the crowds are huge. They&#8221;re expecting over a million people over the three days, and I counted at least 200 today. People line the streets everywhere, and if you&#8217;re unfortunate enough to get stuck in front of Princess (as I was) - you will die (I was lucky). I&#8217;m not kidding, as we all tried to move out of the way of the incoming spider, and people behind us just wanted to get closer and stand in the way &#8230; Someone actually, genuinely, and I&#8221;m not lying here, shouted &#8220;think of the children!&#8221;. And sadly they weren&#8221;t joking either, there did seem to be panic brewing among the group of, shall we say &#8220;dads&#8221;, children were leaving crying, men with pushchairs were looking angry, and apparently some Liverpudlians just need to relax. Still, we made it out alive, the spider didn&#8217;t eat us - and I&#8217;m actually rather looking forward to collecting other prominent phrases like &#8220;we&#8217;re all going to die&#8221; and &#8220;oh, the humanity&#8221;.</p>
<p>Speaking of crowds, don&#8221;t worry, Liverpool has opened all three of its restaurants for this event, and you will only need to queue out the door and down the street for 30 minutes. I&#8221;m sure it&#8221;s always like this. Really.</p>
<p>All said, these shows are incredible. There&#8221;s a very very good reason that they draw such huge crowds, and they&#8221;re a once in a lifetime experience that you&#8221;ll never forget and hopefully look back upon fondly, forever. Queues, crowds, and long waiting times mean absolutely nothing as soon as you see the spiders legs appear around the corner. And you&#8221;ll probably never hear a huge crowd in the hundreds of thousands cheer for a giant spider again. Unless it&#8221;s eaten all the killer bed bugs. Which is quite possible. The final day is tomorrow, and I can&#8221;t wait <img class="wp-smiley" src="../wp-includes/images/smilies/icon_smile.gif" alt=":)" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/the-spider-that-ate-liverpool/215/feed/</wfw:commentRss>
	<georss:point>53.410777 -2.977838</georss:point>	</item>
	</channel>
</rss>