<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Andrew Johnson&#039;s Weblog &#187; Uncategorized</title>
	<atom:link href="http://www.andrewjohnson.me.uk/blog/index.php/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andrewjohnson.me.uk/blog</link>
	<description>Thoughts on software, technology, and life</description>
	<lastBuildDate>Thu, 12 Jan 2012 00:12:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Moved</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2011/11/14/moved/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2011/11/14/moved/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 22:55:55 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=380</guid>
		<description><![CDATA[A couple of weeks ago I moved this blog from its old home on a Windows-based virtual server at EasyCGI to a dedicated Linux server running as a &#8220;micro instance&#8221; on the Amazon Web Services (AWS) platform. Herein some notes on the move. Overall I&#8217;m pretty happy with the move. The EasyCGI hosting was cheap [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago I moved this blog from its old home on a Windows-based virtual server at EasyCGI to a dedicated Linux server running as a &#8220;micro instance&#8221; on the Amazon Web Services (AWS) platform. Herein some notes on the move.</p>
<p>Overall I&#8217;m pretty happy with the move. The EasyCGI hosting was cheap but painfully slow and seemingly getting slower. Although I have no illusions that many people read this blog (although it does get some incoming traffic from Google) I do object to paying for a poor service. Â I also needed an excuse to play with AWS.</p>
<p>Since I have never used AWS before, and haven&#8217;t used Unix in any significant way for about fifteen years, I needed some help. I started with <a href="http://www.2bit-coder.com/2010/9/wordpress-in-the-cloud-amazon-ec2">this</a>Â tutorial [1]; which is a good idiot&#8217;s guide to signing-up for AWS, creating an EC2 micro instance, and installing WordPress and its dependencies. The article is a year old, though, and is out of date in several respects. The most important is that AWS no longer provides Fedora-based machine images. They do offer something called Amazon Linux, which did the job for me. There are some minor differences between this and the tutorial, but noting serious.</p>
<p>Signing up for AWS was as smooth as I expected &#8211; kind of like an extended Amazon checkout process.</p>
<p>After I had an instance built and launched, the first problem I encountered was that the default Amazon Linux EC2 image does not allow root user login. This is explained <a href="http://imperialwicket.com/aws-default-root-password">here</a> [2]. The effect of this is that you login as &#8220;ec2-user&#8221; and is you want to use anyÂ privilegedÂ commands then you have to use the sudo command. At this point I discovered <a href="http://calebogden.com/wordpress-on-linux-in-the-amazon-cloud-with-mac/">this</a> [3] tutorial, which is a bit more up to date. Despite the title it is not specific to Apple Macs.</p>
<p>Installing Apache and MySQL was easy: just a few simple &#8216;sudo yum install&#8217; commands. I still carry the scars of installing software in SunOS and Solaris back in the early nineties (only if you have to, plenty of coffee, allow a whole day), and this yum stuff impressed me a lot. (Must take a look at <a href="http://nuget.codeplex.com/">NuGet</a> when I have the time). You can&#8217;t install phpMyAdmin using yum because its not in Amazon&#8217;s yum repository, but the tutorial [3] explains how to do this. There&#8217;s also an informative SuperUser Q&amp;A about itÂ <a href="http://superuser.com/questions/291230/how-to-install-phpmyadmin-on-linux-ec2-instance">here</a> [4].</p>
<p>I installed a fresh copy of WordPress as described in the tutorials, then copied over the various config files and a database backup from my old site to the new one (via http using wget). No surprises there, but there are some instructions <a href="http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_to_a_New_Server">here</a> [5] that might be useful (or at least reassuring). Make sure you have backups! Since I had installed WordPress in a subdirectory below /var/www/html I had to put a php redirection script in that directory.Â There is an example of how to do this <a href="http://php.about.com/od/learnphp/ht/phpredirection.htm">here</a> [6].Â I found <a href="http://www.cs.colostate.edu/helpdocs/vi.html">this</a> [7] cheat-sheet useful throughout when driving the vim text editor.</p>
<p>Finally, I assigned a public &#8220;elastic IP address&#8221; to the instance and changed the DNS for the andrewjohnson.me.uk domain to point to it.</p>
<p>AndÂ that&#8217;sÂ it really. It didn&#8217;t take long, I enjoyed it, and I learned some things. My thanks to those who took the time to write the various tutorials &#8211; it would have been much harder without them.</p>
<p>&nbsp;</p>
<p>[1]Â <a href="http://www.2bit-coder.com/2010/9/wordpress-in-the-cloud-amazon-ec2">http://www.2bit-coder.com/2010/9/wordpress-in-the-cloud-amazon-ec2</a></p>
<p>[2] <a href="http://imperialwicket.com/aws-default-root-password">http://imperialwicket.com/aws-default-root-password</a></p>
<p>[3]Â <a href="http://calebogden.com/wordpress-on-linux-in-the-amazon-cloud-with-mac/">http://calebogden.com/wordpress-on-linux-in-the-amazon-cloud-with-mac/</a></p>
<p>[4] <a href="http://superuser.com/questions/291230/how-to-install-phpmyadmin-on-linux-ec2-instance">http://superuser.com/questions/291230/how-to-install-phpmyadmin-on-linux-ec2-instance</a></p>
<p>[5]Â <a href="http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_to_a_New_Server">http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_to_a_New_Server</a></p>
<p>[6] <a href="http://php.about.com/od/learnphp/ht/phpredirection.htm">http://php.about.com/od/learnphp/ht/phpredirection.htm</a></p>
<p>[7] <a href="http://www.cs.colostate.edu/helpdocs/vi.html">http://www.cs.colostate.edu/helpdocs/vi.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2011/11/14/moved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2011/05/07/virtual/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2011/05/07/virtual/#comments</comments>
		<pubDate>Sat, 07 May 2011 11:06:59 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=368</guid>
		<description><![CDATA[Some time ago, while explaining the concept ofÂ virtual memory to a work colleague, I remembered something I&#8217;d seen about twenty years earlier&#8230; Between July 1988 and September 1989 I worked at an IBM research lab in Winchester, Hampshire. This was the industrial placement part of my four-year computer science degree. I was about 20 at [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago, while explaining the concept ofÂ <a href="http://en.wikipedia.org/wiki/Virtual_memory">virtual memory</a> to a work colleague, I remembered something I&#8217;d seen about twenty years earlier&#8230;</p>
<p>Between July 1988 and September 1989 I worked at an IBM research lab in Winchester, Hampshire. This was the industrial placement part of my four-year computer science <a href="http://en.wikipedia.org/wiki/Sandwich_degree">degree</a>. I was about 20 at the time. The industrial trainees inhabited a basement room with small, ceiling-level windows that were at pavement height in the street outside. High up on one wall, near the ceiling, someone had blu-tacked a piece of paper that (from memory) read:</p>
<p style="padding-left: 30px;"><em>If it&#8217;s there, and you can see it, then it&#8217;s real.</em></p>
<p style="padding-left: 30px;"><em>If it&#8217;s not there, and you can see it, then it&#8217;s virtual.</em></p>
<p style="padding-left: 30px;"><em>If it&#8217;s there, and you can&#8217;t see it, then it&#8217;s transparent.</em></p>
<p style="padding-left: 30px;"><em>If it&#8217;s not there, and you can&#8217;t see it then it&#8217;s gone!</em></p>
<p>Someone had crossed-out the &#8216;ne&#8217; part of &#8216;gone&#8217; and written a &#8216;d&#8217; above it. I never felt the slightest inclination to correct this.</p>
<p>__________</p>
<p>The paper seems to have been a home-made version of an 70&#8242;s-era <a href="http://books.google.co.uk/books?id=9t5uxP9xHpwC&amp;pg=PA174&amp;source=gbs_toc_r&amp;cad=4#v=onepage&amp;q&amp;f=false">IBM poster</a> explaining virtual memory. The lab was the <a href="http://www.google.co.uk/search?hl=en&amp;biw=1366&amp;bih=653&amp;q=ibm+uk+scientific+centre+winchester&amp;aq=f&amp;aqi=g-v1&amp;aql=&amp;oq=">IBM UK Scientific Centre</a>, a really <a href="http://www.andrewjohnson.me.uk/blog/index.php/2005/06/06/neural-simulation/">fun</a> place to work, and which seems to have closed in the early 1990s when IBM was having financial problems. While the world thinks that these global problems were the responsibility of the then-CEO <a href="http://www-03.ibm.com/ibm/history/exhibits/chairmen/chairmen_8.html">John Akers</a>, I can exclusively reveal that they were entirely caused by UKSC management allowing induistrial trainees unrestricted access to the stationary cupboard. I still have a stapler.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2011/05/07/virtual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I know where you live</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2010/01/25/i-know-ehere-you-live/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2010/01/25/i-know-ehere-you-live/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 18:09:26 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=357</guid>
		<description><![CDATA[Here]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nscl.msu.edu/~estrade/BotW/tierra3.gif">Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2010/01/25/i-know-ehere-you-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Economy. Stupid.</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2009/03/17/economy-stupid/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2009/03/17/economy-stupid/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 22:50:51 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=348</guid>
		<description><![CDATA[I love it when this thing forces me to think. The blog post that would have been here &#8211; about the economy no less &#8211; is sitting safely in the drafts folder until I figure-out a way to express my opinion on that subject without it being full of logical holes and arguments that are [...]]]></description>
			<content:encoded><![CDATA[<p>I love it when this thing forces me to <em>think</em>.</p>
<p>The blog post that would have been here &#8211; about the economy no less &#8211; is sitting safely in the drafts folder until I figure-out a way to express my opinion on that subject without it being full of logical holes and arguments that are just&#8230; well, wrong.</p>
<p>Its probably because I know next-to-nothing about economic public policy, but it would be nice if I could realise that without having to write 300+ words first&#8230;</p>
<p style="text-align: center;">&#8212;</p>
<p>Meanwhile&#8230;</p>
<p>If you want some useful perspective on the economic situation then you could do worse than <a href="http://www.guardian.co.uk/business/2009/mar/17/barclays-guardian-injunction-tax">read about</a> how Barclays Bank got a senior High Court judge out of bed in the middle of the night to prevent the <a href="http://www.guardian.co.uk">Guardian</a> from publishing Barclays internal memos detailing systematic, large scale tax avoidance by Barclays.</p>
<p>Despite the efforts of Barclay&#8217;s clueless corporate lawyers, and the probably equally clueless judge, the documents are up on <a href="http://88.80.13.160/wiki/The_Guardian:_Censored_Barclays_tax_avoidance_leaked_memos%2C_16_Mar_2009">Wikileaks</a>. The one about <a href="http://88.80.13.160/leak/barclays-tax-avoidance-scm-censored-guardian-2009/BarclaysKnight.pdf">Project Knight (PDF)</a> is particularly interesting. I wonder how many schools the tax that they avoided would have paid for? While you&#8217;re there, check-out the Guardian&#8217;s <a href="http://www.guardian.co.uk/business/series/tax-gap">extensive investigation</a> of corporate tax avoidance.</p>
<p>Me? Angry?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2009/03/17/economy-stupid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ten years of MSDN Magazine could be yours!</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2009/01/14/ten-years-of-msdn-magazine/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2009/01/14/ten-years-of-msdn-magazine/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 22:42:24 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=343</guid>
		<description><![CDATA[I have ten years of Microsoft Systems Journal / MSDN Magazine (Oct 1997 to Feb 2007) taking up space in my house. The local universities have (wisely) declined my offer to donate them. If you want them and Google has brought you here then you can have them. You collect. I&#8217;m in South Manchester (UK). [...]]]></description>
			<content:encoded><![CDATA[<p>I have ten years of Microsoft Systems Journal / MSDN Magazine (Oct 1997 to Feb 2007) taking up space in my house. The local universities have (wisely) declined my offer to donate them. If you want them and Google has brought you here then you can have them. You collect. I&#8217;m in South Manchester (UK).</p>
<p>After this I&#8217;ll try freecycle and then (reluctantly) they go in the recycle bin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2009/01/14/ten-years-of-msdn-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Being Mobile</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2008/11/14/being-mobile/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2008/11/14/being-mobile/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 20:37:17 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=342</guid>
		<description><![CDATA[Yesterday I bought a T-Mobile G1 &#8211; the &#8220;Googlephone&#8221;. I haven&#8217;t had much time to play with it yet, but it seems like a great piece of technology.The broadband access to email and maps, the user-interface, and the general build quality are very good. I hear it also does phone calls. I hope to have [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I bought a T-Mobile <a href="http://www.engadget.com/2008/10/16/t-mobile-g1-review/">G1</a> &#8211; the &#8220;Googlephone&#8221;.</p>
<p>I haven&#8217;t had much time to play with it yet, but it seems like a great piece of technology.The broadband access to email and maps, the user-interface, and the general build quality are very good. I hear it also does phone calls. I hope to have more to say about it later.</p>
<p>But there&#8217;s a story here.</p>
<p>Some time in early 1998 I read the following on <a href="http://memex.org/welcome.html">David Bennahum&#8217;s</a> (now long-defunct) <a href="http://memex.org/meme-archive.html">Meme</a> mailing list:</p>
<blockquote><p>8:30 am, mid-April, standing on the platform of Track 3, waiting for the Times Square shuttle to take me to Grand Central Station.  About six hundred people are queued up, clustered in blobs along memorized spots where we know the subway doors will open.  Most are just standing.  Some are reading the morning papers.  I&#8217;m downloading email through a metal ventilation shaft in the ceiling.  I point my wireless modem like a diving rod toward the breeze coming down from the street above.  I can see people&#8217;s feet criss-crossing the grate.  If wind can get down here this way, I figure packets of data can too.   (<a href="http://memex.org/meme4-03.html">Link</a>)</p></blockquote>
<p>He was describing his experience of mobile, wireless internet connectivity using Palm Pilot with an attached (bulky) Novatel Minstrel modem. This image stuck in my mind. I had had net access since the late eighties as a student, and limited access at work (I&#8217;m a developer) since about 1993, but always tethered to a desk. This mobile internet idea was cool. I decided that I had to get some of this.</p>
<p>In late 1998 I bought my first mobile computing device &#8211; a <a href="http://en.wikipedia.org/wiki/Philips_Velo">Philips Velo 500</a>. This was pretty curring-edge at the time: about as big as a thick paperback, it ran Windows CE 2, had a monochrome LCD display with a green backlight, and a &#8220;chicklet&#8221; keyboard. Crucially, it also had a built-in 19.2kb/s modem, and built-in browser and email client. I had great fun plugging it into phone lines and showing people &#8220;look&#8230; email&#8230; web&#8230;!&#8221;. It wasn&#8217;t all that impressive, though, and it was too big and heavy to fit into a pocket.I didn&#8217;t yet have a mobile phone, and the Velo wouldn&#8217;t have connected to it anyway. All in all, not really what I&#8217;d imagined.</p>
<p>In late 1999 I bought a <a href="http://en.wikipedia.org/wiki/Palm_Vx">Palm Vx</a>. This was a significant improvement. Even with its tiny 33.6kb/s <a href="http://www.amazon.com/Palm-10401U-PalmOne-V-Modem/dp/B00000J3PR">modem</a> clipped on it would fit comfortably in a jacket pocket. I bought some third-party brower and email software. Then I got a mobile phone with an IRDA modem, and suddenly I could sit in Starbucks downloading my email like a proper alpha geek. For a couple of years that was my primary personal email system. It was slow, though &#8211; GSM data runs at about 9kb/s. Also, making sure that the phone stayed in line of sight with the Vx was awkward. But it worked.</p>
<p>By 2004 I had acquired an <a href="http://www.pocket-lint.co.uk/reviews/review.phtml/459/1483/hp-ipaq-4150-pda-wi-fi.phtml">HP 4150</a> PDA and a GPRS phone. This was more like it! The 4150 had a colour screen with decent resolution and the Bluetooth/GPRS connection was quite fast. It was annoying that that I had to fiddle with both devices to turn bluetooth on before accessing the net, the data charges were pretty steep, and I now had two devices to carry around. The main problem, though, was that Windows CE was just plain awful to use. Hmm. Still not right.</p>
<p>So now I have this G1. It has a high-resolution screen, okay keyboard, always-on broadband, and its fairly small. Its my fourth personal generation of mobile internet device, and it finally seems that it might be what I wanted back in 1998 &#8211; although I didn&#8217;t know what that was at the time. We&#8217;ll see.</p>
<p>(I still have the velo and the Vx.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2008/11/14/being-mobile/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An Iraq Story</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2008/06/01/an-iraq-story/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2008/06/01/an-iraq-story/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 16:34:54 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=334</guid>
		<description><![CDATA[Four years and one month after the &#8216;liberation&#8216; of Iraq, the Guardian reports on the end of the sad story of Rand and Leila Hussein. While I have no doubt that many Iraqis find &#8216;honour killing&#8217; repugnant, and it is dangerous to generalise these events to an entire country, its clear that Iraq has a [...]]]></description>
			<content:encoded><![CDATA[<p>Four years and one month after the &#8216;<a href="http://" title="http://en.wikipedia.org/wiki/2003_invasion_of_Iraq">liberation</a>&#8216; of Iraq, the Guardian reports on the end of the <a href="http://www.guardian.co.uk/world/2008/jun/01/iraq">sad story of Rand and Leila Hussein</a>.</p>
<p>While I have no doubt that many Iraqis find &#8216;honour killing&#8217; repugnant, and it is dangerous to generalise these events to an entire country, its clear that Iraq has a long way to go. I can&#8217;t believe this is even close to being an isolated case.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2008/06/01/an-iraq-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live from the Antarctic</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2008/04/03/live-from-the-antarctic/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2008/04/03/live-from-the-antarctic/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 14:42:10 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=330</guid>
		<description><![CDATA[I&#8217;ve spent most of the day coding and listening to a very cool live audio feed from below the Antarctic Ekström ice shelf. Its very ambient and spacey, and has really helped keep me in the zone today &#8211; just as well as I have a major release due to be pushed to our servers [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent most of the day coding and listening to a very cool <a href="http://www.awi.de/en/research/new_technologies/marine_observing_systems/ocean_acoustics/palaoa/palaoa_livestream/">live audio feed</a> from below the Antarctic Ekström ice shelf. Its very ambient and spacey, and has really helped keep me in the zone today &#8211; just as well as I have a major release due to be pushed to our servers overnight tonight.</p>
<p>Nothing much happens: just hissing, bubbly, swishy water noises with the occasional groan and crash as chunks of ice calve away. Very relaxing and, for me at least, focusing.</p>
<p>And the Antarctic just got a bit less remote. Its a long way away, incredibly inhospitable, and very few people have been there &#8211; but I can sit here in my office writing code and listening to the sounds of one of the most remote places on earth.</p>
<p>I suspect that in a few years time my children will find something like this entirely unextraordinary&#8230;</p>
<p>(Via <a href="http://blog.wired.com/wiredscience/2008/04/scientists-stre.html">Wired</a>, via <a href="http://bldgblog.blogspot.com/2008/04/transmitting-live-from-below-antarctic.html">BldgBlog</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2008/04/03/live-from-the-antarctic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2007/08/04/test/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2007/08/04/test/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 17:25:46 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=326</guid>
		<description><![CDATA[This is a test of creating a blog entry via email from my phone.]]></description>
			<content:encoded><![CDATA[<p>This is a test of creating a blog entry via email from my phone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2007/08/04/test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Usenet Sig</title>
		<link>http://www.andrewjohnson.me.uk/blog/index.php/2007/08/01/best-usenet-sig/</link>
		<comments>http://www.andrewjohnson.me.uk/blog/index.php/2007/08/01/best-usenet-sig/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 23:14:21 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrewjohnson.me.uk/blog/?p=325</guid>
		<description><![CDATA[I don&#8217;t know how I can across it (probably following a link from uk.rec.walking) but this guy has has a really great usenet signature: I&#8217;ve seen things you people wouldn&#8217;t believe. Barbeques on fire by the chalets past the castle headland I watched the gift shops glitter in the darkness off the Newborough gate All [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know how I can across it (probably following a link from <a href="http://groups.google.co.uk/group/uk.rec.walking/topics?hl=en">uk.rec.walking</a>) but <a href="http://groups.google.co.uk/groups/profile?enc_user=m9DaThsAAABJULQDuiFhhkDtY6_t1wNTIw3kI04M6YJE3Nb4rtjRkA&amp;hl=en">this guy</a> has has a really great usenet signature:</p>
<blockquote><p>I&#8217;ve seen things you people wouldn&#8217;t believe.<br />
Barbeques on fire by the chalets past the castle headland<br />
I watched the gift shops glitter in the darkness off the Newborough gate<br />
All these moments will be lost in time,  like icecream on the beach<br />
Time for tea.</p></blockquote>
<p>If that doesn&#8217;t mean anything to you then you should probably check-out <a href="http://www.youtube.com/watch?v=FpgR6nZE_Rc">this clip</a>. Better still, watch the whole film.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewjohnson.me.uk/blog/index.php/2007/08/01/best-usenet-sig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

