<?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>foorah &#187; Uncategorized</title>
	<atom:link href="http://www.mafoo.org.uk/wp/tags/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mafoo.org.uk/wp</link>
	<description>Wibble and stuff...</description>
	<lastBuildDate>Sun, 01 Jan 2012 10:00:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Twitter Wordle for 2011</title>
		<link>http://www.mafoo.org.uk/wp/2012/01/01/twitter-wordle-for-2011/</link>
		<comments>http://www.mafoo.org.uk/wp/2012/01/01/twitter-wordle-for-2011/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 09:02:23 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[foo]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordle]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=101</guid>
		<description><![CDATA[This morning I published (two) Wordles based on the content of my Twitter timeline for 2011 which I&#8217;ve been archiving to a SQLite database since July 2010. 
Basic method:

Export tweets
Process into words
Count word frequency
Upload to Wordle

Wordle accepts data input in the form:

word1:55
word2:23
...

First output was:

This was a little skewed towards the various travel and weather related [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I published (two) <a href="http://www.wordle.net">Wordles</a> based on the content of my Twitter timeline for 2011 which I&#8217;ve been archiving to a <a href="http://www.sqlite.org/">SQLite</a> database since July 2010. </p>
<p>Basic method:</p>
<ol>
<li>Export tweets</li>
<li>Process into <em>words</em></li>
<li>Count word frequency</li>
<li>Upload to Wordle</li>
</ol>
<p>Wordle accepts data input in the form:</p>
<pre>
word1:55
word2:23
...
</pre>
<p>First output was:</p>
<p><a href="http://mafoo.org.uk/stuff/twitter-wordle-2011.png"><img src="http://mafoo.org.uk/stuff/twitter-wordle-2011.png" alt="Raw Wordle for 2011" /></a></p>
<p>This was a little <em>skewed</em> towards the various travel and weather related feeds I follow (<a href="http://twitter.com/SWtrafficnews">@SEtrafficnews</a>, <a href="http://twitter.com/nationalrailenq">@nationalrailenq</a>, <a href="http://twitter.com/NRE_SEastern">@NRE_SEastern</a>, <a href="http://twitter.com/SEplaying">@SEplaying</a>, <a href="http://twitter.com/KentWeatherObs">@KentWeatherObs</a>) so I then excluded them&#8230;</p>
<p><a href="http://mafoo.org.uk/stuff/twitter-wordle-2011-2.png"><img src="http://mafoo.org.uk/stuff/twitter-wordle-2011-2.png" alt="Much better..." /></a></p>
<p>And finally&#8230; a Wordle of my <strike>Twitterings</strike>Ramblings:</p>
<p><a href="http://mafoo.org.uk/stuff/twitter-wordle-2011-3.png"><img src="http://mafoo.org.uk/stuff/twitter-wordle-2011-3.png" alt="fooflington" /></a></p>
<p><span id="more-101"></span></p>
<p>Actual method:</p>
<pre>
sqlite3 save.db "
  select text
  from tweets
  where substr(created_at, 27, 4) = '2011'
      and user_screen_name not in
         ('SEtrafficnews', 'nationalrailenq',
          'NRE_SEastern', 'SEplaying', 'KentWeatherObs')
" |
perl -e '
my %d;
while (<>) {
    chomp;
    s/http:\S+//g; # exclude links
    my  = split(/\W+/);
    for () {
        $d{ lc $_ }++;
    }
}
for ( sort { $d{$a} <=> $d{$b} } keys %d ) {
    print "$_:$d{$_}\n" if $d{$_} > 250 and $_ ne "";
}
'
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2012/01/01/twitter-wordle-for-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter and some statistics</title>
		<link>http://www.mafoo.org.uk/wp/2010/09/23/twitter-and-some-statistics/</link>
		<comments>http://www.mafoo.org.uk/wp/2010/09/23/twitter-and-some-statistics/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 21:05:25 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[foo]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=89</guid>
		<description><![CDATA[Two and a bit months ago, I started archiving my friends timeline on Twitter into a SQLite database for posterity (I didn&#8217;t really like the idea that it just vanishes after a while).
It then occurred to me earlier that I didn&#8217;t actually know how many tweets I read in two months&#8230; the answer appears to [...]]]></description>
			<content:encoded><![CDATA[<p>Two and a bit months ago, I started archiving my <em>friends timeline</em> on <a href="http://twitter.com/">Twitter</a> into a <a href="http://www.sqlite.org/">SQLite</a> database for posterity (I didn&#8217;t really like the idea that it just vanishes after a while).</p>
<p>It then occurred to me earlier that I didn&#8217;t actually know how many tweets I <em>read</em> in two months&#8230; the answer appears to be over 40,000.</p>
<p>Posting this <a href="http://twitter.com/fooflington/status/25339231818">fact</a> on twitter, the first reply I got was <a href="http://twitter.com/danielgwood/status/25339349834">&#8220;how many are about sandwiches?&#8221;</a> to which the answer is 39. Wow. What wonders <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I thought about the only useful thing I could probably do in the short term was make a pretty graph of the rate of tweet flying past my friends timeline per day&#8230; so here it is:</p>
<p><img src="https://spreadsheets.google.com/oimg?key=0AoqV3xRDrKF4dGZpd29sa252YUJMQTJ3TW5SMm1Tb0E&#038;oid=4&#038;zx=hixzyxz83bbi" /><br />
<em><a href="http://bit.ly/9JmyTk">Raw data</a></em></p>
<p>Other interesting facts:</p>
<ul>
<li><a href="http://twitter.com/TelegraphNews">@TelegraphNews</a> accounts for 6% of the throughput</li>
<li>62 tweets contain the word &#8220;argh&#8221;</li>
<li>350 mentioned &#8220;facebook&#8221;</li>
</ul>
<p>I may get around to thinking up new and more interesting stuff to do with this data later&#8230; maybe <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>UPDATE:</strong></p>
<p><a href="http://mafoo.org.uk/stuff/tweet-word-cloud.png"><img alt="tweet word cloud" src="http://mafoo.org.uk/stuff/tweet-word-cloud.png" title="tweet word cloud" class="alignnone" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2010/09/23/twitter-and-some-statistics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 on G4 Cube</title>
		<link>http://www.mafoo.org.uk/wp/2010/03/13/ubuntu-910-on-g4-cube/</link>
		<comments>http://www.mafoo.org.uk/wp/2010/03/13/ubuntu-910-on-g4-cube/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 19:04:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=82</guid>
		<description><![CDATA[A while ago, I acquired a G4 Cube off Canterbury Freecycle. Having tried to install Tiger and Leopard on it (all the PPC media I could find) and neither working, I decided to try Ubuntu. 
As it&#8217;s rather old (2001) and doesn&#8217;t have much memory in it (128M) and is only a 450MHz G4 (slow!) [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago, I acquired a <a href="http://en.wikipedia.org/wiki/Power_Mac_G4_Cube">G4 Cube</a> off <a href="http://groups.yahoo.com/group/canterburyfreecycle/">Canterbury Freecycle</a>. Having tried to install Tiger and Leopard on it (all the PPC media I could find) and neither working, I decided to try Ubuntu. </p>
<p>As it&#8217;s rather old (2001) and doesn&#8217;t have much memory in it (128M) and is only a 450MHz G4 (slow!) I thought I&#8217;d try the &#8220;alternate&#8221; XUbuntu. After some effort, I got this installed (trying off a USB stick cos the 9.10 installer is just over 700M and wouldn&#8217;t fit on my CD-Rs just didn&#8217;t work) so I went for the <a href="http://cdimage.ubuntu.com/xubuntu/ports/releases/jaunty/release/">9.04 xUbuntu installer</a> which was only 650M&#8230; much nicer.</p>
<p>This installed ok, but then I couldn&#8217;t log in. Bummer.</p>
<p>Broke into the system (<code>init=/bin/bash</code> saves the day once more) and tried resetting root&#8217;s password&#8230; failed.</p>
<p>Turned out (after a lot of anger and two reinstalls with various extra flags to the installer) that PAM doesn&#8217;t like having a date set before the epoch &#8230; 1904. It looks like the PowerPC had reset the system clock before to time began.</p>
<p>Then X &#8230; needed some extra hand-holding as I was just getting a blank black screen&#8230; http://ubuntuforums.org/showthread.php?t=772808 worked for me.</p>
<p>Having forced the time to be correct (2010 &#8212; over a hundred years in the future!) it all worked fine.</p>
<p>Dist-upgrading to 9.10 then &#8220;just worked&#8221;. Well, I say, &#8220;just worked&#8221; &#8212; it thought I was using ATI rather than the Rage 128 driver for X.</p>
<p>So now I have a reasonably nice looking (it&#8217;s Apple, after all) system, albeit old, but still useful <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Woo!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2010/03/13/ubuntu-910-on-g4-cube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When will they learn? :-(</title>
		<link>http://www.mafoo.org.uk/wp/2009/03/14/when-will-they-learn/</link>
		<comments>http://www.mafoo.org.uk/wp/2009/03/14/when-will-they-learn/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 14:12:38 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[foo]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[gov]]></category>
		<category><![CDATA[no2id]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=45</guid>
		<description><![CDATA[They&#8217;re at it again. When will they learn that people (well, some people) will not roll over and let their civil liberties in a &#8220;free nation&#8221; be eroded away?
Sent to my MP today:
Dear Julian Brazier,
My apologies for taking up yet more of your time, however our
Government seem to be leaving me little choice but to [...]]]></description>
			<content:encoded><![CDATA[<p>They&#8217;re at it again. When will they learn that people (well, some people) will not roll over and let their civil liberties in a &#8220;free nation&#8221; be eroded away?</p>
<p>Sent to my MP today:</p>
<blockquote><p>Dear Julian Brazier,</p>
<p>My apologies for taking up yet more of your time, however our<br />
Government seem to be leaving me little choice but to do so. I wish to<br />
draw your attention to a story breaking in the Daily Telegraph today<br />
(Saturday 14th March, 2009) regarding so called &#8220;e-borders&#8221;.</p>
<p><a href="http://www.telegraph.co.uk/news/uknews/4987415/All-travel-plans-to-be-tracked-by-Government.html">http://www.telegraph.co.uk/news/uknews/4987415/All-travel-plans-to-be-tracked-by-Government.html</a></p>
<p>This would seem to be, if accurate (and I can find no cited references<br />
to active or pending legislation), a HUGE step into the surveillance<br />
culture which campaigns such as <a href="http://www.no2id.net/">NO2ID</a> are opposing and trying to publicise.</p>
<p>I don&#8217;t know if it is &#8220;too late&#8221; to do anything about this but, even if<br />
it is, I would ask why this is necessary (to fight international<br />
terrorism?!) and how it will help&#8230; surely the checking of persons on<br />
&#8220;watch lists&#8221; can be done without the need for such a tracking database<br />
of the general public at point of entry/exit.</p>
<p>What will be next? Will travelling outside your county (or perhaps into<br />
London on a &#8220;sensitive&#8221; day) require written permission from a<br />
bureaucrat before you&#8217;re allowed on a train?</p>
<p>This yet another appalling regime being apparently pushed in sideways<br />
hoping law abiding citizens will roll-over and take it without any<br />
question. I don&#8217;t have anything to hide about my whereabouts, but I<br />
find the whole idea of registering my movements with an agency and<br />
having that retained for a decade disgusting.</p>
<p>Once again, I&#8217;m sorry to have taken up your time but this is an issue<br />
which is often overlooked and needs more attention.</p>
<p>Yours sincerely,<br />
Me
</p></blockquote>
<p>He&#8217;s usually quite good about replying to emails so I will await the response&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2009/03/14/when-will-they-learn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benjamin Daniel Slowe</title>
		<link>http://www.mafoo.org.uk/wp/2008/05/19/benjamin-daniel-slowe/</link>
		<comments>http://www.mafoo.org.uk/wp/2008/05/19/benjamin-daniel-slowe/#comments</comments>
		<pubDate>Mon, 19 May 2008 21:53:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=38</guid>
		<description><![CDATA[Benjamin Daniel Slowe was born on Friday 16th May weighing 9lb 13oz. 
I&#8217;ve set up a webalbum for you to oggle  

]]></description>
			<content:encoded><![CDATA[<p>Benjamin Daniel Slowe was born on Friday 16th May weighing 9lb 13oz. </p>
<p>I&#8217;ve set up a <a href="http://picasaweb.google.com/matthew.slowe/BenjaminDanielSlowe">webalbum</a> for you to oggle <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src='http://lh3.ggpht.com/matthew.slowe/SC6jO3SCMaE/AAAAAAAAB-g/MDDb0flWPwg/s160-c/BenjaminDanielSlowe.jpg' alt='Benjamin' class='alignright' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2008/05/19/benjamin-daniel-slowe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reincarnation &#8220;lives&#8221; in Canterbury</title>
		<link>http://www.mafoo.org.uk/wp/2008/05/05/reincarnation-lives-in-canterbury/</link>
		<comments>http://www.mafoo.org.uk/wp/2008/05/05/reincarnation-lives-in-canterbury/#comments</comments>
		<pubDate>Mon, 05 May 2008 07:34:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=37</guid>
		<description><![CDATA[According to a Canterbury City Council press release:
Famous Victorian engineer Robert Stephenson will be at the Museum of Canterbury this Saturday (10 May) to chat to visitors and enlist their help in a series of fun experiments.
Well, who&#8217;d have thought it&#8230; a man who died in 1859 will be receiving guests next weekend at a [...]]]></description>
			<content:encoded><![CDATA[<p>According to a <a href="http://www.canterbury.gov.uk/">Canterbury City Council</a> <a href="http://www.canterbury.gov.uk/news.php?id=2131">press release</a>:</p>
<blockquote><p>Famous Victorian engineer Robert Stephenson will be at the Museum of Canterbury this Saturday (10 May) to chat to visitors and enlist their help in a series of fun experiments.</p></blockquote>
<p>Well, who&#8217;d have thought it&#8230; a <a href="http://en.wikipedia.org/wiki/Robert_Stephenson">man</a> who died in 1859 will be receiving guests next weekend at a museum <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2008/05/05/reincarnation-lives-in-canterbury/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamhost</title>
		<link>http://www.mafoo.org.uk/wp/2007/01/21/dreamhost/</link>
		<comments>http://www.mafoo.org.uk/wp/2007/01/21/dreamhost/#comments</comments>
		<pubDate>Sun, 21 Jan 2007 19:19:10 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/dreamhost/</guid>
		<description><![CDATA[    

The people who wonderfully host this website for me are Dreamhost. By clicking that link or entering the referral code FOO82 you will not be charged a setup fee! (It&#8217;ll also help keep this site running!)
]]></description>
			<content:encoded><![CDATA[<p><code>    <a href="http://www.dreamhost.com/donate.cgi?id=6454"><img border="0" alt="Donate towards my web hosting bill!" src="https://secure.newdream.net/donate1.gif" /></a><br />
</code></p>
<p>The people who wonderfully host this website for me are <a href="http://www.dreamhost.com/r.cgi?257368">Dreamhost</a>. By clicking that link or entering the referral code <tt>FOO82</tt> you will not be charged a setup fee! (It&#8217;ll also help keep this site running!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2007/01/21/dreamhost/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rays</title>
		<link>http://www.mafoo.org.uk/wp/2006/12/13/rays/</link>
		<comments>http://www.mafoo.org.uk/wp/2006/12/13/rays/#comments</comments>
		<pubDate>Wed, 13 Dec 2006 00:02:51 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=20</guid>
		<description><![CDATA[
Rays
Originally uploaded by fooflington.
Near Culnacraig, Highlands looking towards the Summer Isles.
Really like how this one came out (after tweaking a bit)
]]></description>
			<content:encoded><![CDATA[<p><a title="photo sharing" href="http://www.flickr.com/photos/fooflington/320833993/"><img src="http://static.flickr.com/125/320833993_9809534a95_m.jpg" /></a></p>
<p><a href="http://www.flickr.com/photos/fooflington/320833993/">Rays</a></p>
<p>Originally uploaded by <a href="http://www.flickr.com/people/fooflington/">fooflington</a>.</p>
<p>Near Culnacraig, Highlands looking towards the Summer Isles.</p>
<p>Really like how this one came out (after tweaking a bit)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2006/12/13/rays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gravity Defying Pebbles</title>
		<link>http://www.mafoo.org.uk/wp/2006/10/03/gravity-defying-pebbles/</link>
		<comments>http://www.mafoo.org.uk/wp/2006/10/03/gravity-defying-pebbles/#comments</comments>
		<pubDate>Tue, 03 Oct 2006 20:56:07 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=16</guid>
		<description><![CDATA[

Gravity Defying Pebbles

Originally uploaded by fooflington.

One of my recent personal favourites.
No, I didn&#8217;t stick them there  
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/fooflington/257802804/" title="photo sharing"><img src="http://static.flickr.com/93/257802804_4b71780b07_m.jpg" alt="" /></a><br />
<br />
<a href="http://www.flickr.com/photos/fooflington/257802804/">Gravity Defying Pebbles</a><br />
<br />
Originally uploaded by <a href="http://www.flickr.com/people/fooflington/">fooflington</a>.</p>
<p></p>
<p>One of my recent personal favourites.</p>
<p>No, I didn&#8217;t stick them there <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2006/10/03/gravity-defying-pebbles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CocoNut-ty</title>
		<link>http://www.mafoo.org.uk/wp/2006/09/09/coconut-ty/</link>
		<comments>http://www.mafoo.org.uk/wp/2006/09/09/coconut-ty/#comments</comments>
		<pubDate>Sat, 09 Sep 2006 14:43:30 +0000</pubDate>
		<dc:creator>Sarah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=14</guid>
		<description><![CDATA[Well, after some pottering around the hosue today we went to the beach &#8211; lots of *huge* waves &#8211; it was great fun! Foo was sitting on the beach with his (old still) camera as is his wont when he spotted something bobbing in the water.
I swam to get it and Lo and Behold it [...]]]></description>
			<content:encoded><![CDATA[<p><font color="#000099">Well, after some pottering around the hosue today we went to the beach &#8211; lots of *huge* waves &#8211; it was great fun! Foo was sitting on the beach with his (old still) camera as is his wont when he spotted something bobbing in the water.</font></p>
<p><font color="#000099">I swam to get it and Lo and Behold it was a coconut! I threw it up the beach to foo and it cracked the outside shell &#8211; foo prised it open (Cue squelching noice) and we ate half each <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The milk was still inside (until foo found it.. <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> ) ) and it was very yummy.</font></p>
<p><font color="#000099">We think it must have escaped from Herne Bay before it got used on a coconut shy &#8211; any other ideas?<br />
</font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2006/09/09/coconut-ty/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

