<?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; geek</title>
	<atom:link href="http://www.mafoo.org.uk/wp/tags/geek/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>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>BlackCT</title>
		<link>http://www.mafoo.org.uk/wp/2007/08/23/blackct/</link>
		<comments>http://www.mafoo.org.uk/wp/2007/08/23/blackct/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 14:28:12 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[webct]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/2007/08/23/blackct/</guid>
		<description><![CDATA[So, today was the day I had scheduled to upgrade our ageing WebCT 6 system to the latest version.
Four hours into the upgrade of the first of three updates I needed to apply, the following error is produced:
Installation error. com.webct.platform.installer.InstallerException: Unexpected error executing [webct_stat.sql].  ORA-04021: timeout occurred while waiting to lock object WEBCT.WEBCT_STAT
Great.
So I [...]]]></description>
			<content:encoded><![CDATA[<p>So, today was the day I had scheduled to upgrade our ageing WebCT 6 system to the latest version.</p>
<p>Four hours into the upgrade of the first of three updates I needed to apply, the following error is produced:</p>
<p><code>Installation error. com.webct.platform.installer.InstallerException: Unexpected error executing [webct_stat.sql].  ORA-04021: timeout occurred while waiting to lock object WEBCT.WEBCT_STAT</code></p>
<p>Great.</p>
<p>So I try and call it in, rather than log it on the web as a P1 as they recommend calling instead only to sit on hold for 5 minutes and then get dumped off to voicemail&#8230; ok, I&#8217;ll log it on the web. That was at 14:00. It&#8217;s now 15:30 and I&#8217;ve talked to an engineer who will phone me back soon with some advice. There are two more updates after this to apply&#8230;</p>
<p>Procedures involving rusty nails, hammers and kneecaps are springing to mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2007/08/23/blackct/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Digital Rights Management</title>
		<link>http://www.mafoo.org.uk/wp/2007/07/09/digital-rights-management/</link>
		<comments>http://www.mafoo.org.uk/wp/2007/07/09/digital-rights-management/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 13:51:50 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/2007/07/09/digital-rights-management/</guid>
		<description><![CDATA[Just a notice to say I&#8217;ve had a ePetition accepted on the Number 10 Website regarding the application of Digital Rights Management &#8212; the ability for software and hardware to decide if users are &#8220;allowed&#8221; to do something: We the undersigned petition the Prime Minister to make DRM and associated technologies illegal in IT hardware [...]]]></description>
			<content:encoded><![CDATA[<p>Just a notice to say I&#8217;ve had a ePetition accepted on the Number 10 Website regarding the application of Digital Rights Management &#8212; the ability for software and hardware to decide if users are &#8220;allowed&#8221; to do something: <i>We the undersigned petition the Prime Minister to make DRM and associated technologies illegal in IT hardware and software.</i></p>
<p>Below is the petition text, I encourage you to read and, if you so wish, sign your name <a href="http://petitions.pm.gov.uk/antidrm/">here</a>.</p>
<blockquote><p>Digital Rights Managment (DRM) is a technology by which content distributors can dictate what consumers can do with their content to the extent that, for example, the PC that you own at home hides things from you, refuses to do something because it thinks you&#8217;re trying to &#8220;tamper&#8221; with it, and potentially notifies the content distributor of this action.</p>
<p>Currently, Microsoft Windows Vista is pushing this technology on users with various hardware manufacturers complicit in it including Intel, ATI, NVidia, S3 and Matrox.</p>
<p>This petition asks parliament to make it illegal for software to actively disallow and subvert the operators intention even if it &#8220;thinks&#8221; that it &#8220;might&#8221; be illegal &#8212; hardware is owned by the consumer and should remain such in the same way as cars do not disallow a driver to break the 70mph speed limit on UK roads.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2007/07/09/digital-rights-management/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ok, long time&#8230;</title>
		<link>http://www.mafoo.org.uk/wp/2007/05/01/ok-long-time/</link>
		<comments>http://www.mafoo.org.uk/wp/2007/05/01/ok-long-time/#comments</comments>
		<pubDate>Tue, 01 May 2007 19:28:57 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/2007/05/01/ok-long-time/</guid>
		<description><![CDATA[I&#8217;ve written my (mostly camera) wishlist.
It&#8217;s here and automagically updates  
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written my (mostly camera) wishlist.</p>
<p>It&#8217;s <a href="http://spreadsheets.google.com/pub?key=pj0rX5WDZJaLPAZS355tTfQ&#038;output=html&#038;gid=0&#038;single=true">here</a> and automagically updates <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/05/01/ok-long-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camera Update</title>
		<link>http://www.mafoo.org.uk/wp/2006/10/23/camera-update/</link>
		<comments>http://www.mafoo.org.uk/wp/2006/10/23/camera-update/#comments</comments>
		<pubDate>Mon, 23 Oct 2006 21:04:11 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=17</guid>
		<description><![CDATA[Ok, so after much dribbling&#8230; they went and took away the decent 350D deal I was looking at (350D+18-55mm+55-200mm+grip). So, instead, I&#8217;ve gone and got myself a Canon 400D with standard 18-55mm f3.5-5.6 and dmc&#8217;s 75-300mm f4-5.6 to go with it&#8230; along with a rather swish looking backpack to keep it all in.
Oh, and &#8220;yay [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so after much dribbling&#8230; they went and took away the decent 350D deal I was looking at (350D+18-55mm+55-200mm+grip). So, instead, I&#8217;ve gone and got myself a <a href="http://www.dpreview.com/reviews/canoneos400d/">Canon 400D</a> with standard 18-55mm f3.5-5.6 and <a href="http://bogit.com/wp/">dmc</a>&#8217;s 75-300mm f4-5.6 to go with it&#8230; along with a rather swish looking backpack to keep it all in.</p>
<p>Oh, and &#8220;yay for <a href="http://jessops.com/">Jessops</a>&#8221; for price matching. Shame the only black 400d in Kent appears to have been in Maidstone&#8230; oh well, it&#8217;s in Whitstable now <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/2006/10/23/camera-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>In search of&#8230;</title>
		<link>http://www.mafoo.org.uk/wp/2006/08/27/in-search-of/</link>
		<comments>http://www.mafoo.org.uk/wp/2006/08/27/in-search-of/#comments</comments>
		<pubDate>Sun, 27 Aug 2006 21:07:04 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[foo]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.mafoo.org.uk/wp/?p=13</guid>
		<description><![CDATA[I&#8217;ve been umming and arrings (and drooling) over getting a new camera for some time now (seriously thinking since about March).
Most of this time, I&#8217;ve had my eyes on a Canon 350D with some combination of lenses. [1]
What I&#8217;m after is a low-end, but extensible DSLR which I can experiment with, have fun with and, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been umming and arrings (and drooling) over getting a new camera for some time now (seriously thinking since about March).</p>
<p>Most of this time, I&#8217;ve had my eyes on a Canon 350D with some combination of lenses. [1]</p>
<p>What I&#8217;m after is a low-end, but extensible DSLR which I can experiment with, have fun with and, hopefully, take some nice pictures. I have borrowed a number of FD lenses from my dad which I&#8217;d like to be able to use (there are converters around), at least to start with.</p>
<p>I currently own a <a href="http://www.dpreview.com/reviews/specs/Fujifilm/fuji_finepix2800z.asp">Fujifilm 2850Z</a> which I&#8217;ve had for just over 4 years now and, although it&#8217;s a great camera, it&#8217;s showing its age [2]. I&#8217;m going to keep it, if anything, for Sarah <img src='http://www.mafoo.org.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I suppose what I&#8217;m asking is: <em>Any advice?</em></p>
<p><strong>Footnotes </strong></p>
<ol>
<li>Probably either the kit Canon 18-55,55-200 lenses or the Sigma equivilant.</li>
<li>3 cyan pixles, only 2 mega-pixels&#8230;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2006/08/27/in-search-of/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>flickr</title>
		<link>http://www.mafoo.org.uk/wp/2006/08/19/flickr/</link>
		<comments>http://www.mafoo.org.uk/wp/2006/08/19/flickr/#comments</comments>
		<pubDate>Sat, 19 Aug 2006 16:02:47 +0000</pubDate>
		<dc:creator>foo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[foo]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geek]]></category>

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

]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/47054417@N00/" /></p>
<div><a href="http://flickr.com/photos/47054417@N00/"><img border="0" alt="fooflington. Get yours at flagrantdisregard.com/flickr" src="http://flagrantdisregard.com/flickr/profilewidget/recent/000000/ffffff/47054417@N00.jpg" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.mafoo.org.uk/wp/2006/08/19/flickr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

