<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Simon Hume</title>
	
	<link>http://www.simonhume.com</link>
	<description>Geek, nerd &amp; all round good egg</description>
	<lastBuildDate>Wed, 10 Feb 2010 13:41:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SimonHume" /><feedburner:info uri="simonhume" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Using SPARQL &amp; the data.gov.uk school data</title>
		<link>http://feedproxy.google.com/~r/SimonHume/~3/I_bl1PAVKs8/</link>
		<comments>http://www.simonhume.com/2010/02/10/using-sparql-the-data-gov-uk-school-data/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 12:48:24 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Local Government]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[opendata]]></category>

		<guid isPermaLink="false">http://www.simonhume.com/?p=3572</guid>
		<description><![CDATA[So i&#8217;ve been busy beavering away on the myDistrict project I&#8217;m developing for Stratford-on-Avon District Council, and part of this project is to retrieve various datasets from numerous API&#8217;s to enable the Stratford residents to get all their local information in one place.
The basics are there, and we&#8217;ll be gathering the residents geo information when ]]></description>
			<content:encoded><![CDATA[<p>So i&#8217;ve been busy beavering away on the myDistrict project I&#8217;m developing for Stratford-on-Avon District Council, and part of this project is to retrieve various datasets from numerous API&#8217;s to enable the Stratford residents to get all their local information in one place.</p>
<p>The basics are there, and we&#8217;ll be gathering the residents geo information when they register (or upgrade their existing website account) so we are able to query all these fantastic datasets from <a href="http://www.data.gov.uk" target="_blank">www.data.gov.uk</a> and more.</p>
<p>A bit stuck at first, I asked the Open Data guru from <a href="http://www.lichfielddc.gov.uk" target="_blank">Lichfield District Council</a>, <a href="http://www.pezholio.co.uk/" target="_blank">Stuart Harrison</a>, for some pointers. Stuart was very kind as to email through some sample code and links to blogs which reference the calls needed to access and unleash the data.</p>
<p>I thought I&#8217;d share some of this with you all, do with it what you will!</p>
<p><span id="more-3572"></span></p>
<p>A few sample snippets are below, but you&#8217;ll need to replace some parts (especially the local authority district reference eg 44UE) with your own data to get accurate results.</p>
<p><span style="text-decoration: line-through;">You can find your &#8216;id&#8217; number by having a look through the </span><a href="http://statistics.data.gov.uk/doc/county/44" target="_blank"><span style="text-decoration: line-through;">data.gov.uk lists here</span></a><span style="text-decoration: line-through;">. This is the Warwickshire County starting point, you&#8217;ll need to go up a level to country and search that way. It&#8217;s a bit fiddly! Once you&#8217;re in the right county, you&#8217;ll need to look for local authority district. If I find a better way, I&#8217;ll update this post!</span></p>
<p>UPDATE: Stuart Harrison has kindly <a href="http://www.pezholio.co.uk/snaclookup.php" target="_blank">written a nice service</a> to allow you to search for your council ID (or SNAC ID for the technical amongst you).</p>
<p>So, starting on the <a href="http://services.data.gov.uk/education/sparql" target="_blank">UK Government SPARQL form input page</a>, you can start to play with the various options to tailor your results accordingly.</p>
<p>To call back all the schools in your local authority (in this case, Stratford):</p>
<blockquote><p>prefix sch-ont:  &lt;http://education.data.gov.uk/def/school/&gt;</p>
<p>SELECT ?name  ?reference  WHERE {<br />
?school a sch-ont:School;<br />
sch-ont:establishmentName ?name;<br />
sch-ont:uniqueReferenceNumber ?reference ;<br />
sch-ont:districtAdministrative</p>
<p>&lt;http://statistics.data.gov.uk/id/local-authority-district/44UE&gt; .</p>
<p>}</p>
<p>ORDER BY ?name</p></blockquote>
<p>To filter by primary school you can add an extra couple of lines:</p>
<blockquote><p>prefix sch-ont:  &lt;http://education.data.gov.uk/def/school/&gt;</p>
<p>SELECT ?name  ?reference  WHERE {<br />
?school a sch-ont:School;<br />
sch-ont:establishmentName ?name;<br />
sch-ont:uniqueReferenceNumber ?reference ;<br />
sch-ont:districtAdministrative</p>
<p>&lt;http://statistics.data.gov.uk/id/local-authority-district/44UE&gt;  ;</p>
<p>sch-ont:uniqueReferenceNumber ?reference ; sch-ont:phaseOfEducation &lt;http://education.data.gov.uk/def/school/PhaseOfEducation_Primary&gt; .</p>
<p>}</p>
<p>ORDER BY ?name</p></blockquote>
<p>And to filter just secondary schools, you can make a small change also:</p>
<blockquote><p>prefix sch-ont:  &lt;http://education.data.gov.uk/def/school/&gt;</p>
<p>SELECT ?name  ?reference  WHERE {<br />
?school a sch-ont:School;<br />
sch-ont:establishmentName ?name;<br />
sch-ont:uniqueReferenceNumber ?reference ;<br />
sch-ont:districtAdministrative</p>
<p>&lt;http://statistics.data.gov.uk/id/local-authority-district/44UE&gt;  ;</p>
<p>sch-ont:uniqueReferenceNumber ?reference ; sch-ont:phaseOfEducation &lt;http://education.data.gov.uk/def/school/PhaseOfEducation_Secondary&gt; .</p>
<p>}</p>
<p>ORDER BY ?name</p></blockquote>
<p>You could also pull back which schools have nurseries attached, very handy!</p>
<blockquote><p>prefix sch-ont: &lt;http://education.data.gov.uk/def/school/&gt;<br />
prefix xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt;</p>
<p>SELECT ?name WHERE {<br />
?school a sch-ont:School;<br />
sch-ont:establishmentName ?name;<br />
sch-ont:districtAdministrative &lt;http://statistics.data.gov.uk/id/local-authority-district/44UE&gt; ;</p>
<p>sch-ont:nurseryProvision &#8220;true&#8221;^^xsd:boolean ;</p>
<p>}</p>
<p>ORDER BY ?name</p></blockquote>
<p>Or you could pull back all the nursery schools available across the whole county. Just by tweaking a couple of search parameters:</p>
<blockquote><p>prefix sch-ont: &lt;http://education.data.gov.uk/def/school/&gt;<br />
prefix xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt;</p>
<p>SELECT ?name WHERE {<br />
?school a sch-ont:School;<br />
sch-ont:establishmentName ?name;<br />
sch-ont:localAuthority &lt;http://statistics.data.gov.uk/id/local-education-authority/937&gt; ;</p>
<p>sch-ont:nurseryProvision &#8220;true&#8221;^^xsd:boolean ;</p>
<p>}</p>
<p>ORDER BY ?name</p></blockquote>
<p>And then, if you want to get really flash, you can return the 5 closest primary schools to your location. In this example, using easting &amp; northing data and adding address data to the mix as well:</p>
<blockquote><p>prefix sch-ont: &lt;http://education.data.gov.uk/def/school/&gt;<br />
prefix space: &lt;http://data.ordnancesurvey.co.uk/ontology/spatialrelations/&gt;</p>
<p>SELECT ?name ?address1 ?address2 ?town ?postcode ?easting ?northing ?reference ?WebsiteAddress ?SCUpreferredemail</p>
<p>WHERE { ?school a sch-ont:School ; sch-ont:districtAdministrative</p>
<p>&lt;http://statistics.data.gov.uk/id/local-authority-district/44UE&gt; ;<br />
sch-ont:establishmentName ?name;<br />
sch-ont:uniqueReferenceNumber ?reference ;<br />
space:easting ?easting ;<br />
space:northing ?northing ;</p>
<p>sch-ont:uniqueReferenceNumber ?reference ; sch-ont:phaseOfEducation</p>
<p>&lt;http://education.data.gov.uk/def/school/PhaseOfEducation_Primary&gt; .</p>
<p>OPTIONAL {</p>
<p>?school sch-ont:address ?address .<br />
?address sch-ont:address1 ?address1 ;<br />
sch-ont:address2 ?address2 ;<br />
sch-ont:town ?town ;<br />
sch-ont:postcode ?postcode .</p>
<p>}</p>
<p>OPTIONAL {<br />
?school sch-ont:WebsiteAddress ?WebsiteAddress ;</p>
<p>}</p>
<p>OPTIONAL {</p>
<p>?school sch-ont:SCUpreferredemail ?SCUpreferredemail ;</p>
<p>}</p>
<p>}</p>
<p>ORDER BY ASC(</p>
<p>((419997 &#8211; ?easting)* ( 419997 &#8211; ?easting))<br />
+ ((254702 &#8211; ?northing)* ( 254702 &#8211; ?northing))</p>
<p>)<br />
LIMIT 5<br />
OFFSET 0</p></blockquote>
<p>And this one, using longitude and latitude data:</p>
<blockquote>
<div id="_mcePaste">prefix geo: &lt;http://www.w3.org/2003/01/geo/wgs84_pos#&gt;</div>
<div id="_mcePaste">prefix sch-ont:  &lt;http://education.data.gov.uk/def/school/&gt;</div>
<div id="_mcePaste">SELECT ?name ?address1 ?address2 ?town ?postcode ?lat ?long ?reference ?WebsiteAddress ?SCUpreferredemail</div>
<div id="_mcePaste">WHERE {</div>
<div id="_mcePaste">?school a sch-ont:School;</div>
<div id="_mcePaste">sch-ont:establishmentName ?name;</div>
<div id="_mcePaste">sch-ont:districtAdministrative</div>
<div id="_mcePaste">&lt;http://statistics.data.gov.uk/id/local-authority-district/44UE&gt; ;</div>
<div id="_mcePaste">sch-ont:phaseOfEducation &lt;http://education.data.gov.uk/def/school/PhaseOfEducation_Primary&gt;;</div>
<div id="_mcePaste">sch-ont:uniqueReferenceNumber ?reference ;</div>
<div id="_mcePaste">geo:lat ?lat;</div>
<div id="_mcePaste">geo:long ?long.</div>
<div id="_mcePaste">OPTIONAL {</div>
<div id="_mcePaste">?school sch-ont:address ?address .</div>
<div id="_mcePaste">?address sch-ont:address1 ?address1 ;</div>
<div id="_mcePaste">sch-ont:address2 ?address2 ;</div>
<div id="_mcePaste">sch-ont:town ?town ;</div>
<div id="_mcePaste">sch-ont:postcode ?postcode .</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">OPTIONAL {</div>
<div id="_mcePaste">?school sch-ont:WebsiteAddress ?WebsiteAddress ;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">OPTIONAL {</div>
<div id="_mcePaste">?school sch-ont:SCUpreferredemail ?SCUpreferredemail ;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ORDER BY ASC(</div>
<div id="_mcePaste">((52.190200973202 &#8211; ?lat)* ( 52.190200973202 &#8211; ?lat))</div>
<div id="_mcePaste">+ ((-1.7088976710252 &#8211; ?long)* ( -1.7088976710252 &#8211; ?long))</div>
<div id="_mcePaste">)</div>
<div id="_mcePaste">LIMIT 5</div>
<div id="_mcePaste">OFFSET 0</div>
</blockquote>
<p>This is really just touching the surface, I&#8217;ve got oodles of examples, far too many to post here.</p>
<p>If you have any questions, feel free to <a href="mailto:simon.hume@stratford-dc.gov.uk">email me</a> and I can help out where possible!</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.simonhume.com%2F2010%2F02%2F10%2Fusing-sparql-the-data-gov-uk-school-data%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.simonhume.com%2F2010%2F02%2F10%2Fusing-sparql-the-data-gov-uk-school-data%2F" height="61" width="51" /></a></div><img src="http://feeds.feedburner.com/~r/SimonHume/~4/I_bl1PAVKs8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simonhume.com/2010/02/10/using-sparql-the-data-gov-uk-school-data/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.simonhume.com/2010/02/10/using-sparql-the-data-gov-uk-school-data/</feedburner:origLink></item>
		<item>
		<title>Pluck U</title>
		<link>http://feedproxy.google.com/~r/SimonHume/~3/1fjnS3kMqug/</link>
		<comments>http://www.simonhume.com/2010/01/01/pluck-u/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 19:52:31 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Travelling]]></category>

		<guid isPermaLink="false">http://www.simonhume.com/?p=3562</guid>
		<description><![CDATA[Just having a quick flick through iPhoto at our shots from New York back in February 2009, and I stumbled across a capture I took of a fab looking take-away on the streets of Manhattan.
Obviously, the owners have a decent sense of humour.

]]></description>
			<content:encoded><![CDATA[<p>Just having a quick flick through iPhoto at our shots from New York back in February 2009, and I stumbled across a capture I took of a fab looking take-away on the streets of Manhattan.</p>
<p>Obviously, the owners have a decent sense of humour.</p>
<p><a href="http://www.simonhume.com/wp-content/uploads/2010/01/IMG_7470.jpg"><img class="alignnone size-medium wp-image-3561" title="Pluck U" src="http://www.simonhume.com/wp-content/uploads/2010/01/IMG_7470-300x200.jpg" alt="Pluck U" width="300" height="200" /></a></p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.simonhume.com%2F2010%2F01%2F01%2Fpluck-u%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.simonhume.com%2F2010%2F01%2F01%2Fpluck-u%2F" height="61" width="51" /></a></div><img src="http://feeds.feedburner.com/~r/SimonHume/~4/1fjnS3kMqug" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simonhume.com/2010/01/01/pluck-u/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.simonhume.com/2010/01/01/pluck-u/</feedburner:origLink></item>
		<item>
		<title>Procrastination</title>
		<link>http://feedproxy.google.com/~r/SimonHume/~3/tS5dlXWg-Q4/</link>
		<comments>http://www.simonhume.com/2009/12/30/procrastination/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 00:10:22 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Random Waffle]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.simonhume.com/?p=3556</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4P785j15Tzk&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/4P785j15Tzk&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.simonhume.com%2F2009%2F12%2F30%2Fprocrastination%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.simonhume.com%2F2009%2F12%2F30%2Fprocrastination%2F" height="61" width="51" /></a></div><img src="http://feeds.feedburner.com/~r/SimonHume/~4/tS5dlXWg-Q4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simonhume.com/2009/12/30/procrastination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.simonhume.com/2009/12/30/procrastination/</feedburner:origLink></item>
		<item>
		<title>WiFi problems when Upgrading iPhone</title>
		<link>http://feedproxy.google.com/~r/SimonHume/~3/whpChweLCl0/</link>
		<comments>http://www.simonhume.com/2009/12/29/wifi-problems-when-upgrading-iphone/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 16:15:04 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.simonhume.com/?p=3553</guid>
		<description><![CDATA[So, I took the plunge and upgraded my iPhone 3G to an iPhone 3GS in sparkly white with O2, and so far, so good.
I backed up and resynced the new device and everything worked as normal within an hour or so.
The only thing it appeared to lose was all my saved WiFi connections, no problem ]]></description>
			<content:encoded><![CDATA[<p>So, I took the plunge and upgraded my iPhone 3G to an iPhone 3GS in sparkly white with O2, and so far, so good.</p>
<p>I backed up and resynced the new device and everything worked as normal within an hour or so.</p>
<p>The only thing it appeared to lose was all my saved WiFi connections, no problem for the odd couple I use at home, work and at friends, but when it came to using either <a title="The Cloud" href="http://www.thecloud.net" target="_blank">The Cloud</a> or <a title="BT Openzone" href="http://www.btopenzone.com/" target="_blank">BT Openzone&#8217;s</a> free WiFi, it kept asking me to register.</p>
<p>So, entering your phone number and wham&#8230; error message!</p>
<p>It turns out, that if your change or upgrade your iPhone, you&#8217;ll also need to call O2 to ask them to reset your MAC address associated to your account.</p>
<p>I called and within 60 minutes my WiFi should be re-enabled. Though they gave me a handy tip&#8230;.</p>
<p>Save yourself waiting in a queue, if you are with O2, and experience the same issue I did, then simply send the word WIFI as an SMS to 2020 and your MAC address will be reset.</p>
<p>As a Russian meerkat would say&#8230; &#8220;Simples&#8221;</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.simonhume.com%2F2009%2F12%2F29%2Fwifi-problems-when-upgrading-iphone%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.simonhume.com%2F2009%2F12%2F29%2Fwifi-problems-when-upgrading-iphone%2F" height="61" width="51" /></a></div><img src="http://feeds.feedburner.com/~r/SimonHume/~4/whpChweLCl0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simonhume.com/2009/12/29/wifi-problems-when-upgrading-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.simonhume.com/2009/12/29/wifi-problems-when-upgrading-iphone/</feedburner:origLink></item>
		<item>
		<title>New iPhone App underway</title>
		<link>http://feedproxy.google.com/~r/SimonHume/~3/9A147daQUHg/</link>
		<comments>http://www.simonhume.com/2009/12/29/new-iphone-app-underway/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 15:13:26 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[dev]]></category>

		<guid isPermaLink="false">http://www.simonhume.com/?p=3551</guid>
		<description><![CDATA[So I&#8217;ve been busy for the last month or so on a fantastic new project for the iPhone and iPod Touch.
This will me my maiden voyage into the dark depths of the App Store, and I&#8217;m sure I have lots to look forward to when it finally gets submitted to iTunes Connect in the coming ]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been busy for the last month or so on a fantastic new project for the iPhone and iPod Touch.</p>
<p>This will me my maiden voyage into the dark depths of the App Store, and I&#8217;m sure I have lots to look forward to when it finally gets submitted to iTunes Connect in the coming weeks. Let&#8217;s just hope I don&#8217;t fall foul of some ludicrous rejection for the wrong sized icon or something equally daft.</p>
<p>The base coding and layouts are complete, just waiting on a few bits and pieces before I can submit the App.</p>
<p>Installed <a title="Pinch Media" href="http://www.pinchmedia.com" target="_blank">Pinch Media</a>&#8217;s stats, to get a good idea of App usage. Seems to be working well so far.</p>
<p>I&#8217;ll post the full details once I&#8217;m allowed to, I hope you&#8217;ll buy it!</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.simonhume.com%2F2009%2F12%2F29%2Fnew-iphone-app-underway%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.simonhume.com%2F2009%2F12%2F29%2Fnew-iphone-app-underway%2F" height="61" width="51" /></a></div><img src="http://feeds.feedburner.com/~r/SimonHume/~4/9A147daQUHg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simonhume.com/2009/12/29/new-iphone-app-underway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.simonhume.com/2009/12/29/new-iphone-app-underway/</feedburner:origLink></item>
		<item>
		<title>Starting from scratch</title>
		<link>http://feedproxy.google.com/~r/SimonHume/~3/1EgBRq4qRbw/</link>
		<comments>http://www.simonhume.com/2009/12/29/starting-from-scratch/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 14:45:11 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Random Waffle]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://www.simonhume.com/?p=3541</guid>
		<description><![CDATA[So, I decided it was about time that I starting putting together my blog properly.
I set this up over a year ago, and so far it&#8217;s consisted of my tweets. But as most of those are useless bits of information on my day-to-life, I decided to bin them all off, stick with a tiny Twitter ]]></description>
			<content:encoded><![CDATA[<p>So, I decided it was about time that I starting putting together my blog properly.</p>
<p>I set this up over a year ago, and so far it&#8217;s consisted of my tweets. But as most of those are useless bits of information on my day-to-life, I decided to bin them all off, stick with a tiny Twitter feed and just post up useful blog stuff.</p>
<p>There will be a bit of everything on here, but hopefully something that will you will find useful.</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.simonhume.com%2F2009%2F12%2F29%2Fstarting-from-scratch%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.simonhume.com%2F2009%2F12%2F29%2Fstarting-from-scratch%2F" height="61" width="51" /></a></div><img src="http://feeds.feedburner.com/~r/SimonHume/~4/1EgBRq4qRbw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simonhume.com/2009/12/29/starting-from-scratch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.simonhume.com/2009/12/29/starting-from-scratch/</feedburner:origLink></item>
	</channel>
</rss>
