<?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</title>
	<atom:link href="http://informationtakesover.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://informationtakesover.co.uk</link>
	<description>Rocketing through library space...</description>
	<lastBuildDate>Sat, 06 Feb 2010 11:12:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A little bash deployment assistant</title>
		<link>http://informationtakesover.co.uk/2010/02/a-little-bash-deployment-assistant/</link>
		<comments>http://informationtakesover.co.uk/2010/02/a-little-bash-deployment-assistant/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:12:32 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2010/02/a-little-bash-deployment-assistant/</guid>
		<description><![CDATA[I wanted to copy some files from one directory to another while I am working on  my wordpress blog-in-blog plugin.  Basically I needed to copy the files checked out from svn, from the working directory, to the root of the web directory on my local machine.
Feature requirements:

Should only move a file if it has [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to copy some files from one directory to another while I am working on  my <a href="http://bit.ly/ds72eh" target="_blank">wordpress blog-in-blog plugin</a>.  Basically I needed to copy the files checked out from svn, from the working directory, to the root of the web directory on my local machine.</p>
<p>Feature requirements:</p>
<ul>
<li>Should only move a file if it has been edited. (we assume that the filesize will have changed by at least 1 byte!)</li>
<li>Should not just sit there copying all the time.</li>
<li>Should find out about all files in the specified directory.</li>
<li>Should report when it updated the file and which file was updated</li>
<li>First run should copy all files to the destination directory. (assumes I have updated my working copy from svn)</li>
</ul>
<p>So after several attempts, here is a more polished version which stores the filename and the last size of the file in a &#8216;bash hash&#8217;. OK bash doesn&#8217;t have hashes (mores the pity) but reading around on the web I found <a href="http://bit.ly/bQPeKq">this post</a> with a comment from <a href="http://www.omnisys.com/">Scott Mcdermott</a> which does the job nicely (once I had stripped offending characters from the file names).</p>
<p>So here is the full code of the deployment assistant:</p>
<pre class="brush:bash/shell">#!/bin/bash
# script to deploy code from SOURCEDIR to DELIVERDIR 

PROJECTNAME="blog-in-blog"
SOURCEDIR=blog-in-blog/trunk
DELIVERDIR=/var/www/wordpress/wp-content/plugins/blog-in-blog/
FILENAMES=blog-in-blog/trunk/*
LASTFILESIZE=0
COUNTER=1

echo "======================================================"
echo -e "delivering changes \n\tin \033[1m$SOURCEDIR\033[0m \n\tto \033[1m$DELIVERDIR\033[0m"
echo "======================================================"		

if [ -z $1 ]
then
	echo "usage$  $0 "
	exit 1
fi

hash_insert ()
{
	local name=$1 key=$2 val=$3
	eval __hash_${name}_${key}=$val
}

hash_find ()
{
	local name=$1 key=$2
	local var=__hash_${name}_${key}
	echo -n ${!var}
}

while true
do
	for FILE in $FILENAMES
	do
		FILESIZE=$(stat -c%s "$FILE")

		#tidy up file to avoid problems in variable name
		FILE=`basename $FILE`
		FILEORIG=$FILE
		FILE=`echo "$FILE" | sed 's/[\.\_-]//g'`

		LASTFILESIZE=`hash_find fileHash $FILE`
		#echo "filesize:"$FILESIZE
		#echo "lastfilesize:"$LASTFILESIZE
		if [ "$FILESIZE" != "$LASTFILESIZE" ]
		then
			echo "--- $COUNTER ---------------------------------------"
			date
			echo -e "deploying \033[1m$FILEORIG\033[0m from project $PROJECTNAME"
			echo "Size was $LASTFILESIZE bytes, now $FILESIZE bytes."
			cp $SOURCEDIR/$FILEORIG $DELIVERDIR
			hash_insert fileHash $FILE $FILESIZE
			UPDATE=1
		elif [ "$UPDATE" -ne "1" ]
		then
			UPDATE=0
		fi
	done

	if [ "$UPDATE" = 1 ]
	then
		echo "======================================================"
		let COUNTER+=1
		UPDATE=0
	fi

	sleep $1
done
#ends</pre>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2010/02/a-little-bash-deployment-assistant/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>A Day in the life&#8230;</title>
		<link>http://informationtakesover.co.uk/2010/01/a-day-in-the-life/</link>
		<comments>http://informationtakesover.co.uk/2010/01/a-day-in-the-life/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 13:14:58 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2010/01/a-day-in-the-life/</guid>
		<description><![CDATA[
A Day In The Life.  
]]></description>
			<content:encoded><![CDATA[<div class="youtube-video"><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/_SPLNcphtSw&amp;feature=youtube_gdata" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/_SPLNcphtSw&amp;feature=youtube_gdata" wmode="transparent"></embed></object></div>
<p>A Day In The Life. <img src='http://informationtakesover.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2010/01/a-day-in-the-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you remember those plastic floppy records?</title>
		<link>http://informationtakesover.co.uk/2009/12/do-you-remember-those-plastic-floppy-records/</link>
		<comments>http://informationtakesover.co.uk/2009/12/do-you-remember-those-plastic-floppy-records/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 09:00:31 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2009/12/do-you-remember-those-plastic-floppy-records/</guid>
		<description><![CDATA[Do you remember those plastic floppy records? The ones that were sent with your new Hornby Train set?  Well I found this one the other day in a 1979 Hornby Railways Catalogue. So I have recorded it for your delectation.
New Hornby train set &#8211; Bernard Cribbins
]]></description>
			<content:encoded><![CDATA[<p>Do you remember those plastic floppy records? The ones that were sent with your new Hornby Train set?  Well I found this one the other day in a 1979 Hornby Railways Catalogue. So I have recorded it for your delectation.</p>
<p><a href="http://timhodson.com/wp-content/uploads/2009/12/New Hornby train set - Bernard Cribbins.mp3">New Hornby train set &#8211; Bernard Cribbins</a></p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2009/12/do-you-remember-those-plastic-floppy-records/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>Fireworks &#8211; At The Wolverhampton Hell&#8217;s Angel&#8217;s Club House</title>
		<link>http://informationtakesover.co.uk/2009/11/fireworks-at-the-wolverhampton-hells-angels-club-house/</link>
		<comments>http://informationtakesover.co.uk/2009/11/fireworks-at-the-wolverhampton-hells-angels-club-house/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 22:17:05 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2009/11/fireworks-at-the-wolverhampton-hells-angels-club-house/</guid>
		<description><![CDATA[We keep meaning to go the Wolverhampton Hell&#8217;s Angel&#8217;s Club House Fireworks.  Every year we say we must go, it&#8217;s only a five minute walk away, but there always seem to be a reason why we don&#8217;t. This year it was someone writing an essay&#8230;
Anyway, the view from the bedroom window was still fairly spectacular [...]]]></description>
			<content:encoded><![CDATA[<p>We keep meaning to go the Wolverhampton Hell&#8217;s Angel&#8217;s Club House Fireworks.  Every year we say we must go, it&#8217;s only a five minute walk away, but there always seem to be a reason why we don&#8217;t. This year it was someone writing an essay&#8230;</p>
<p>Anyway, the view from the bedroom window was still fairly spectacular for the high mortars, so I couldn&#8217;t resist a few firework shots. Here is one to wet your appetite.</p>
<p style="text-align: center;"><a href="http://farm3.static.flickr.com/2587/4090592734_99e624e040.jpg"><img class="aligncenter" style="max-width: 800px;" src="http://farm3.static.flickr.com/2587/4090592734_99e624e040.jpg" alt="" width="400" height="266" /></a></p>
<p><a href="http://www.flickr.com/photos/informationtakesover/sets/72157622769656266/" target="_blank">View the full set</a></p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2009/11/fireworks-at-the-wolverhampton-hells-angels-club-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>npower improving accuracy &#8211; apparently.</title>
		<link>http://informationtakesover.co.uk/2009/11/npower-improving-accuracy-apparently/</link>
		<comments>http://informationtakesover.co.uk/2009/11/npower-improving-accuracy-apparently/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 10:02:23 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2009/11/npower-improving-accuracy-apparently/</guid>
		<description><![CDATA[I had a letter from npower the other day. I quote:
&#8220;To improve the accuracy of your account, we&#8217;ve changed the date when your next bill or statement will be issued.Your next bill or statement will be produced on or around 08 February 2010 and will cover a shorter or longer period than normal.&#8221;
Now that&#8217;s accurate!

]]></description>
			<content:encoded><![CDATA[<p>I had a letter from npower the other day. I quote:<br />
<blockquote>&#8220;To improve the accuracy of your account, we&#8217;ve changed the date when your next bill or statement will be issued.<br />Your next bill or statement will be produced on or around 08 February 2010 and will cover a shorter or longer period than normal.&#8221;</p></blockquote>
<p>Now that&#8217;s accurate!</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=a2fbf86f-8409-8e8d-baf8-e7ed22ad9e60" /></div>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2009/11/npower-improving-accuracy-apparently/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incase I hadn&#8217;t mentioned it&#8230;</title>
		<link>http://informationtakesover.co.uk/2009/10/incase-i-hadnt-mentioned-it/</link>
		<comments>http://informationtakesover.co.uk/2009/10/incase-i-hadnt-mentioned-it/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 20:11:15 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>
		<category><![CDATA[Press Release]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2009/10/incase-i-hadnt-mentioned-it/</guid>
		<description><![CDATA[timhodson.com has been revamped with a new look and more stuff.&#160; I am working on putting more content on there, so things will grow over time, but for now there is a taster in all but one of the areas.
Highlights might be&#8230;

The Langdale Heights page
The scripts section
Some poetry
A few photographs

And, of course, I eat my [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://timhodson.com/">timhodson.com</a> has been revamped with a new look and more stuff.&nbsp; I am working on putting more content on there, so things will grow over time, but for now there is a taster in all but one of the areas.</p>
<p>Highlights might be&#8230;
<ul>
<li>The <a target="_blank" href="http://timhodson.com/thomas-inglebrook-morgan/langdale-heights/">Langdale Heights</a> page</li>
<li>The <a bitly="BITLY_PROCESSED" target="_blank" href="http://timhodson.com/writings/scripts/">scripts</a> section</li>
<li>Some <a target="_blank" href="http://timhodson.com/writings/poems/">poetry</a></li>
<li>A few <a target="_blank" href="http://timhodson.com/photography/">photographs</a></li>
</ul>
<p>And, of course, I eat my own dog food&#8230; Several sections of the site are powered by my increasingly popular <a target="_blank" href="http://wordpress.org">wordpress</a> plugin <a target="_blank" href="http://informationtakesover.co.uk/blog-in-blog-wordpress-plugin/">blog-in-blog</a> (over 2000 downloads and counting)&nbsp; that allows you to show posts on pages as part of the content. I use it for the &#8216;Writing&#8217; subsections, and for the updates on the home page.</p>
<p>Enjoy <img src='http://informationtakesover.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=f3588c73-f7c4-815b-9899-cf9887fd269f" /></div>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2009/10/incase-i-hadnt-mentioned-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evidence that a week off is good for you.</title>
		<link>http://informationtakesover.co.uk/2009/10/evidence-that-a-week-off-is-good-for-you/</link>
		<comments>http://informationtakesover.co.uk/2009/10/evidence-that-a-week-off-is-good-for-you/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 18:38:33 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2009/10/evidence-that-a-week-off-is-good-for-you/</guid>
		<description><![CDATA[You can&#8217;t beat boys toys.   
  
Scalextric &#8211; multilevel 2

]]></description>
			<content:encoded><![CDATA[<p>You can&#8217;t beat boys toys. <img src='http://informationtakesover.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  
<div class="youtube-video"><object height="355" width="425"><param name="movie" value="http://www.youtube.com/v/7r2uT1jHJ_E&amp;feature=youtube_gdata"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/7r2uT1jHJ_E&amp;feature=youtube_gdata" type="application/x-shockwave-flash" wmode="transparent" height="355" width="425"></embed><a bitly="BITLY_PROCESSED" class="sxtvibduqeqgrtsqsjhq" href="http://www.youtube.com/v/7r2uT1jHJ_E&amp;feature=youtube_gdata"></a><a bitly="BITLY_PROCESSED" class="sxtvibduqeqgrtsqsjhq" href="http://www.youtube.com/v/7r2uT1jHJ_E&amp;feature=youtube_gdata"></a> <a bitly="BITLY_PROCESSED" class="sxtvibduqeqgrtsqsjhq" href="http://www.youtube.com/v/7r2uT1jHJ_E&amp;feature=youtube_gdata"></a><a bitly="BITLY_PROCESSED" class="sxtvibduqeqgrtsqsjhq" href="http://www.youtube.com/v/7r2uT1jHJ_E&amp;feature=youtube_gdata"></a><a bitly="BITLY_PROCESSED" class="sxtvibduqeqgrtsqsjhq" href="http://www.youtube.com/v/7r2uT1jHJ_E&amp;feature=youtube_gdata"></a><a bitly="BITLY_PROCESSED" class="sxtvibduqeqgrtsqsjhq" href="http://www.youtube.com/v/7r2uT1jHJ_E&amp;feature=youtube_gdata"></a> </object></div>
<p>Scalextric &#8211; multilevel 2</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=6516e2f0-69f8-8b9f-975c-6e5cded68ebc" /></div>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2009/10/evidence-that-a-week-off-is-good-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new mobile library solution?</title>
		<link>http://informationtakesover.co.uk/2009/09/a-new-mobile-solution/</link>
		<comments>http://informationtakesover.co.uk/2009/09/a-new-mobile-solution/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 17:59:46 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/?p=328</guid>
		<description><![CDATA[Imagine logging on to your library&#8217;s website, requesting a book, and waiting for an email to tell you that the book is now waiting for you to collect at your local library.  Not too hard to imagine huh?  But what if you couldn&#8217;t get to the library for some reason?  Maybe you work night shifts, [...]]]></description>
			<content:encoded><![CDATA[<p>Imagine logging on to your library&#8217;s website, requesting a book, and waiting for an email to tell you that the book is now waiting for you to collect at your local library.  Not too hard to imagine huh?  But what if you couldn&#8217;t get to the library for some reason?  Maybe you work night shifts, or the library is too far away, or you don&#8217;t have transport, or you have a medical condition that prevents you getting out easily.</p>
<p>So the book should come to you. Right?</p>
<p>How radically different should a mobile solution be?  What could it be?  What are the difficulties? Why would you want to be able to have some sort of book related service that was not tethered to a physical library location?</p>
<p>How about imagining that a man comes to your door, via car or scooter, and delivers a bundle of books that you chose earlier on the library&#8217;s website. Maybe that man is a volunteer with a local charity? Maybe you haven&#8217;t left your house in years, not least because there is no one to take you to the library?  Imagine that in the five minutes the man was at your doorstop, he was able to suggest that you might like Author B because you had already read several of Author A, and could also check to see if there was a copy of that book your saw on telly last night, &#8220;withering something or other&#8221;? Maybe the man at the door is also your social worker and provides books as an extra little service?</p>
<p>Imagine that you could set preferences for your book selection and that 3 of your 6 should be chosen by serendipity?</p>
<p>Imagine that you were only staying at a hotel for a couple of nights, but the hotel could get you some books to read from the local library so that they were ready for your arrival? Maybe you travelled by plane and didn&#8217;t want to carry in your baggage that 800 page hardback epic that you were in the middle of?</p>
<p>Imagine that for a small subscription you could have a selection of DVDs delivered to your door along with related reading material?</p>
<p>Imagine that a youngster on a moped with a box deliveres your reserved book to you as soon as it becomes available in the library?</p>
<p>What would a library service that was mobile mean to you?</p>
<p>This is something I have been thinking on for a while now, and I am convinced that libraries could be a whole lot better at reaching out to the &#8216;unlibraried&#8217; if they were more mobile, and if the system for managing the mobile stock was a combination of user driven on-line processes and basic functionality hosted on a hand-held device.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=70dace24-207f-849d-99cb-75ba8b42b6a7" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2009/09/a-new-mobile-solution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
