<?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>Information Takes Over &#187; Interupted</title>
	<atom:link href="http://informationtakesover.co.uk/category/everyday-life/interupted/feed/" rel="self" type="application/rss+xml" />
	<link>http://informationtakesover.co.uk</link>
	<description>Rocketing through library space...</description>
	<lastBuildDate>Wed, 14 Apr 2010 22:19:10 +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>Library offers fee tea bag</title>
		<link>http://informationtakesover.co.uk/2010/02/library-offers-fee-tea-bag/</link>
		<comments>http://informationtakesover.co.uk/2010/02/library-offers-fee-tea-bag/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 16:47:17 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Interupted]]></category>
		<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/?p=349</guid>
		<description><![CDATA[No really.
I went to collect a book I had reserved at my local Wolverhampton Library, and as I had the item issued, I was offered a free tea bag.
Bemused; politely; I said no, thank you, I don&#8217;t drink tea.
P.S. Wolverhampton Libraries, why can&#8217;t I reserve a book on-line if it is NOT on loan? quite [...]]]></description>
			<content:encoded><![CDATA[<p>No really.</p>
<p>I went to collect a book I had reserved at my <a href="http://www.wolverhampton.gov.uk/leisure_culture/libraries/branch/penn.htm" target="_blank">local Wolverhampton Library</a>, and as I had the item issued, I was offered a free tea bag.</p>
<p>Bemused; politely; I said no, thank you, I don&#8217;t drink tea.</p>
<p>P.S. Wolverhampton Libraries, why can&#8217;t I reserve a book on-line if it is NOT on loan? quite often I would prefer you to send the book to my local library if it is in the Central Library on the shelf. And I know <a href="http://talis.com/alto">your system</a> could do it!</p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2010/02/library-offers-fee-tea-bag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop motion animation</title>
		<link>http://informationtakesover.co.uk/2010/01/stop-motion-animation/</link>
		<comments>http://informationtakesover.co.uk/2010/01/stop-motion-animation/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 13:26:15 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Interupted]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2010/01/stop-motion-animation/</guid>
		<description><![CDATA[This animation is a test using a DV camera and a little script I wrote to control it.
Basically I wanted to be able to use my DV camera to take single frames, which could then be rolled into a finished video.

A little shell script follows, which does just what I need, using dvgrab and ffplay.
#!/bin/bash
# [...]]]></description>
			<content:encoded><![CDATA[<p>This animation is a test using a DV camera and a little script I wrote to control it.</p>
<p>Basically I wanted to be able to use my DV camera to take single frames, which could then be rolled into a finished video.</p>
<div class="youtube-video" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/0IrpDmZhRd4&amp;feature=youtube_gdata" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/0IrpDmZhRd4&amp;feature=youtube_gdata" wmode="transparent"></embed></object></div>
<p>A little shell script follows, which does just what I need, using dvgrab and ffplay.</p>
<pre class="brush:bash/shell">#!/bin/bash
# script to take a shot with DV camera

count=1
calldir=`pwd`
wrapdir='wraps'

function help_me
{
echo -e "HELP!"
echo -e "h - shows this help!"
echo -e "s - takes a shot"
echo -e "p - shows a preview of all the shots so far"
echo -e "w - writes the shots to a wrap file in ./$wrapdir"
echo -e "q - quits\n"
}

help_me

if [ ! -d $calldir/$wrapdir ] ; then
mkdir $calldir/$wrapdir || exit
fi

while [ "$ans" != "q" ]
do

echo -e "I'm waiting for instructions:(h|s|p|w|q)"
read -sn1 ans

if [ "$ans" = "h" ] ; then

help_me

elif [ "$ans" = "s" ] ; then

echo -e "grabbing a frame"
dvgrab --every 25 --duration 1 2&gt;/dev/null
echo -e "grabbed $count\n\a"

count=$(($count+1))

elif [ "$ans" = "p" ] ; then

echo -e "Preview"
cat $calldir/*.dv | ffplay -
echo -e "Preview ended"

elif [ "$ans" = "w" ] ; then

echo -e "Wrapping up"
echo -e "Creating in in $calldir/$wrapdir"
echo -e "Enter filename for wrap:"

read filename

cd $calldir/$wrapdir || exit

cat $calldir/*.dv | dvgrab -stdin --format dv2 $filename 2&gt;/dev/null

clear

# reset count after wrapping file
count=1

echo -e "Tidying up last wrap: deleting $calldir/*.dv"
rm $calldir/*.dv

echo -e "Preview wrap"
ffplay $calldir/$wrapdir/$filename*
echo -e "Preview wrap ended"

cd $calldir || exit

elif [ "$ans" = "q" ] ; then

echo -e "Quitting...\n"
exit

fi

done</pre>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2010/01/stop-motion-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with Audio</title>
		<link>http://informationtakesover.co.uk/2009/11/playing-with-audio/</link>
		<comments>http://informationtakesover.co.uk/2009/11/playing-with-audio/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 18:55:49 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>
		<category><![CDATA[Interupted]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/?p=342</guid>
		<description><![CDATA[I have spent quite some time recently playing with audio on my ubuntu desktop.
Last time I tried Audio on linux I found it to be a sorely disappointing affair.  That was some 6 to 12 months ago.
On my old Windows box I had an E-mu 1820, but when I bought it I didn&#8217;t know [...]]]></description>
			<content:encoded><![CDATA[<p>I have spent quite some time recently playing with audio on my ubuntu desktop.</p>
<p>Last time I tried Audio on linux I found it to be a sorely disappointing affair.  That was some 6 to 12 months ago.</p>
<p>On my old Windows box I had an E-mu 1820, but when I bought it I didn&#8217;t know that Creative didn&#8217;t like to help out by open sourcing their drivers. (How many people have bought M-Audio cards now, knowing that they can get Open Source drivers for it!) On my old Windows box I thought that card was going to stay, until week before last&#8230;</p>
<p>I had had some recent successes with getting jack and pulseaudio playing nicely. I had had a play with Ardour and loved it.  So I bit the bullet and gave it a go.</p>
<p>I now have glorious multi channel playback and recording via my E-mu audiodock, so I have taken the opportunity to throw together a few recordings of my poetry. The first couple were straight recordings with a bit of reverberation added for ambience.</p>
<p><a href="http://timhodson.com/wp-content/uploads/2009/10/virility.mp3">Virility</a></p>
<p><a href="http://timhodson.com/wp-content/uploads/2009/10/TheTreeIWishIdBeen.mp3">The Tree I Wish I&#8217;d Been</a></p>
<p>The most recent is a full on four and a half minutes of sequenced sound and samples <img src='http://informationtakesover.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://timhodson.com/wp-content/uploads/2009/10/ARudeAwakening.mp3">A Rude Awakening</a></p>
<p>If you are viewing this on the site you&#8217;ll see the above links as little embedded mp3 players, courtesy of the very smart <a href="http://wpaudio.com/" target="_blank">wpaudio</a> plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2009/11/playing-with-audio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://timhodson.com/wp-content/uploads/2009/10/virility.mp3" length="653278" type="audio/mpeg" />
<enclosure url="http://timhodson.com/wp-content/uploads/2009/10/TheTreeIWishIdBeen.mp3" length="832092" type="audio/mpeg" />
<enclosure url="http://timhodson.com/wp-content/uploads/2009/10/ARudeAwakening.mp3" length="7862454" type="audio/mpeg" />
		</item>
		<item>
		<title>Colourphon: cooking up something interesting</title>
		<link>http://informationtakesover.co.uk/2008/03/colourphon-cooking-up-something-interesting/</link>
		<comments>http://informationtakesover.co.uk/2008/03/colourphon-cooking-up-something-interesting/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 20:32:23 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Interupted]]></category>
		<category><![CDATA[Library 2.0]]></category>
		<category><![CDATA[Talis Platform]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2008/03/06/colourphon-cooking-up-something-interesting/</guid>
		<description><![CDATA[While walking round the Business park, some time ago now, Richard and I got to talking about enquiries that you get in libraries from the great unwashed book reading public.Â Â  One I mentioned was the classic:
&#8220;I borrowed a book three months ago.Â  I can&#8217;t remember who wrote it or what it was called, but it [...]]]></description>
			<content:encoded><![CDATA[<p>While walking round the <a href="http://maps.google.co.uk/maps?q=Birmingham+Business+Park,+Birmingham,+UK&amp;ie=UTF8&amp;z=16&amp;iwloc=addr" title="A pleasany dinner time walk" target="_blank">Business park</a>, some time ago now, Richard and I got to talking about enquiries that you get in libraries from the great unwashed book reading public.Â Â  One I mentioned was the classic:</p>
<blockquote><p>&#8220;I borrowed a book three months ago.Â  I can&#8217;t remember who wrote it or what it was called, but it was blue.&#8221;</p></blockquote>
<p>So we got to thinking about how you could construct a search in a modern online catalogue to help with this query.Â  And that is how <a href="http://www.colourphon.co.uk" title="Colourphon" target="_blank">www.colourphon.co.uk</a> was born.</p>
<p>We are building what will become a service, to take an image and return the most frequent colours in both a human readable and machine readable form.Â  If you have a look at the example links below, you will see results of our weighted &#8217;scan&#8217;.Â  This analysis attempts to add weight to colours that it finds most frequently toward the centre of the image.</p>
<p>Need an example?Â  These examples will take a moment or two to calculateâ€¦</p>
<p>Try this one: <a href="http://colourphon.co.uk/submitISBN.php?isbn=0006754252&amp;method=weighted&amp;submit=Submit+ISBN" title="Test ISBN search" target="_blank">Test number one</a>. An ISBN lookup.<br />
This one: <a href="http://colourphon.co.uk/submitURL.php?url=http%3A%2F%2Fwww.talis.com%2Fapplications%2Fabout%2Fassets%2Frichie_francis.jpg&amp;method=weighted&amp;submit=Submit+URL" title="Rich" target="_blank">Test number two</a>. A Weigted URL<br />
Or this one: <a href="http://colourphon.co.uk/submitURL.php?url=http%3A%2F%2Fprofile.ak.facebook.com%2Fprofile5%2F1481%2F3%2Fn508038894_6644.jpg&amp;method=weighted&amp;submit=Submit+URL" title="Tim" target="_blank">Test number three</a>. Another URL</p>
<p>Thought provoking? We&#8217;d welcome your comments over on the colourphon <a href="http://www.colourphon.co.uk/blog" title="Read the blog" target="_blank">blog.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2008/03/colourphon-cooking-up-something-interesting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SatNaver found wandering round Haringey carpark</title>
		<link>http://informationtakesover.co.uk/2008/02/satnaver-found-wandering-round-haringey-carpark/</link>
		<comments>http://informationtakesover.co.uk/2008/02/satnaver-found-wandering-round-haringey-carpark/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 10:26:31 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>
		<category><![CDATA[Interupted]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2008/02/06/satnaver-found-wandering-round-haringey-carpark/</guid>
		<description><![CDATA[
Just came across this useful looking data while looking for Haringey Central Library.  Visions of people &#8220;lost in carparks&#8221;.  Is this a prank? or is it a determined effort to come to the aid of people who never seem to be able to get out of carparks without going round twice?
The real answer [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://informationtakesover.co.uk/wp-content/uploads/2008/02/snapper1202289798540.png" title="Google map data wander"><img src="http://informationtakesover.co.uk/wp-content/uploads/2008/02/snapper1202289798540.thumbnail.png" style="float: right;margin:10px;" alt="Google map data wander" /></a></p>
<p>Just came across this <a href="http://maps.google.co.uk/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;ll=51.594762,-0.108088&amp;spn=0.002916,0.003648&amp;t=h&amp;z=18&amp;om=0&amp;msid=112438104803429095170.0004457a9e099a8125bd4" title="google map" target="_blank">useful looking data</a> while looking for Haringey Central Library.  Visions of people &#8220;lost in carparks&#8221;.  Is this a prank? or is it a determined effort to come to the aid of people who never seem to be able to get out of carparks without going round twice?</p>
<p>The real answer may be that it is <a href="http://wiki.openstreetmap.org/index.php/Copyright_Easter_Eggs">deliberate data or errors</a> to act as a fingerprint so that any infringements of rights can be traced&#8230;</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/car+park" rel="tag">car park</a>, <a href="http://technorati.com/tag/google+maps" rel="tag"> google maps</a>, <a href="http://technorati.com/tag/google" rel="tag"> google</a>, <a href="http://technorati.com/tag/GPS" rel="tag"> GPS</a>, <a href="http://technorati.com/tag/Haringey" rel="tag"> Haringey</a></p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2008/02/satnaver-found-wandering-round-haringey-carpark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A month is a long time&#8230;</title>
		<link>http://informationtakesover.co.uk/2007/08/a-month-is-a-long-time/</link>
		<comments>http://informationtakesover.co.uk/2007/08/a-month-is-a-long-time/#comments</comments>
		<pubDate>Sat, 18 Aug 2007 20:03:27 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>
		<category><![CDATA[Interupted]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2007/08/18/a-month-is-a-long-time/</guid>
		<description><![CDATA[It&#8217;s been some time since I last had time to write a quick blog post.Â  In the past month, we have moved to Wolverhampton and finally found a cinema with more than one screen; been to the Isle of Wight and visited as many National Trust and English Heritage properties as possible; One of us [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been some time since I last had time to write a quick blog post.Â  In the past month, we have moved to Wolverhampton and finally found a cinema with more than one screen; been to the Isle of Wight and visited as many National Trust and English Heritage properties as possible; One of us has started a new job, and is looking for a folding cycle to play on the trains with; the other of us is painting anything that stands still long enough.</p>
<p>But we are back online, Broadband is enabled, and wireless rules.</p>
<p>So what have you been up to in the last month?</p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2007/08/a-month-is-a-long-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>All our own work &#8211; theatre skills showcase</title>
		<link>http://informationtakesover.co.uk/2007/05/all-our-own-work-theatre-skills-showcase/</link>
		<comments>http://informationtakesover.co.uk/2007/05/all-our-own-work-theatre-skills-showcase/#comments</comments>
		<pubDate>Wed, 30 May 2007 08:50:44 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Interupted]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2007/05/30/all-our-own-work-theatre-skills-showcase/</guid>
		<description><![CDATA[Theatre Skills for Adults Showcase: All Their Own Work
This vivacious group return once more for an evening of pieces they have lovingly created. From the early stages of simply staring at the dreaded blank page to the last night and the post show blues, you can join the creative journey as it heads to it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.courtyard.org.uk/4302.html">Theatre Skills for Adults Showcase: All Their Own Work</a></p>
<blockquote><p>This vivacious group return once more for an evening of pieces they have lovingly created. From the early stages of simply staring at the dreaded blank page to the last night and the post show blues, you can join the creative journey as it heads to it&#8217;s final destination.  A rollercoaster of an evening is on offer with some of the best new work in town.19:45 Tue, 10 Jul 2007,	Courtyard Centre for the Arts, Hereford &#8211; Studio Â£2</p></blockquote>
<p>This is looking to be a good evening.  We are in the midst of rehearsals now, after all writing our own piece.  Style and theme vary greatly, from the tragic to the comic to the unnerving&#8230; but I am sure that you will laugh, cry and be challenged by these pieces.</p>
<p>Come and see us &#8211; only Â£2 &#8211; Bargain at twice the price!</p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2007/05/all-our-own-work-theatre-skills-showcase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dead &#8211; didn&#8217;t avoid mass extinction&#8230;</title>
		<link>http://informationtakesover.co.uk/2007/05/dead/</link>
		<comments>http://informationtakesover.co.uk/2007/05/dead/#comments</comments>
		<pubDate>Wed, 16 May 2007 13:42:54 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>
		<category><![CDATA[Interupted]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2007/05/16/dead/</guid>
		<description><![CDATA[On Monday I woke up full of plans for the day &#8211; only to find my PC wouldn&#8217;t boot.  Aaargh.  A quick look in the BIOS showed &#8211; or rather didn&#8217;t show &#8211; one of my hard disks to be unrecognised.  OK &#8211; now&#8217;s a good time to kick myself for not [...]]]></description>
			<content:encoded><![CDATA[<p>On Monday I woke up full of plans for the day &#8211; only to find my PC wouldn&#8217;t boot.  Aaargh.  A quick look in the BIOS showed &#8211; or rather didn&#8217;t show &#8211; one of my hard disks to be unrecognised.  OK &#8211; now&#8217;s a good time to kick myself for not organising some sort of backup&#8230;</p>
<p>So with feelings of dread &#8211; I set about trying to see just how much of a mess my hard disk was in.  Case open &#8211; seemed to be spinning &#8211; so something was happening&#8230;</p>
<p>Ok let&#8217;s try a linux boot CD, see if we can see anything from there&#8230; nope.</p>
<p>Ok lets try a parition magic boot disk and see what we get?  success, I can see the drive and I can see the partitions.  I run a few checks which all report OK. next step then is to get a new drive &#8211; then I should in theory be able to copy the partitions into the unallocated space and &#8211; fingers crossed &#8211; all should be well.</p>
<p>I bought a new disk, got it home, opened it.  Doh! should have read the label on the box more carefully, I had a SATA not a PATA drive (I had never noticed that IDE had been renamed!).  Took it back, got the IDE drive, popped it in the machine, fired up partition magic and &#8211; after several hours copying the partitions the data is all there and good.  Now I just have to write a new master boot record for the drive and all will be well.</p>
<p>Oh yeah, and I had to set a flag in windoze registry to allow <a href="http://www.48bitlba.com/">LBA-48</a> so that windoze would see all 320GB of the new drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2007/05/dead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five things&#8230;</title>
		<link>http://informationtakesover.co.uk/2007/01/five-things/</link>
		<comments>http://informationtakesover.co.uk/2007/01/five-things/#comments</comments>
		<pubDate>Mon, 15 Jan 2007 11:49:19 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Interupted]]></category>
		<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2007/01/15/five-things/</guid>
		<description><![CDATA[Not normally being one to forward office e-mail jokes indiscriminately, it comes as a nice change to feel as though you are a hand-picked chosen one.   Thanks Richard! (welcome to personal blogging by the way!)
The only complicated part may well be choosing who to tag next&#8230;
But enough, on with &#8220;reveal five things about [...]]]></description>
			<content:encoded><![CDATA[<p>Not normally being one to forward office e-mail jokes indiscriminately, it comes as a nice change to feel as though you are a hand-picked chosen one. <img src='http://informationtakesover.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks <a target="_blank" href="http://itoccurs.wordpress.com/2007/01/13/five-things/">Richard</a>! (welcome to personal blogging by the way!)<br />
The only complicated part may well be choosing who to tag next&#8230;</p>
<p>But enough, on with &#8220;reveal five things about yourself&#8221;&#8230;</p>
<ol>
<li>Lime jelly is a favourite food, along with Lime Marmalade and Chocolate Limes, so when i wrote a <abbr title="Content Management System">CMS</abbr> (very simple, and runs <a target="_blank" href="http://www.timhodson.com">www.timhodson.com</a>), I was going to call it lime jelly.  However, I couldn&#8217;t because at the time there was a site using the name.  So I plumped for a second favourite, (second as in alternative) which was <a target="_blank" href="http://teacake.timhodson.com/">teacake</a>.</li>
<li>I once was the male chorus in the <em>Sound of Music </em>Playing a member of the Von Trap household staff , a guest at the party, the Vicar, and a Nazi Youth.  It was a three and a half week run, and as well as being some what fatigued by the end of it, I never want to hear it again!</li>
<li>I am a children&#8217;s entertainer (in what spare time I have left at the moment), performing <a target="_blank" href="http://timhodson.com/index.php?nextpage=2">Albert Ironstain&#8217;s Puppet Theatre.</a></li>
<li>I am a perfectionist, and believe if a thing is worth doing, it is worth doing properly.  Consequently if I don&#8217;t think it&#8217;s worth it, you have no chance&#8230;</li>
<li><img id="image210" alt="Mincer" style="margin: 0pt 0pt 10px 10px; float: right" src="http://informationtakesover.co.uk/wp-content/uploads/2007/01/mincer.jpeg" />I collect Meat Mincers, currently having around 30. I use one that looks exactly like this one on a regular basis.  Perfect for breadcrumbs and chopped nuts, and is easier to clean than the food processor!</li>
</ol>
<p>But who to Tag?  <a href="http://blogs.open.ac.uk/Maths/ajh59/" title="OUseful Info">Tony Hirst</a>, <a href="http://bonariabiancu.wordpress.com/" title="the Geek Librarian">Bonaria Biancu</a>, <a href="http://juliehodson.co.uk" title="My dear wife!" >Jules</a>, and I think everyone else has been &#8216;it&#8217;.
</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/meme" rel="tag">meme</a>, <a href="http://technorati.com/tag/5+things" rel="tag"> 5 things</a>, <a href="http://technorati.com/tag/five+things" rel="tag"> five things</a>, <a href="http://technorati.com/tag/5things" rel="tag"> 5things</a></p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2007/01/five-things/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Down and out, but not under</title>
		<link>http://informationtakesover.co.uk/2006/01/down-and-out-but-not-under/</link>
		<comments>http://informationtakesover.co.uk/2006/01/down-and-out-but-not-under/#comments</comments>
		<pubDate>Fri, 06 Jan 2006 14:56:03 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Interupted]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2006/01/06/down-and-out-but-not-under/</guid>
		<description><![CDATA[There has been yet more outage in this corner of the web.  My hosts HDD failed on christmas eve, and it&#8217;s taken a while to get everything straightened out.  but we are back, and hopefully non too worse for wear.
]]></description>
			<content:encoded><![CDATA[<p>There has been yet more outage in this corner of the web.  My hosts HDD failed on christmas eve, and it&#8217;s taken a while to get everything straightened out.  but we are back, and hopefully non too worse for wear.</p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2006/01/down-and-out-but-not-under/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
