<?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, 13 Mar 2010 00:05:23 +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>Outlook to Skype SMS</title>
		<link>http://informationtakesover.co.uk/2010/03/outlook-to-skype-sms/</link>
		<comments>http://informationtakesover.co.uk/2010/03/outlook-to-skype-sms/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 09:59:53 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/2010/03/outlook-to-skype-sms/</guid>
		<description><![CDATA[I wanted to know when a process on a customer&#8217;s server had failed. In fact I wanted it to wake me up in the middle of the night so that I could fix it.
About the only usable outbound communication supported by the server is email, but my phone is not email capable (well it is, [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to know when a process on a customer&#8217;s server had failed. In fact I wanted it to wake me up in the middle of the night so that I could fix it.</p>
<p>About the only usable outbound communication supported by the server is email, but my phone is not email capable (well it is, but not for work emails!).</p>
<p>So a colleague mentioned using MSN chat or Skype chat to send comments, and that set me wondering&#8230;</p>
<p><a href="https://developer.skype.com/Docs/Skype4COM" target="_blank">Skype has a COM library</a> which can be used to interface with the Skype application. (A reinstall of Skype with the Extras Manager option ticked was needed to get the library installed.) The Skype4COM library allows you to send SMS. Outlook of course allows you to apply rules to incoming mail messages, and one of these allows you to run some code in a VBA module (the <em>run a script</em> option).</p>
<p>So put it all together and we have:</p>
<ol>
<li>A script on the customer&#8217;s server will monitor another script&#8217;s progress. If it detects a particular condition it will generate an email sent to my work email account.</li>
<li>Outlook has a rule to look for specific text in the email subject (for example &#8220;ERROR&#8221;).  If it detects a suitable email, it will run a piece of VBA.</li>
<li>The VBA will call skype and send the SMS message</li>
</ol>
<h3>Installation of outlook VBA code</h3>
<ol>
<li>Add the code below to an outlook module</li>
<li>Add a reference to the Skype4COM object in the module.</li>
<li>Create a button in outlook that is linked to the macro SendTestSMS</li>
<li>Create a rule in outlook that searches your incoming mail and will &#8216;run a script&#8217; if it finds something. the script to run is the SendSMSRule VBA macro.</li>
</ol>
<h3>Running the solution</h3>
<ol>
<li>Have outlook running and make sure that macros are enabled.</li>
<li>Click the button you created in step 4 above and enter your phone number. The VBA app will remember your phone number, but you will want to send a test SMS, because you will probably have to &#8216;allow&#8217; outlook to access Skype the first time after starting outlook.  Skype will ask you for confirmation.</li>
<li>If Skype is not running, it will be started for you by the VBA code.</li>
<li>Have some credit in Skype for sending sms!</li>
<li>Wait for email&#8217;s to arrive.</li>
</ol>
<h3>The VBA Code</h3>
<pre class="brush:vb">Public Sub SendTestSMS()
    Dim strMsg As String
    Dim strContact As String
    Dim strPhoneNumber As String

    strPhoneNumber = GetSetting("SendSkypeSMS", "PhoneNumber", "Data", "")

    strContact = InputBox("Make sure you allow Outlook to use Skype when prompted in Skype." &amp; vbCrLf &amp; _
                            "You will probably have to do this for every session" &amp; vbCrLf &amp; _
                            "Enter your mobile number (+44123456789)", "Enter Phone Number", strPhoneNumber)

    SaveSetting "SendSkypeSMS", "PhoneNumber", "Data", strContact

    If Len(strContact) = 0 Then
        Exit Sub
    End If

    strMsg = "A test message from Outlook"
    subSendSMS strContact, strMsg

    strPhoneNumber = GetSetting("SendSkypeSMS", "PhoneNumber", "Data", "")
    MsgBox "Sent a text to: " &amp; strPhoneNumber
    SaveSetting "SendSkypeSMS", "PhoneNumber", "Data", strPhoneNumber

End Sub

Public Sub SendSMSRule(Item As Outlook.MailItem) 'Outlook will give us the mail item that matched the rule
    Dim strPhoneNumber As String

    strPhoneNumber = GetSetting("SendSkypeSMS", "PhoneNumber", "Data")

    If strPhoneNumber = "" Then
        MsgBox "You have to send a test SMS message so that I know what your phone number is!", vbCritical
        Exit Sub
    End If

    subSendSMS strPhoneNumber, Item.Subject

End Sub

Private Sub subSendSMS(strRecipients As String, strMessage As String)
    Dim objSkype        As SKYPE4COMLib.Skype
    Dim objSMS          As SKYPE4COMLib.SmsMessage

    Set objSkype = New SKYPE4COMLib.Skype

    If Not objSkype.Client.IsRunning Then
        objSkype.Client.Start
    End If

    objSkype.Attach , True

    Set objSMS = objSkype.CreateSms(smsMessageTypeOutgoing, strRecipients)

    With objSMS
        .Body = strMessage
        .Send
    End With

    objSkype.Convert.SmsMessageStatusToText (objaStatus)

KillObjects:
    Set objSMS = Nothing
    Set objSkype = Nothing
End Sub
</pre>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2010/03/outlook-to-skype-sms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>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>
	</channel>
</rss>
