<?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; foo</title>
	<atom:link href="http://www.mafoo.org.uk/wp/tags/foo/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>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>Pan Fried Lamb&#8217;s Heart with White Wine</title>
		<link>http://www.mafoo.org.uk/wp/2009/03/09/pan-fried-lambs-heart-with-white-wine/</link>
		<comments>http://www.mafoo.org.uk/wp/2009/03/09/pan-fried-lambs-heart-with-white-wine/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 09:29:27 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[food recipe lamb wine]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=41</guid>
		<description><![CDATA[Yesterday I made something new (for me, anyway) as a kind of experiment (I seem to have been doing this a bit recently) with some Lamb&#8217;s Heart (this comes in nice and cheap as people don&#8217;t tend to want to buy something they can identify&#8230; usually about £1.50 for three which is enough for 2-3 [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I made something new (for me, anyway) as a kind of experiment (I seem to have been doing this a bit recently) with some Lamb&#8217;s Heart (this comes in nice and cheap as people don&#8217;t tend to want to buy something they can identify&#8230; usually about £1.50 for three which is enough for 2-3 people depending on how it&#8217;s cooked).</p>
<p>Ingredients:</p>
<ul>
<li>3 Lamb&#8217;s Hearts</li>
<li>~1 glass of White Wine</li>
<li>2 cloves of Garlic (chopped)</li>
<li>Olive Oil (infused with garlic?)</li>
<li>1 Lamb Stock Cube made up with 8fl oz of water</li>
<li>Rosemary to taste</li>
<li>Black Pepper to taste</li>
<li>1 tsp Lemon Juice</li>
</ul>
<p>I started by trimming off the top of the hearts as they tend to be quite fatty and the arteries/veins are quite chewy, then diced the remainder.</p>
<p>Warm the oil in a frying pan (medium heat) with the garlic until the garlic starts to turn brown then drop in the heart and allow that to brown for 5-10 minutes.</p>
<p>Add the wine and lamb stock and allow to reduce for about 15 minutes &#8212; the juice should start to thicken slightly. About 5 minutes before serving, add the lemon juice.</p>
<p>Serve with mashed potato and vegetables.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2009/03/09/pan-fried-lambs-heart-with-white-wine/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Scotland and Mum</title>
		<link>http://www.mafoo.org.uk/wp/2008/10/05/scotland-and-mum/</link>
		<comments>http://www.mafoo.org.uk/wp/2008/10/05/scotland-and-mum/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 20:31:13 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[mum]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[sarah]]></category>
		<category><![CDATA[scotland]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=39</guid>
		<description><![CDATA[Last week, we spent some very damp days near Poolewe in the Highlands of Scotland.  There is plenty of picture evidence available here. 
The week went, more or less, thus:

Friday night: Drive from the Deep South to Inverness via Tebey and Stirling &#8212; the A9 is a fantastic road at 2am
Arrive at Inverness at [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, we spent some very damp days near <a href="http://maps.google.co.uk/maps?f=q&#038;hl=en&#038;geocode=&#038;q=Poolewe,+Achnasheen,+Highland,+UK&#038;ie=UTF8&#038;ll=57.78788,-5.62294&#038;spn=0.065518,0.299377&#038;z=12">Poolewe</a> in the Highlands of Scotland.  There is plenty of picture evidence available <a href="http://picasaweb.google.com/matthew.slowe/Poolewe2008">here</a>. </p>
<p>The week went, more or less, thus:</p>
<ol>
<li>Friday night: Drive from the Deep South to Inverness via <a href="http://westmorland.com/">Tebey</a> and Stirling &#8212; the A9 is a fantastic road at 2am</li>
<li>Arrive at Inverness at about 0700 Saturday after a nap near <a href="http://maps.google.co.uk/?ie=UTF8&#038;ll=56.932706,-4.234371&#038;spn=0.034842,0.084457&#038;z=13">Dalwhinney</a> and catch a train to the <a href="http://maps.google.co.uk/maps?f=q&#038;hl=en&#038;geocode=&#038;q=kyle+of+lochalsh&#038;ie=UTF8&#038;ll=57.284007,-5.714436&#038;spn=0.017257,0.042229&#038;z=14&#038;iwloc=addr">Kyle of Lochalsh</a> (because we can).</li>
<li>Conclude drive to cottage and unpack<img src='http://lh4.ggpht.com/matthew.slowe/SOfQr7f5MSI/AAAAAAAAC8c/QE02a4dWY4o/s400/IMG_2992.JPG' alt='Coille Bheag' class='alignnone' /></li>
<li>Go for an extremely soggy walk around <a href="http://www.nts.org.uk/Property/36/">Inverewe Gardens</a> (nearby <a href="http://en.wikipedia.org/wiki/National_Trust_for_Scotland">National Trust for Scotland</a> property with lovely trees etc).</li>
<li>Sarah and her Dad went to attempt a walk over the hills behind our cottage to <a href=" http://www.multimap.com/s/g9csJ89M">Rubha Reidh</a> lighthouse &#8230; but were forced to abandon this due to encountering a 4&#8243; deep river which the buggy was thwarted by&#8230; so, instead, we drove <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Once there, we found the old supply jetty for the lighthouse complete with former railway for whinching the supplies up the steep incline (with kart and whinch in the gorge below).</li>
<li>A trip out to the other side of <a href="http://en.wikipedia.org/wiki/Loch_Ewe">Loch Ewe</a> to see a tiny distillery and while going there found a small NATO navy base&#8230; which initially dates from when the loch was using extensively during WW2 by the Navy with a lot of the old emplacements still evident.</li>
<li>We left after lunch on Friday having seen the surrounding hills covered in snow overnight to drive back during the day to see the landscape.</li>
</ol>
<p>On the Sunday, we received a phone call to say that Mum had been taken into hospital suffering with what turned out to be a <a href="http://en.wikipedia.org/wiki/Stroke">stroke</a> hense leaving a bit earlier than we would otherwise have done. </p>
<p>She&#8217;s doing really well, having been transferred to Addenbrookes (Cambridge) a few days after it happend near Enfield. Having intially been unable to move her left side or talk at all, she&#8217;s now making reasonable sentences (while still struggling with remembering some words) and, although having issues with sensation, able to mostly move but is still quite weak and gets very tired easlily.</p>
<p>We&#8217;re taking Benji in to see her as much as possible <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><img src='http://lh4.ggpht.com/matthew.slowe/SOfPrituybI/AAAAAAAAC34/EWh0gOATs6Y/s400/IMG_2918.JPG' alt='Benji' class='alignnone' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2008/10/05/scotland-and-mum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bacon</title>
		<link>http://www.mafoo.org.uk/wp/2008/05/02/bacon/</link>
		<comments>http://www.mafoo.org.uk/wp/2008/05/02/bacon/#comments</comments>
		<pubDate>Fri, 02 May 2008 09:04:04 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[bacon]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=36</guid>
		<description><![CDATA[
See xkcd for more time wastings  
]]></description>
			<content:encoded><![CDATA[<p><a href="http://xkcd.com/418/"><img src='http://imgs.xkcd.com/comics/stove_ownership.png' alt='' class='alignnone' /></a></p>
<p><em>See <a href="http://xkcd.com/418/">xkcd</a> for more time wastings <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2008/05/02/bacon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BBC News site redesign</title>
		<link>http://www.mafoo.org.uk/wp/2008/03/31/bbc-news-site-redesign/</link>
		<comments>http://www.mafoo.org.uk/wp/2008/03/31/bbc-news-site-redesign/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 08:22:35 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[bbc]]></category>
		<category><![CDATA[foo]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/2008/03/31/bbc-news-site-redesign/</guid>
		<description><![CDATA[Sent to BBC Comments today regarding the new style on the BBC News website&#8230;
I may be in a minority, but although my screen may be 1024&#215;768, that
is not the resolution at which my applications run. I often (nee all
the time) have many applications open at once and the most efficient
way to know what&#8217;s going on [...]]]></description>
			<content:encoded><![CDATA[<p>Sent to BBC Comments today regarding the new style on the <a href="http://news.bbc.co.uk/">BBC News</a> website&#8230;</p>
<blockquote><p>I may be in a minority, but although my screen may be 1024&#215;768, that<br />
is not the resolution at which my applications run. I often (nee all<br />
the time) have many applications open at once and the most efficient<br />
way to know what&#8217;s going on in all of them is to have them layered and<br />
*not* filling the whole screen.</p>
<p>The old 600 wide layout was perfect for this and was a design concept<br />
I would reccomend to others too. The new design, however, doesn&#8217;t<br />
actually provide any more space for actual content but, instead, makes<br />
the navigation bars around the edge much &#8220;bigger&#8221; (that is wider and<br />
fatter). This means I need to scroll off the side to see some of the<br />
sidebar content (which annoys me greatly on any page &#8212; sideways<br />
scrolling should never be required).</p>
<p>Furthermore, what were considered headings further down the page under<br />
&#8220;AROUND THE UK NOW&#8221;, the section headings used to be bold and are no<br />
longer. This makes it much harder to skim down for what you&#8217;re looking<br />
for.</p>
<p>I am aware that people far cleverer than I have had a hand in creating<br />
this new design, however it is, in my opinion, a step too far into the<br />
&#8220;Web 2.0&#8243; idiom. The site was, previously, clean, concise and easy to<br />
navigate for all. That is no longer the case, I fear.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2008/03/31/bbc-news-site-redesign/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Thumpers at Dreamhost</title>
		<link>http://www.mafoo.org.uk/wp/2007/12/17/thumpers-at-dreamhost/</link>
		<comments>http://www.mafoo.org.uk/wp/2007/12/17/thumpers-at-dreamhost/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 21:33:08 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[foo]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/2007/12/17/thumpers-at-dreamhost/</guid>
		<description><![CDATA[My current webhost (Dreamhost) seem to be trying out (maybe even moving to) Thumpers from their traditional NetApps.
Thumpers are (up to) 48 Terabytes of storage in 4u&#8230; that&#8217;s pretty amazing really. 
This has had the slightly annoying side-effect that the .snapshot directory has disappeared meaning user-driven restores aren&#8217;t possible on some of their servers (the [...]]]></description>
			<content:encoded><![CDATA[<p>My current webhost (<a href="http://www.dreamhost.com/r.cgi">Dreamhost</a>) seem to be trying out (maybe even moving to) <a href="http://www.sun.com/servers/x64/x4500/">Thumpers</a> from their traditional <a href="http://www.netapp.com/">NetApps</a>.</p>
<p>Thumpers are (up to) 48 Terabytes of storage in 4u&#8230; that&#8217;s pretty amazing really. </p>
<p>This has had the slightly annoying side-effect that the <tt>.snapshot</tt> directory has disappeared meaning user-driven restores aren&#8217;t possible on some of their servers (the functionality is there on Thumper, but called <tt>.zfs</tt> and appears to be hidden further up the tree, or maybe disabled at the moment).</p>
<p>Go Go Dreamhost! <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/2007/12/17/thumpers-at-dreamhost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Open letter to Morrisons Plc.</title>
		<link>http://www.mafoo.org.uk/wp/2007/11/30/open-letter-to-morrisons-plc/</link>
		<comments>http://www.mafoo.org.uk/wp/2007/11/30/open-letter-to-morrisons-plc/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 18:13:02 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[kent]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/2007/11/30/open-letter-to-morrisons-plc/</guid>
		<description><![CDATA[I would have emailed this to them, but no email addresses are available on the corporation&#8217;s website and, when resorting to guess work, customer.services, customer.service don&#8217;t work. I then tried postemaster@morrisons.co.uk which also bounced. This is, in itself, against the requirements of having a mail system on the internet. Anyway, this is what I was [...]]]></description>
			<content:encoded><![CDATA[<p>I would have emailed this to them, but no email addresses are available on the corporation&#8217;s website and, when resorting to guess work, customer.services, customer.service don&#8217;t work. I then tried postemaster@morrisons.co.uk which also bounced. This is, in itself, against the requirements of having a mail system on the internet. Anyway, this is what I was trying to say:</p>
<blockquote><p>
Having recently moved into an area where the nearest supermarket is a<br />
Morrisons, I have been using the store more frequently than before and<br />
have noticed the following  &#8220;niggles&#8221; with the way the store is<br />
managed.</p>
<p>The store feels &#8220;cluttered&#8221;. At the ends of most of the aisles, there<br />
are extra shelves which constrict the ends of each aisle by about 40%<br />
making the apertures less than one trolley width. Also, in the same<br />
area, the main central thoroughfare is considerably thinner than it<br />
could be because of a vast array of extra product locations (products<br />
that are, often, otherwise available in other parts of the store)<br />
again, constricting the available space by 20-40%.</p>
<p>Secondly, the small (3&#8242; square) metal containers strewn throughout the<br />
store, as if by random, containing products often not in the slightest<br />
related to the aisle in which they are found just get in the way.</p>
<p>Many thanks for your time in reading this. Please let me know if you<br />
have any comments on the above.
</p></blockquote>
<p>This is the bounce:</p>
<blockquote><p>
MailMarshal has stopped the following message:</p>
<p>  Message: B475052fc0000.000000000001.0001.mml<br />
  From:    foo@mafoo.org.uk<br />
  To:      postmaster@morrisonsplc.co.uk<br />
  Subject: My point of view</p>
<p>because the email address &#8211; postmaster@morrisonsplc.co.uk &#8211; does not exist.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2007/11/30/open-letter-to-morrisons-plc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Little criminals?</title>
		<link>http://www.mafoo.org.uk/wp/2007/10/20/little-criminals/</link>
		<comments>http://www.mafoo.org.uk/wp/2007/10/20/little-criminals/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 15:54:56 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[bbc]]></category>
		<category><![CDATA[foo]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/2007/10/20/little-criminals/</guid>
		<description><![CDATA[With reference to 	this BBC news article about some boys aged 10 to 12 being hauled before the Old Bailey to answer charges of Manslaughter&#8230;
What were they doing out and in a position to do something like that without parental guidance/observation? 
The age of criminal responsibility should be at such an age as to when [...]]]></description>
			<content:encoded><![CDATA[<p>With reference to 	<a href="http://news.bbc.co.uk/1/hi/uk/7053482.stm">this BBC news article</a> about some boys aged 10 to 12 being hauled before the Old Bailey to answer charges of Manslaughter&#8230;</p>
<p>What were they doing out and in a position to do something like that without parental guidance/observation? </p>
<p>The age of criminal responsibility should be at such an age as to when children are out and about apparently with enough nouse to know right from wrong. This may be different from child to child, but it should be up to the parents to decide if their child is ready to face the big wide world and is responsible enough a young-adult to do so. If they are not up to this yet, then maybe they shouldn&#8217;t be allowed to get in to such a situation.</p>
<p>I note how the BBC article makes absolutely no reference to the parents and the children&#8217;s upbringing &#8212; did they miss out on some vital moral lessons? Were they just being kids and playing around without realising that throwing stones at other people is wrong? If so, why did they think this?</p>
<p>It makes me quite sad, actually <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>If we do raise the age of criminal responsibility, on whom would fall the responsibility for the father who was killed by these boys? No one? The parents? I don&#8217;t know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2007/10/20/little-criminals/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

