<?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; Technology</title>
	<atom:link href="http://informationtakesover.co.uk/category/technology/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>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>1</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>Have you ever rung the Microsoft helpdesk??</title>
		<link>http://informationtakesover.co.uk/2008/01/have-you-ever-rung-the-microsoft-helpdesk/</link>
		<comments>http://informationtakesover.co.uk/2008/01/have-you-ever-rung-the-microsoft-helpdesk/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 21:09:28 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Library]]></category>
		<category><![CDATA[Talis]]></category>
		<category><![CDATA[Talis Platform]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2008/01/25/have-you-ever-rung-the-microsoft-helpdesk/</guid>
		<description><![CDATA[I know you&#8217;re curious; yes I am settling into my support analyst role quite well.&#160; 
A modern librarian, you see,&#160; is more of a study help and technical support assistant than anything else.&#160; Less modern librarians &#8211; the ones I have known anyway &#8211; are generally pretty pleased to be able to help you too, [...]]]></description>
			<content:encoded><![CDATA[<p>I know you&#8217;re curious; yes I am settling into my support analyst role quite well.&nbsp; </p>
<p>A modern librarian, you see,&nbsp; is more of a study help and technical support assistant than anything else.&nbsp; Less modern librarians &#8211; the ones I have known anyway &#8211; are generally pretty pleased to be able to help you too, though maybe not so speedy at aligning paragraphs in word (that has got to be the most asked question near a public computer).&nbsp; </p>
<p>My new role in support for a (principly) library domain software company is much the same, although the posers put to us are more akin to &#8220;why is my authority control button not working?&#8221;.</p>
<p>Anyway &#8211; in my new found role, being the supporter rater than the supported, I am beginning to think that both ends of the phone-line have misunderstood each other.&nbsp; Maybe I work for a drastically different sort of company, I&#8217;m not sure &#8211; this is the first company I have worked for where I am not cleaning the toilets or emptying waste bins &#8211; so my perspective is perhaps a little naive. But&#8230; I am starting to wonder why the customer perceives a tension between us.&nbsp; </p>
<p>As a customer once myself, I have found that the support of people who know more than me is valuable.&nbsp; I have brought a server to it&#8217;s knees with seemingly innocuous 6-lined SQL queries.&nbsp; I know what it is like to ring someone and admit that actually I think it was me that set that script going that is hogging the server&#8217;s resources.&nbsp; I have been the one who uploaded a file full of the wrong sort of carriage-returns and stopped anyone being able to login.</p>
<p>Perhaps I shouldn&#8217;t admit all the above when my employer likely reads this.&nbsp; But I think it is this openness and ability to admit mistakes &#8211; <b>and</b> be willing to learn from them that allows me to improve.&nbsp; Whatever my job title.</p>
<p>But what else did I as a customer do?&nbsp; I trawled the company&#8217;s website in search of little titbits of information that would allow me to gain a greater understanding of how the thing worked.&nbsp; I read enough to be able to write scripts that created thousands (and I mean thousands) of loan rules governing who could have what, where and for how long.&nbsp; I asked questions on the forum.&nbsp; I joined in queries on the email list.</p>
<p>Within <a href="http://www.talis.com">Talis</a> there are exciting moves toward a <a href="http://www.talis.com/platform/">platform</a> that will allow the creation of applications that will use founding principles (if there are such a thing set in stone) of the semantic web.&nbsp; It opens a whole new set of doors and opportunities, and it makes those who think about supporting those applications &#8211; both those built by Talis and those built by others on the same platform &#8211; think about the future.&nbsp; It&#8217;s web based &#8211; it could easily be global &#8211; So how do we support it 24 &#8211; 7?</p>
<p>This is where we come back to being a librarian, I don&#8217;t work in a library any more, but the library is still in me.&nbsp; If companies are going to offer the 24 &#8211; 7 global support that the customers might require, then they are going to have to offer the following:</p>
<ul>
<li>findable resources &#8211; i.e. the content is not just searchable.</li>
<li>step by step guides / how to&#8217;s &#8211; knowledge broken down into little specific easy to digest pieces</li>
<li>and perhaps most of all solicit, capture, encourage and incorporate the experiences of the user. They use the thing more than the developers ever will.&nbsp; They know how it works for them.</li>
</ul>
<p>The mistakes I have made in the past, are mistakes that I can warn other&#8217;s of today.&nbsp; The things I have fixed in the past are the things that &#8211; if I capture them &#8211; will help somebody else tomorrow.&nbsp; </p>
<p>That&#8217;s 24 -7 support, and, much as it galls me to say&#8230;, Have you ever rung the Microsoft helpdesk?</p>
<p>
<p class="poweredbyperformancing">Powered by <a href="http://scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2008/01/have-you-ever-rung-the-microsoft-helpdesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QR-code &#8211; Neat</title>
		<link>http://informationtakesover.co.uk/2007/11/qr-code-neat/</link>
		<comments>http://informationtakesover.co.uk/2007/11/qr-code-neat/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 21:04:25 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Everyday Life]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Library 2.0]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[phones]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2007/11/13/qr-code-neat/</guid>
		<description><![CDATA[I have recently treated myself to a slighty more modern phone, and have been revisiting avenues that I went down with the old one before hitting big red technological walls.
Today I have been having another look at QR-codes, and the reader that you can download to your phone.
Why not generate them for your library?  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://informationtakesover.co.uk/wp-content/uploads/2007/11/qrcode-thcom.png" title="Visit timhodson.com"><img src="http://informationtakesover.co.uk/wp-content/uploads/2007/11/qrcode-thcom.png" style="float: right" alt="Visit timhodson.com" /></a>I have recently treated myself to a slighty more modern phone, and have been revisiting avenues that I went down with the old one before hitting big red technological walls.</p>
<p>Today I have been having another look at <a href="http://en.wikipedia.org/wiki/QR_Code" title="About QR-codes">QR-codes</a>, and the <a href="http://reader.kaywa.com/" title="Download the reader">reader</a> that you can download to your phone.</p>
<p>Why not <a href="http://qrcode.kaywa.com/" title="Code generator">generate them</a> for your library?  It could be a very simple impementation,</p>
<ul>
<li>Encode a link (URL) for each subject area (class search maybe) that you have and  place them around the library (there is the small caveat that your online catalogue should render readably on a small screen device <img src='http://informationtakesover.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</li>
<li>Or perhaps have an encoded phone number printed on the datelabel, so that people on trains who suddenly realise their book is overdue can renew by phone. (Not limited to trains of course!)</li>
<li>Or add them to the bottom of all your posters so that there is a web page offerring more event information or competition entry details.</li>
</ul>
<p>This is SO easy, and you can make a mobile users life more interesting!</p>
<p>Tell me if you are doing this already?</p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2007/11/qr-code-neat/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>Bigfoot &#8211; spore sighted&#8230;</title>
		<link>http://informationtakesover.co.uk/2007/03/bigfoot-spore-sighted/</link>
		<comments>http://informationtakesover.co.uk/2007/03/bigfoot-spore-sighted/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 21:58:28 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[Library]]></category>
		<category><![CDATA[Library 2.0]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2007/03/22/bigfoot-spore-sighted/</guid>
		<description><![CDATA[I notice with enthusiasm, that the Talis Platform Bigfoot API documentation has been released.
Must clear my schedule&#8230; now, where&#8217;s my text editor&#8230;

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/grinchmojo/426188285/" class="tt-flickr"><img src="http://farm1.static.flickr.com/163/426188285_02a5241895_m.jpg" alt="big foot" style="margin: 0pt 0pt 10px 10px; float: right" border="0" height="240" width="161" /></a>I <a href="http://blogs.talis.com/panlibus/archives/2007/03/documentation_f.php" target="_blank">notice</a> with enthusiasm, that the Talis Platform <a href="http://www.talis.com/tdn/platform/user/bigfoot" target="_blank">Bigfoot</a> <a href="http://www.talis.com/tdn/platform/reference/api/bigfoot" target="_blank">API documentation</a> has been released.</p>
<p>Must clear my schedule&#8230; now, where&#8217;s my text editor&#8230;<br />
<br style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2007/03/bigfoot-spore-sighted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Multi-library Google Map &#8211; getlibraries</title>
		<link>http://informationtakesover.co.uk/2006/07/a-multi-library-google-map-getlibraries/</link>
		<comments>http://informationtakesover.co.uk/2006/07/a-multi-library-google-map-getlibraries/#comments</comments>
		<pubDate>Wed, 05 Jul 2006 21:17:54 +0000</pubDate>
		<dc:creator>Tim Hodson</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Library 2.0]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://informationtakesover.co.uk/archives/2006/07/05/a-multi-library-google-map-getlibraries/</guid>
		<description><![CDATA[It&#8217;s been quiet here at ITO while I get on with little things like a dissertation. As a reward for days spent reading schema documents, I have been having a fiddle with Google maps and the Silkworm directory from Talis.
Here&#8217;s wot I got&#8230; getlibraries LibMap &#8211; sounds better!
A multi-library google map &#8211; the map in [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quiet here at ITO while I get on with little things like a dissertation. As a reward for days spent reading schema documents, I have been having a fiddle with <a target="_blank" href="http://www.google.com/apis/maps/">Google maps</a> and the <a target="_blank" href="http://directory.talis.com">Silkworm directory</a> from <a target="_blank" href="http://talis.com">Talis</a>.</p>
<p>Here&#8217;s wot I got&#8230; <strike><strong>getlibraries</strong></strike> LibMap &#8211; sounds better!<br />
A <a target="_blank" href="http://timhodson.com/test/maps/librariesmap6.htm">multi-library google map</a> &#8211; the <a target="_blank" href="http://libraries.herefordshire.gov.uk/libmap.htm">map in action on a real page</a>!</p>
<p>Firstly, there&#8217;s one javascript file which when called from a web page using an xhtml script tag will form a query with your parameters and send it to the TPA SPARQL endpoint. the result is fired and recieved at the same time using <a target="_blank" href="http://www.mindsack.com/uxe/dynodes/">Dynode </a>style cross-domain scripting method (I didn&#8217;t use the dynode script, just the essense of the technique). The Parameters that you can set within the .js file are as follows:</p>
<ul>
<li>key = Talis Api Key</li>
<li>identifier = identifier of a libraries collection (with more than one library*) from the Silkworm directory.</li>
<li>xsl = the URL to the XSL stylesheet explained next.</li>
</ul>
<p>*At the moment the script will not cope with a single location, but I&#8217;m working on that.</p>
<p>Secondly, there&#8217;s one XSLT file which is submitted along with a SPARQL request to the Talis Platform Api (TPA) SPARQL endpoint. This reformats the RDF output into a javascript file that encapsulates the data as a JSON object, invokes a new map container and iterates through the JSON object, showing details for all libraries found by the SPARQL query.</p>
<p>Thirdly &#8211; and lastly, there is a small amount of code to go IN your web page, whatever your webpage may be. first is a script tag, which points to getlibraries.js. the second is a DIV tag with an id=&#8221;map&#8221; attribute. You can also set the height and width attributes to define the size of container that Google Maps will use. More instructions are in the .js file.<br />
And that is it!</p>
<p>the getlibraries.js script writes another script tag that calls the data from the TPA. The javascript file can be edited to include your TPA key, the silkworm identifier for your library and the location of your copy of the XSLT file.</p>
<ol>
<li>Put the code in your page</li>
<li>Edit the js file</li>
<li>Put the js and xsl files on your server</li>
<li>Job done!</li>
</ol>
<p>I don&#8217;t for a moment think it worthy of the <a target="_blank" href="http://www.talis.com/tdn/node/1445">Mashuing Up The Library</a> competition, but give it a go and let me know!</p>
<p>A note on browsers &#8211; I have tested this in Firefox 1.5.0.4 and in IE 6. It would be interesting to know if there are any problems with other browsers?</p>
<p>Download here&#8230; <a id="p167" onmousedown="selectLink(167);" href="http://informationtakesover.co.uk/wp-content/uploads/2006/07/getlibraries.zip">getlibraries.zip</a></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/AJAX" rel="tag">AJAX</a>, <a href="http://technorati.com/tag/silkworm" rel="tag"> silkworm</a>, <a href="http://technorati.com/tag/talis" rel="tag"> talis</a>, <a href="http://technorati.com/tag/google+maps" rel="tag">google maps</a>, <a href="http://technorati.com/tag/MUTL06" rel="tag"> MUTL06</a>, <a href="http://technorati.com/tag/talis+platform" rel="tag"> talis platform</a>, <a href="http://technorati.com/tag/tdn" rel="tag"> tdn</a></p>
]]></content:encoded>
			<wfw:commentRss>http://informationtakesover.co.uk/2006/07/a-multi-library-google-map-getlibraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
