<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>adamhopkinson.co.uk</title>
	
	<link>http://www.adamhopkinson.co.uk/blog</link>
	<description />
	<pubDate>Wed, 06 Jun 2007 21:35:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/adamhopkinson" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
		<title>Add an address lookup to your web forms - Part 1</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/116344655/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2007/05/13/add-an-address-lookup-to-your-web-forms-part-1/#comments</comments>
		<pubDate>Sun, 13 May 2007 12:49:35 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/blog/2007/05/13/add-an-address-lookups-to-your-web-forms-part-1/</guid>
		<description><![CDATA[In this tutorial I&#8217;m going to show you how to add an inline address lookup to your web forms using the PostcodeAnywhere webservice and the Yahoo! Connection Manager.

Get a PCA account
First, you&#8217;ll need to sign up to Postcode Anywhere and add some credits. A beginner pack of 300 credits will set you back £25+VAT and [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I&#8217;m going to show you how to add an inline address lookup to your web forms using the <a href="http://www.postcodeanywhere.co.uk/" title="PostcodeAnywhere" >PostcodeAnywhere</a> webservice and the Yahoo! <a href="http://developer.yahoo.com/yui/connection/" title="Yahoo Connection Manager" onclick="javascript:urchinTracker ('/outbound/article/developer.yahoo.com');">Connection Manager</a>.</p>
<p><span id="more-102"></span></p>
<h3>Get a PCA account</h3>
<p>First, you&#8217;ll need to sign up to Postcode Anywhere and add some credits. A beginner pack of 300 credits will set you back £25+VAT and will get you 300 address lookups (if you only want the basic details returned for each address).</p>
<h3>Use PHP to build the webservice client</h3>
<p>An AJAX lookup works by passing some data to a script on the webserver, which performs some translation (in our case, connects to the webservice) and returns the result to the page where javascript makes the updates. Create a new php file on your webserver call getpostcode.php</p>
<p>Set up the defaults for the lookup:</p>
<pre name="code" class="php:nogutter">
&lt;?php

$account_code = 'PCA_ACCOUNT';
$license_code = 'PCA_LICENCE';

$postcode = '';
$building = '';

?&gt;</pre>
<p>Then, get the postcode and building number or name from the query string:</p>
<pre name="code" class="php:nogutter">
if ( array_key_exists('postcode', $_QUERY) ) {
	$postcode = $_QUERY['postcode'];
}

if ( array_key_exists(&#8217;building&#8217;, $_QUERY) ) {
	$building = $_QUERY['building'];
}</pre>
<p>Then we have to build the REST url that will ask the webservice for the address:</p>
<pre name="code" class="php:nogutter">
$url = 'http://services.postcodeanywhere.co.uk/csv.aspx?';
$url .= 'account_code=' . $account_code;
$url .= '&amp;license_code=' . $license_code;
$url .= '&amp;action=fetch';
$url .= '&amp;postcode=' . $postcode;
$url .= '&amp;building=' . $building;
$url .= '&amp;style=simple';</pre>
<p>Use the php file function to get the data from the webservice into a variable called $data</p>
<pre name="code" class="php:nogutter">$data = file($url);</pre>
<p>We&#8217;ve asked the webservice to return the data in csv format, so we&#8217;re expecting two lines. The first will contain the field names and the second will contain the values. First, we want to return an error if the webservice call failed:</p>
<pre name="code" class="php:nogutter">
if(!$data) {
	die('{"status":"error"}');
}</pre>
<p>The status: error message is in JSON format so that it can be understood by the javascript which will handle the address lookup.</p>
<p>The php file function returns an array, with each line in a different array element - so the first line will be in $data[0] and the second in $data[1] (arrays always start at 0 not 1!).</p>
<p>Next we want to trim any whitespace such as spaces or newline characters from the end of each line:</p>
<pre name="code" class="php:nogutter">$data[0] = trim($data[0]);
$data[1] = trim($data[1]);</pre>
<p>then we trim all extra speech marks from the start and end to help us split the lines up</p>
<pre name="code" class="php:nogutter">$data[0] = trim($data[0], &#8216;&#8221;&#8216;);
$data[1] = trim($data[1], &#8216;&#8221;&#8216;);</pre>
<p>Now we can split the lines into two arrays, one for field names and one for values</p>
<pre name="code" class="php:nogutter">$field_names = explode('","', $data[0]);
$field_values = explode(&#8217;&#8221;,&#8221;&#8216;, $data[1]);</pre>
<p>and throw up an error if the number of fields isn&#8217;t the same as the number of values</p>
<pre name="code" class="php:nogutter">if(count($field_names) != count($field_values)) {
	die('{"status":"error"}');
}</pre>
<p>Empty the $data array and loop through the field names and values, building up an array of name =&gt; value pairs</p>
<pre name="code" class="php:nogutter">$data = array();

for($counter = 0; $counter &lt; count($field_names); $counter++) {
	$data[$field_names[$counter]] = $field_values[$counter];
}</pre>
<p>PostcodeAnywhere returns a field called error_number if there&#8217;s a problem in the request. If this field exists, return an error to the form:</p>
<pre name="code" class="php:nogutter">if(array_key_exists('error_number', $data)) {
	die('{"status":"error"}');
}</pre>
<p>Finally, output the data in JSON format:</p>
<pre name="code" class="php:nogutter">$output = '';
foreach($data AS $key=&gt;$value) {
	$output .= '"' . $key . '":"' . $value . '",';
}
//$output = trim($output, ',');
$output = '{"status":"ok",' . $output . '}';
echo $output;</pre>
<p>In part 2, we&#8217;ll look at how to use the Yahoo Connection Manager to put this data on your form. Check back in a few days&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=xBtiRt8Q"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=xBtiRt8Q" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=5QDUnpWk"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=5QDUnpWk" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2007/05/13/add-an-address-lookup-to-your-web-forms-part-1/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2007/05/13/add-an-address-lookup-to-your-web-forms-part-1/</feedburner:origLink></item>
		<item>
		<title>Feed readers for OSX</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076773/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/08/23/feed-readers-for-osx/#comments</comments>
		<pubDate>Wed, 23 Aug 2006 22:19:34 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[software]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2006/08/23/feed-readers-for-osx/</guid>
		<description><![CDATA[It&#8217;s been a week since I bought my first Mac, and i&#8217;m starting to install software that I knew I could only manage a week without - the first of which is a feedreader.
I use Newsgator online and therefore have a paid FeedDemon install on my Dell laptop, as these synchronise. This means I can [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a week since I bought my first Mac, and i&#8217;m starting to install software that I knew I could only manage a week without - the first of which is a feedreader.</p>
<p>I use Newsgator online and therefore have a paid FeedDemon install on my Dell laptop, as these synchronise. This means I can read stuff in FeedDemon when i&#8217;m at my desk and Newsgator when i&#8217;m not without having to read the same items twice over.</p>
<p>This presents an obvious choice for a Mac feedreader - NetNewsWire (Lite). This also synchronises with Newsgator and so will save me a lot of time and effort during the daily catch-up.</p>
<p>I feel though that as Newsgator brought in each component, they have done the bare minimum to integrate it into the brand. Neither of the application-based readers under the Newsgator umbrella do any more than synch with Newsgator. Surely it would make more sense to have them support the same features and synchronise settings (ie flagged items, watch lists) with Newsgator instead of simply synchronising subscriptions. One step further would be to bring the same look and feel to both feedreaders - if iTunes can look the same on both Windows and Mac, then FeedDemon and NetNewsWire can.</p>
<p>RSS is a technology that is begging to be jumped on by the uneducated masses - as shown by the inclusion of feed readers in IE7 - but Newsgator don&#8217;t seem to have spotted this potential yet.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=gjDqhD8t"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=gjDqhD8t" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=B53sSPVY"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=B53sSPVY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/08/23/feed-readers-for-osx/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/08/23/feed-readers-for-osx/</feedburner:origLink></item>
		<item>
		<title>Windows-based Macs without OSX</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076774/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/08/22/windows-based-macs-without-osx/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 22:57:07 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2006/08/22/windows-based-macs-without-osx/</guid>
		<description><![CDATA[I was reading an article by Sam Gerstenzang entitled &#8216;Why Boot Camp is the Beginning of the End for Windows&#8216; (ok, so i&#8217;m four months behind on my feed-reading) and mostly I agree with his conclusion, that although Boot Camp enables more of the market to run Windows, it will eventually cause the downfall of [...]]]></description>
			<content:encoded><![CDATA[<p>I was reading an article by Sam Gerstenzang entitled &#8216;<a href="http://www.samgerstenzang.com/blog/archives/2006/04/why-boot-camp-is-the-beginning-of-the-end-for-windows"title="Why Boot Camp is the Beginning of the End for Windows"  onclick="javascript:urchinTracker ('/outbound/article/www.samgerstenzang.com');">Why Boot Camp is the Beginning of the End for Windows</a>&#8216; (ok, so i&#8217;m four months behind on my feed-reading) and mostly I agree with his conclusion, that although Boot Camp enables more of the market to run Windows, it will eventually cause the downfall of Windows itsself.</p>
<p>One thing that occurred to me is that even when (if?) Boot Camp is to be included in the upcoming OSX Leopard, users still need to run the program within OSX to install Windows on a Mac.</p>
<p>If I were Steve Jobs, I&#8217;d plan to integrate Boot Camp into the wizard that OSX launches (to configure the machine) when a new Mac is first used by the end user. If the options available were&#8230;</p>
<ol>
<li>Customise OSX</li>
<li>Customise OSX and install Windows</li>
<li>Just install Windows, and set it as the startup</li>
</ol>
<p>&#8230;Apple would be able to catch the market of users who will never want to leave Windows but do want a reliable and stylish machine. This wouldn&#8217;t necessarily speed up the downfall of Windows, but would bring Apple some of the market share currently owned by Dell, Lenovo and other large scale hardware manufacturers.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=QHEx6qSf"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=QHEx6qSf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=SzHpA7Uq"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=SzHpA7Uq" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/08/22/windows-based-macs-without-osx/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/08/22/windows-based-macs-without-osx/</feedburner:origLink></item>
		<item>
		<title>Robert Capa</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076775/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/08/19/robert-capa/#comments</comments>
		<pubDate>Sat, 19 Aug 2006 17:58:06 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2006/08/19/robert-capa/</guid>
		<description><![CDATA[Born in Budapest in 1913, Robert Capa was probably the most important war photographer of the 20th century. He covered five wars; the Spanish Civil War, the First Sino-Japanese War, the Second World War, the 1948 Arab-Israeli War and the First Indochina War.]]></description>
			<content:encoded><![CDATA[<p>Born in Budapest in 1913, Robert Capa was probably the most important war photographer of the 20th century. He covered five wars; the Spanish Civil War, the First Sino-Japanese War, the Second World War, the 1948 Arab-Israeli War and the First Indochina War.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/7/7b/Capa%2C_Death_of_a_Loyalist_Soldier.jpg" title="Death of a Soldier" alt="Death of a Soldier" align="middle" width="450" /></p>
<p>Capas&#8217; striking image entitled <em>Death of a Soldier</em> is one of his more famous, partly due to arguments in recent years over its&#8217; authenticity. The image was lauded for capturing what became known as the &#8216;point of death&#8217;, but the photographers&#8217; closeness to the subject and unbelievable timing caused some to suggest the image was staged. However, the identity of the soldier (and therefore the authenticity of the photograph) was uncovered in 2002 in an investigation largely funded by Robert Capas&#8217; brother Cornell, who is known for vehemently protecting his brothers&#8217; reputation.</p>
<p><img src="http://static.flickr.com/68/161928186_f8f4fd9c54.jpg?v=0" title="Omaha Beach" alt="Omaha Beach" align="middle" /></p>
<p>During the Second World War, Capa took his camera on assignment to  London, North Africa, Italy, the Battle of Normandy on Omaha Beach and the liberation of Paris. At Normandy, Capa reached the shore with the first wave of American soldiers and took 108 photos using two Contax II cameras with 50mm lenses. On his return to London from Omaha Beach, an employee of <span style="font-style: italic">Life</span> magazine made a mistake while hurrying to develop the images and melted all but eleven.</p>
<p>After the war, Capa returned to New York and co-founded Magnum Photo with several other war photographers including Henri Cartier-Bresson. The co-operative is still in operation, with offices in New York, Tokyo and London and is still owned wholly by the photographers who contribute.</p>
<p>In 1954, Capa was covering the First Indochina War, which would later evolve into the Vietnam War. While photographing a French patrol on May 25th, Capa stepped on a land mine and died shortly after.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=4aIrSAqS"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=4aIrSAqS" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=6uFvU6VE"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=6uFvU6VE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/08/19/robert-capa/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/08/19/robert-capa/</feedburner:origLink></item>
		<item>
		<title>Series60 mac address bug affecting Nokia N80 smart phones</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076776/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/07/22/series60-nokia-n80-mac-address-bug/#comments</comments>
		<pubDate>Sat, 22 Jul 2006 00:10:31 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2006/07/22/series60-mac-address-bug-affecting-nokia-n80-smart-phones/</guid>
		<description><![CDATA[Series 60, the operating system running on many smartphones, sometimes reports the mac address of the wireless network adapter on the phone incorrectly (enter *#62209526# and press send/call to find the reported mac address).
I think the only consumer device this will affect at present is the Nokia N80, as this is the only model with [...]]]></description>
			<content:encoded><![CDATA[<p>Series 60, the operating system running on many smartphones, sometimes reports the mac address of the wireless network adapter on the phone incorrectly (enter *#62209526# and press send/call to find the reported mac address).</p>
<p>I think the only consumer device this will affect at present is the Nokia N80, as this is the only model with built-in WiFi.</p>
<p>The good news is I&#8217;ve hacked up a quick form to fix incorrect mac addresses. If you&#8217;re having trouble accessing a network that uses mac address access lists, put the reported address in the box, click <em>Go </em>and see if it works using the new mac address.</p>
<p><a href="/tools/s60mac/" title="S60 Mac Address Tool">Click here to fix your mac address »</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=1YiyAyGC"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=1YiyAyGC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=0PjXaitL"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=0PjXaitL" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/07/22/series60-nokia-n80-mac-address-bug/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/07/22/series60-nokia-n80-mac-address-bug/</feedburner:origLink></item>
		<item>
		<title>Bite Size Standards is not a failure</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076777/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/07/13/bite-size-standards-is-not-a-failure/#comments</comments>
		<pubDate>Thu, 13 Jul 2006 21:50:01 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[code]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2006/07/13/bite-size-standards-is-not-a-failure/</guid>
		<description><![CDATA[John Oxton (of joshuaink.com) writes that his recent project Bite Size Standards is &#8216;currently a failure&#8217;, as it has received some criticism of late. The site was set up six months ago to serve little tidbits of code and understanding, and is a purely altruistic effort from John and his helpers to help a few [...]]]></description>
			<content:encoded><![CDATA[<p>John Oxton (of <a href="http://joshuaink.com/blog/755/bite-size-standards-is-currently-a-failure-but-thats-okay"title="JoshuaInk"  onclick="javascript:urchinTracker ('/outbound/article/joshuaink.com');">joshuaink.com</a>) writes that his recent project <a href="http://bitesizestandards.com/"title="Bite Size Standards"  onclick="javascript:urchinTracker ('/outbound/article/bitesizestandards.com');">Bite Size Standards</a> is &#8216;currently a failure&#8217;, as it has received some criticism of late. The site was set up six months ago to serve little tidbits of code and understanding, and is a purely altruistic effort from John and his helpers to help a few people out along the way.</p>
<p>I didn&#8217;t see any criticism along the way, and I think what is being offered is top notch. Maybe just because something hasn&#8217;t lived up to the expectations of one person doesn&#8217;t make it a failure? It&#8217;s better than most people have done&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=o0DHgzJt"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=o0DHgzJt" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=qU69hLWu"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=qU69hLWu" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/07/13/bite-size-standards-is-not-a-failure/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/07/13/bite-size-standards-is-not-a-failure/</feedburner:origLink></item>
		<item>
		<title>Site plug: JohnHopkinson.com</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076778/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/06/25/johnhopkinson/#comments</comments>
		<pubDate>Sun, 25 Jun 2006 22:36:18 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2006/06/25/johnhopkinson/</guid>
		<description><![CDATA[I&#8217;ve been helping my dad out with IT while he sets up his new venture and i&#8217;m very proud to announce the new website for John Hopkinson &#038; Co. The site is a showcase for services available and properties/land for sale. Soon we&#8217;ll be making available some papers and articles relating to chartered surveying, valuations, [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image76" alt="John Hopkinson &#038; Co" class="alignleft" src="http://www.adamhopkinson.co.uk/wordpress2/wp-content/uploads/2006/06/johnhopkinson-thumb.jpg" />I&#8217;ve been helping my dad out with IT while he sets up his new venture and i&#8217;m very proud to announce the new website for <a href="http://www.johnhopkinson.com/"title="John Hopkinson &#038; Co"  onclick="javascript:urchinTracker ('/outbound/article/www.johnhopkinson.com');">John Hopkinson &#038; Co</a>. The site is a showcase for services available and properties/land for sale. Soon we&#8217;ll be making available some papers and articles relating to chartered surveying, valuations, arbitration and inheritance tax.</p>
<p>From a design point of view, the site is all Strict XHTML valid and features RSS feeds and a few other nifty features.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=WyDc7kRF"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=WyDc7kRF" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=MlxE1aKb"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=MlxE1aKb" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/06/25/johnhopkinson/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/06/25/johnhopkinson/</feedburner:origLink></item>
		<item>
		<title>Commenting policy</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076779/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/05/21/commenting-policy/#comments</comments>
		<pubDate>Sun, 21 May 2006 18:52:38 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2006/05/21/commenting-policy/</guid>
		<description><![CDATA[Due to a large amount of spam comments (1150 in the past week!) all comments will now need to be moderated unless you have a previous comment already on the site.
I know a load of people are commenting (especially on Ice Age) - you guys should all be ok as most of you are repeat [...]]]></description>
			<content:encoded><![CDATA[<p>Due to a large amount of spam comments (1150 in the past week!) all comments will now need to be moderated <strong>unless</strong> you have a previous comment already on the site.</p>
<p>I know a load of people are commenting (especially on Ice Age) - you guys should all be ok as most of you are repeat commenters. Thanks a lot!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=YK1F2jzj"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=YK1F2jzj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=vI92tuaB"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=vI92tuaB" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/05/21/commenting-policy/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/05/21/commenting-policy/</feedburner:origLink></item>
		<item>
		<title>Robby Todino, the Time Travel Spammer</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076780/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/04/24/robby-todino-the-time-travel-spammer/#comments</comments>
		<pubDate>Mon, 24 Apr 2006 21:37:43 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2005/04/19/robby-todino-the-time-travel-spammer/</guid>
		<description><![CDATA[Robby Todino was known as the Time Travel Spammer due to his habit of sending over 100 million spam emails requesting time travel equipment. Unusually for a spammer, Todino was not trying to scam money out of innocent people, but he actually believed that time travel equipment was accessible if he reached the right people, [...]]]></description>
			<content:encoded><![CDATA[<p>Robby Todino was known as the Time Travel Spammer due to his habit of sending over 100 million spam emails requesting time travel equipment. Unusually for a spammer, Todino was not trying to scam money out of innocent people, but he actually believed that time travel equipment was accessible if he reached the right people, and he was willing to pay.</p>
<p><a href="http://en.wikipedia.org/wiki/Robby_Todino" title="Robby Todino" onclick="javascript:urchinTracker ('/outbound/article/en.wikipedia.org');">Robby Todino on Wikipedia</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=mQPlLLRN"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=mQPlLLRN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=D9Ygd39q"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=D9Ygd39q" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/04/24/robby-todino-the-time-travel-spammer/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/04/24/robby-todino-the-time-travel-spammer/</feedburner:origLink></item>
		<item>
		<title>High speed photography</title>
		<link>http://feeds.feedburner.com/~r/adamhopkinson/~3/108076781/</link>
		<comments>http://www.adamhopkinson.co.uk/blog/2006/03/14/high-speed-photography/#comments</comments>
		<pubDate>Tue, 14 Mar 2006 14:09:40 +0000</pubDate>
		<dc:creator>Adam Hopkinson</dc:creator>
		
		<category><![CDATA[asides]]></category>

		<guid isPermaLink="false">http://www.adamhopkinson.co.uk/2006/03/14/high-speed-photography/</guid>
		<description><![CDATA[Lots of photos of things exploding, shattering and fracturing

]]></description>
			<content:encoded><![CDATA[<p>Lots of photos of things <a href="http://www.adamhopkinson.co.uk/wordpress2/wp-admin/http3A2F2Fmy.opera.com2FSerbianFighter2Falbums2Fshow.dml3Fperscreen3D6026id3D27686">exploding, shattering and fracturing<br />
</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/adamhopkinson?a=1TZZq5pB"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=1TZZq5pB" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/adamhopkinson?a=hFGaJPLi"><img src="http://feeds.feedburner.com/~f/adamhopkinson?i=hFGaJPLi" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.adamhopkinson.co.uk/blog/2006/03/14/high-speed-photography/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.adamhopkinson.co.uk/blog/2006/03/14/high-speed-photography/</feedburner:origLink></item>
	</channel>
</rss>
