<?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/"
	xmlns:georss="http://www.georss.org/georss" >

<channel>
	<title>Even the wrong words seem to rhyme &#187; twitter</title>
	<atom:link href="http://www.kevinblake.co.uk/tag/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinblake.co.uk</link>
	<description>a blog-life by Kevin Blake</description>
	<lastBuildDate>Thu, 13 May 2010 22:27:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Gallery2 remote API C# wrapper</title>
		<link>http://www.kevinblake.co.uk/gallery2-remote-api-c-wrapper/586/</link>
		<comments>http://www.kevinblake.co.uk/gallery2-remote-api-c-wrapper/586/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 17:59:22 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[gallery2]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=586</guid>
		<description><![CDATA[I stumbled across the Gallery.NET Toolkit on Twitter, while I should have been doing something more useful; some great work from @rmaclean (thanks for sharing / codeplexing  it). The API wraps up a lot of the Gallery2 remote services into some easy to use C# functions. Hopefully I&#8217;ll find an excuse to use this one day.]]></description>
			<content:encoded><![CDATA[<p>I stumbled across the <a href="http://gallery2.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29252" target="_blank">Gallery.NET Toolkit</a> on Twitter, while I should have been doing something more useful; some great work from <a href="http://www.twitter.com/rmaclean" target="_blank">@rmaclean</a> (thanks for sharing / codeplexing  it).</p>
<p>The API wraps up a lot of the Gallery2 remote services into some easy to use C# functions.</p>
<div id="wpshdo_1" class="wp-synhighlighter-outer"><div id="wpshdt_1" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_1"></a><a id="wpshat_1" class="wp-synhighlighter-title" href="#codesyntax_1"  onClick="javascript:wpsh_toggleBlock(1)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_1" onClick="javascript:wpsh_code(1)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.kevinblake.co.uk/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_1" onClick="javascript:wpsh_print(1)" title="Print code"><img border="0" style="border: 0 none" src="http://www.kevinblake.co.uk/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="http://www.kevinblake.co.uk/wp-content/plugins/wp-synhighlight/About.html" target="_blank" title="Show plugin information"><img border="0" style="border: 0 none" src="http://www.kevinblake.co.uk/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_1" class="wp-synhighlighter-inner" style="display: block;"><pre class="csharp" style="font-family:monospace;">Actions a <span class="sy0">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> SADev.<span class="me1">Gallery2</span>.<span class="me1">Protocol</span>.<span class="me1">Actions</span><span class="br0">&#40;</span><span class="st0">&quot;http://www.blakepics.com&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span>
<span class="kw4">string</span> authToken <span class="sy0">=</span> a.<span class="me1">Login</span><span class="br0">&#40;</span><span class="st0">&quot;*************&quot;</span>, <span class="st0">&quot;*************&quot;</span><span class="br0">&#41;</span>.<span class="me1">AuthToken</span><span class="sy0">;</span>
a.<span class="me1">FetchAlbums</span><span class="br0">&#40;</span>authToken<span class="br0">&#41;</span>.<span class="me1">Albums</span>.<span class="kw1">ForEach</span><span class="br0">&#40;</span>
    album <span class="sy0">=&gt;</span>
    <span class="br0">&#123;</span>
        Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span>album.<span class="me1">Title</span><span class="br0">&#41;</span><span class="sy0">;</span>
        a.<span class="me1">FetchImages</span><span class="br0">&#40;</span>authToken, album.<span class="me1">Name</span><span class="br0">&#41;</span>.<span class="me1">Images</span>.<span class="kw1">ForEach</span><span class="br0">&#40;</span>image <span class="sy0">=&gt;</span>
            Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="st0">&quot;<span class="es0">\t</span>&quot;</span> <span class="sy0">+</span> image.<span class="me1">Url</span><span class="br0">&#41;</span>
        <span class="br0">&#41;</span><span class="sy0">;</span>
    <span class="br0">&#125;</span>
    <span class="br0">&#41;</span><span class="sy0">;</span>
Console.<span class="me1">ReadKey</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span></pre></div></div>
<p>Hopefully I&#8217;ll find an excuse to use this one day.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/gallery2-remote-api-c-wrapper/586/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GalleryTweet &#8211; Twitter for your Gallery2</title>
		<link>http://www.kevinblake.co.uk/gallerytweet-twitter-for-your-gallery2/530/</link>
		<comments>http://www.kevinblake.co.uk/gallerytweet-twitter-for-your-gallery2/530/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 14:13:24 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blakepics]]></category>
		<category><![CDATA[gallery2]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tinyurl]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitterpic]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=530</guid>
		<description><![CDATA[This post is no longer being maintained due to budget constraints - please check the project page for the latest information: http://codex.gallery2.org/Gallery2:Modules:gallerytweet I&#8217;m releasing the updated module for Gallery2 under the name of GalleryTweet. It was prompted by a few people mentioning they couldn&#8217;t get my earlier hack to work &#8211; so I thought I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p><code><strong>This post is no longer being maintained due to budget constraints - please check the project page for the latest information: <a href="http://codex.gallery2.org/Gallery2:Modules:gallerytweet" target="_blank">http://codex.gallery2.org/Gallery2:Modules:gallerytweet</a></strong></code></p>
<p>I&#8217;m releasing the updated module for Gallery2 under the name of GalleryTweet.  It was prompted by a few people mentioning they couldn&#8217;t get my <a href="http://www.kevinblake.co.uk/twitter-your-gallery-2/423/">earlier hack</a> to work &#8211; so I thought I&#8217;d build something that was (slightly) more robust, and might stand to work on installations other than my own.</p>
<p>You might want to skip my ramblings and jump straight to the download, so here&#8217;s a link for you folks:</p>
<ul>
<li><a href="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/gallerytweet.zip">Download GalleryTweet module<br />
</a></li>
</ul>
<ol>
<li>Install by unzipping to the root of your Gallery2 installation, and activate through the plugins panel.<a href="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/activate.gif" rel="lightbox"><img class="aligncenter size-full wp-image-532" style="border: 1px solid black;" title="activate" src="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/activate.gif" alt="activate" width="668" height="96" /><br />
</a></li>
<li>Once logged in, edit your Twitter settings through the left navigation<a href="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/menu.gif" rel="lightbox"><img class="aligncenter size-full wp-image-535" style="border: 1px solid black;" title="menu" src="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/menu.gif" alt="menu" width="191" height="115" /><br />
</a></li>
<li>You should enter your twitter username / password, and the format you&#8217;d like to send your Tweets out with.<a href="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/twitter-settings.gif" rel="lightbox"><img class="aligncenter size-full wp-image-536" style="border: 1px solid black;" title="twitter-settings" src="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/twitter-settings.gif" alt="twitter-settings" width="587" height="246" /><br />
</a></li>
<li>Now while you&#8217;re browsing the Gallery, Tweet about any images using the link below the thumbnail<a href="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/tweet.gif" rel="lightbox"><img class="aligncenter size-full wp-image-533" style="border: 1px solid black;" title="tweet" src="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/tweet.gif" alt="tweet" width="398" height="324" /></a></li>
</ol>
<p>Please drop me a message on <a href="http://www.twitter.com/kevinblake" target="_blank">Twitter @kevinblake</a> if you&#8217;ve found the plugin useful, can&#8217;t get it work, or have any other feedback.  That download link again, in case you missed it the first time:</p>
<ul>
<li><a href="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/gallerytweet.zip">Download GalleryTweet module</a></li>
</ul>
<p>Happy Tweeting!</p>
<p><code><strong>This post is no longer being maintained due to budget constraints - please check the project page for the latest information: <a href="http://codex.gallery2.org/Gallery2:Modules:gallerytweet" target="_blank">http://codex.gallery2.org/Gallery2:Modules:gallerytweet</a></strong></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/gallerytweet-twitter-for-your-gallery2/530/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>April Fools 2009</title>
		<link>http://www.kevinblake.co.uk/april-fools-2009/481/</link>
		<comments>http://www.kevinblake.co.uk/april-fools-2009/481/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 20:53:09 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[april fool]]></category>
		<category><![CDATA[entertainment]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=481</guid>
		<description><![CDATA[I can&#8217;t keep the pretense up any longer, I&#8217;m not really a bodybuilder and it&#8217;s not really my new web site.  I&#8217;ve been redirecting this site to my alter-ego at kevinblake.com all day long.  Fooled ya, didn&#8217;t I? Whilst rumours of my career change might have been greatly exagerrated, it&#8217;s been another good April Fool&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t keep the pretense up any longer, I&#8217;m not really a bodybuilder and it&#8217;s not really my new web site.  I&#8217;ve been redirecting this site to my alter-ego at kevinblake.com all day long.  Fooled ya, didn&#8217;t I?</p>
<div id="attachment_482" class="wp-caption alignright" style="width: 243px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/april-fool.jpg" rel="lightbox"><img class="size-full wp-image-482" title="april-fool" src="http://www.kevinblake.co.uk/wp-content/uploads/2009/04/april-fool.jpg" alt="Kevin Blake - rumours of my career change have been greatly exagerrated" width="233" height="134" /></a><p class="wp-caption-text">Rumours of my career change have been greatly exaggerated</p></div>
<p>Whilst rumours of my career change might have been greatly exagerrated, it&#8217;s been another good April Fool&#8217;s Day worldwide as individuals and businesses have thrown off any seriousness of the rest of the year by turning to Newsbiscuit-esque stories and ideas everywhere.  April 1st is of particular interest to me as a web developer, as an opportunity to proudly display the more playful side of a company, attract new audiences, and to make people smile.</p>
<p>So here are some of my favourites (apologies if a lot of these links don&#8217;t work.  Chances are, it&#8217;s not April 1st any more).  If you&#8217;ve been <a href="http://twitter.com/kevinblake" target="_blank">following me on Twitter</a> today, you&#8217;ll have probably seen a lot of these already.</p>
<ul>
<li><a href="http://www.google.com.au/intl/en/gball/" target="_blank">Google&#8217;s gBall</a><br />
Google Australia joined the Google party early with the new pay-per-kick GPS enabled gBall.</li>
<li><a href="http://tech.slashdot.org/article.pl?sid=09/03/31/1950221&amp;from=rss" target="_blank">Slashdot &#8211; IE 8.1 supports Firefox Plugins, Rendering Engine</a><br />
Not a particularly brilliant or engaging story, but the first one I found of the year.</li>
<li><a href="http://www.google.com/intl/en_us/landing/cadie/" target="_blank">Google&#8217;s CADIE<br />
</a>The world&#8217;s first AI, took over Google sites everywhere; YouTube, Google Maps, Gmail and Google Image Search and my personal favourite &#8211; a <a href="http://www.google.com/intl/en/landing/chrome/cadie/" target="_blank">3D-glasses enabled Chrome</a>.</li>
<li><a href="http://labs.opera.com/news/2009/04/01/" target="_blank">Opera Face Gestures</a><br />
The natural progression from mouse gestures, with a priceless video.</li>
<li><a href="http://uk.gamespot.com/news/6207121.html" target="_blank">Gamespot&#8217;s Umbrella Corporation requests bailout</a><br />
One for the gamers fitting in nicely with today&#8217;s G20 protests, Resident Evil&#8217;s Umbrella Corporation have requested government bailout for its failing company.</li>
<li><a href="http://www.xbox.com/en-GB/games/a/alpinelegend/" target="_blank">XBOX&#8217;s Alpine Legend</a><br />
Another one for the gamers, and worth it for the video alone, yodel with Franz the Manz Long on Xbox Live.</li>
<li><a href="http://www.lastminute.com/site/entertainment/event-product.html%3Fskin%3Dengb.lastminute.com%26eventID%3D781239766-1%26ticketOnly%3D1%26intcmp%3Dhomepage_april_fool1_spar" target="_blank">Lastminute Spar days</a><br />
Expedia may have been offering <a href="http://www.expedia.com/daily/mars/flights-to-mars/?mcicid=Mars_home_us" target="_blank">flights to Mars</a>, but Lastminute had a far more relaxing Spar Days on offer today.</li>
</ul>
<p>And lastly, in the papers&#8230;</p>
<ul>
<li><a href="http://www.express.co.uk/posts/view/92419/The-invisible-car-Now-you-see-it-now-you-don-t" target="_blank">The Daily Express invisible car</a></li>
<li><a href="http://www.nickburcher.com/2009/04/bmw-magnetic-tow-technology-april-fools.html" target="_blank">BMW&#8217;s magnetic tow technology</a></li>
<li><a href="http://www.nickburcher.com/2009/04/waitrose-pinanas-april-fool-creative.html" target="_blank">Waitrose Pinana&#8217;s</a></li>
</ul>
<p>Do you have any favourites I&#8217;ve missed?  Don&#8217;t forget, it&#8217;s never too early to start planning next years pranks <img src='http://www.kevinblake.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/april-fools-2009/481/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter your Gallery 2</title>
		<link>http://www.kevinblake.co.uk/twitter-your-gallery-2/423/</link>
		<comments>http://www.kevinblake.co.uk/twitter-your-gallery-2/423/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 16:04:54 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blakepics]]></category>
		<category><![CDATA[gallery2]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tinyurl]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitterpic]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=423</guid>
		<description><![CDATA[Seems everyone is talking about Twitter nowadays.  The Hudson River picture launched it into the media world as the best news source on the planet, and Obama&#8216;s adoption of the tool has given America the same pleasure that Britain experienced when our Prime Minister, Stephen Fry starting getting &#8216;back in touch with the people&#8217;, in [...]]]></description>
			<content:encoded><![CDATA[<p>Seems everyone is talking about <a href="http://www.twitter.com" target="_blank">Twitter</a> nowadays.  The <a href="http://community.brandrepublic.com/blogs/gordons_republic/archive/2009/01/16/hudson-bay-air-crash-bought-to-you-by-twitter.aspx" target="_blank">Hudson River</a> picture launched it into the media world as the best news source on the planet, and <a href="http://twitter.com/BarackObama" target="_blank">Obama</a>&#8216;s adoption of the tool has given America the same pleasure that Britain experienced when our Prime Minister, <a href="http://twitter.com/stephenfry" target="_blank">Stephen Fry</a> starting getting &#8216;back in touch with the people&#8217;, in October 2008.</p>
<p>The Hudson River picture wouldn&#8217;t have been possible without the non-affiliated <a href="http://www.twitpic.com" target="_blank">TwitPic</a> &#8211; which never truly got the recognition it deserved.  Without it, the infamous picture would have only been a 140 character description, and nobody will have noticed or cared.  Still, that&#8217;s the nature of buzzwords I guess.  If they don&#8217;t cause a buzz, they&#8217;re just words.</p>
<p>Anyway, TwitPic is yet another disparate service like <a href="http://www.flickr.com" target="_blank">Flickr</a>, <a href="http://www.panoramio.com/" target="_blank">Panoramio</a> or <a href="http://www.facebook.com" target="_blank">Facebook</a> that&#8217;s had me tempted away from uploading some of my photos to Gallery2 / Blakepics.  With Facebook, I&#8217;ve integrated my own application there; Panoramio and Flickr, stolen the best parts of each.</p>
<p>And now with a hack to the tagging module in Gallery 2 I can emulate all I want from TwitPic as well, and tuck another service onto the shelf at the back at the cupboard.  So as usual, I thought I&#8217;d share.</p>
<p><strong>What it is&#8230;</strong></p>
<ul>
<li>Tweet any photos on Gallery just by adding the tag &#8216;twitter&#8217; to your photo.</li>
<li>Automatically takes the photos title as your Tweet text.</li>
<li>Processes all URLs through TinyURL, giving you a warm and fuzzy Tiny URL</li>
</ul>
<p><strong>What it isn&#8217;t&#8230;</strong></p>
<ul>
<li>A seamless Gallery2 module.  There&#8217;s some hacking to do.</li>
<li>Multi-user.  If you share your Gallery, there&#8217;s some more work to do.</li>
</ul>
<p>If you make improvements in these areas or any others &#8211; please let me know <img src='http://www.kevinblake.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Requirements</strong></p>
<ul>
<li><a href="http://gallery.menalto.com/" target="_blank">Gallery 2</a></li>
<li>Tagging module</li>
<li>Twitter account</li>
</ul>
<p><strong>Things you need to do</strong></p>
<ol>
<li><a href="http://www.kevinblake.co.uk/wp-content/uploads/2009/02/twittertag.zip">Download my Twitter Tags class</a></li>
<li>Unzip to the root of your Gallery installation</li>
<li>Edit /modules/tags/classes/TwitterTag.class with your twitter username/pass, and Gallery URL.</li>
<li>Edit /modules/tags/classes/TagsHelper.class
<ol>
<li> Add this just above the line &#8216;class TagsHelper&#8217;<br />
<code>GalleryCoreApi::requireOnce('modules/tags/classes/TwitterTag.class');</code></li>
<li> Then just above<br />
<code> return TagsHelper::assignTagById($itemId, $tagId);</code><br />
Add<br />
<code> TwitterTag::Tweet($itemId, $tagId);</code></li>
</ol>
</li>
<li>Tag any photos you want to appear on Twitter with &#8216;twitter&#8217;.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/twitter-your-gallery-2/423/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Random thoughts from the north of Vietnam</title>
		<link>http://www.kevinblake.co.uk/random-thoughts-from-the-north-of-vietnam/360/</link>
		<comments>http://www.kevinblake.co.uk/random-thoughts-from-the-north-of-vietnam/360/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 14:58:56 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[vietnam]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=360</guid>
		<description><![CDATA[Some random small things I&#8217;ve picked up along the way was going to twitter, but decided there were too many, and they&#8217;re too long&#8230; Eating snakes&#8230; One of the hostel legends &#8211; first you drink the bile, then the blood, then you eat the beating heart.  Apparently you can feel the heart beating in your [...]]]></description>
			<content:encoded><![CDATA[<p>Some random small things I&#8217;ve picked up along the way was going to twitter, but decided there were too many, and they&#8217;re too long&#8230;</p>
<hr />Eating snakes&#8230; One of the hostel legends &#8211; first you drink the bile, then the blood, then you eat the beating heart.  Apparently you can feel the heart beating in your stomach.  There&#8217;s a place just outside of Hanoi you can try it.  I&#8217;d only do it at the end of the travels though, nothing ruins a holiday like being violently ill.</p>
<p>Snake wine.  It has a dead snake dead scorpion in it.  And looks a lot like olive oil.  The rumours are that if you drink the whole bottle, the poison makes you blind.  I say put it in smaller bottles.</p>
<p>Even though the hotel I booked in Hue was full, I can still use their free wifi if I go over by the balcony.  Well, it&#8217;s only across the street.</p>
<p>The same hotel should change their router password&#8230; I can login with admin / admin.  You get this a lot in places that offer free wifi, why don&#8217;t all routers force you through changing the password when you first install it?  Plug and play that creates a rubbish system is still a rubbish system.</p>
<p>Vietnamese cities don&#8217;t have many massive landmarks that I can use to orientate myself.  The tall narrow streets are not helping.</p>
<p>So, my BGT-31 GPS has been a lifesaver.  Once I find a place like a hotel or a train station &#8211; I can mark it, and use it to create way points later on.    It tells me which direction I&#8217;m heading in; North, East, South or West, which I should be heading in, and how far it is.  It also makes me feel a bit like a ghostbuster if I hold it out in front of me while I&#8217;m walking.</p>
<p>I can&#8217;t sleep on trains if I&#8217;m lying down.  I had the same restless nights when I was in Croatia.  Remarkably falling asleep sitting up and talking to myself on the way home from work has never been a problem.</p>
<p>I often pass by Facebook requests from old school friends that I can&#8217;t remember from 5 years of school.  But I&#8217;ll happily add someone I&#8217;ve spoken to for only 15 minutes in a hostel.  And I still have to ask their name again, because &#8220;hey man&#8221; never returns any successful matches.</p>
<p>There are a lot of good rock bars in London that I don&#8217;t know about.  And it&#8217;s embarrassing finding that out from a Swedish bloke who lived there for only a year.</p>
<p>Seeing a live pig tied upside down on the back of a motorcycle was well worth seeing, no matter what the animal rights activists say.</p>
<p>I&#8217;m beginning to understand the phrase &#8220;more people die every year crossing the street, than do flying&#8221;&#8230; Londoners should still be afraid of flying.</p>
<p>The book sellers on the streets have offered me huge stacks of Lonely Planet Guides, but never Rough Guides.  I wonder how accurate their counterfeiting is, or wether the books contain helpful gems such as &#8220;you should stay at my place, very cheap&#8221;, and: &#8220;Always buy lonely planet guides from the local street book people.  They are cheaper and more accurate.&#8221;  All said and done, as Mike (I won&#8217;t take the credit) &#8211; at least they&#8217;re selling something tourists will find useful, and not some useless cheap tat.</p>
<hr />That&#8217;s the lot.  It&#8217;s a bit of a strange format for me to add on the blog and I blame twitter.  It also makes me want to include some poem about friendship or love at the bottom, and request you send it to 5 of your closest friends.</p>
<p>Remember, if you get it back &#8211; someone loves you too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/random-thoughts-from-the-north-of-vietnam/360/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<georss:point>21.0340996 105.8371964</georss:point>	</item>
		<item>
		<title>Twitter Convergence &#8211; Ten Top Twitter Tools</title>
		<link>http://www.kevinblake.co.uk/twitter-convergence-ten-top-twitter-tools/257/</link>
		<comments>http://www.kevinblake.co.uk/twitter-convergence-ten-top-twitter-tools/257/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 11:07:56 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=257</guid>
		<description><![CDATA[Two months ago, I had no use for Twitter.  Now it seems it&#8217;s everywhere, on everything and no device can survive without that talkative little bird.  So I thought I&#8217;d gather together all the different applications I&#8217;ve managed to dig out and install so far. TwitterFeed &#8211; Update Twitter automatically from this blog &#8211; both [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_258" class="wp-caption alignright" style="width: 160px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/fridge-twitter.jpg" rel="lightbox"><img class="size-thumbnail wp-image-258" title="Twitter from your Fridge" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/09/fridge-twitter-150x150.jpg" alt="i twitter from my fridge" width="150" height="150" /></a><p class="wp-caption-text">&#39;i twitter from my fridge&#39; ... Still waiting...</p></div>
<p><a href="http://www.kevinblake.co.uk/twitter-conversation-in-the-machine/184/">Two months ago</a>, I had no use for Twitter.  Now it seems it&#8217;s everywhere, on everything and no device can survive without that talkative little bird.  So I thought I&#8217;d gather together all the different applications I&#8217;ve managed to dig out and install so far.</p>
<ol>
<li><a href="http://www.twitterfeed.com/" target="_blank">TwitterFeed</a> &#8211; Update Twitter automatically from this blog &#8211; both the posts and currently reading RSS feeds.</li>
<li><a href="http://www.msgpluslive.net/scripts/view/315-Twit4Live/">Twit4Live</a> (<a href="http://www.msgplus.net/" target="_blank">MSN Live Messenger Plus!</a>) &#8211; Update your status from within any messenger chat window with /twitter &lt;tweet&gt;.</li>
<li><a href="http://www.msgplus.net/scripts/view/282-rss2psm-Nutz/" target="_blank">rss2psm Nutz</a> (<a href="http://www.msgplus.net/" target="_blank">MSN Live Messenger Plus!</a>) &#8211; A slightly modified version of this script updates my MSN Personal Message whenever I post to Twitter.</li>
<li><a href="http://www.kevdaly.co.nz/Software/Twitter/Twitula.aspx" target="_blank">Twitula</a> (Windows Mobile enabled iPAQ 4150)</li>
<li><a href="http://www.shozu.com/" target="_blank">Shozu</a> (Symbian Nokia N95)</li>
<li><a href="http://sourceforge.net/projects/twitux" target="_blank">Twitux</a> (GNOME Linux / Ebuntu Eee PC 701)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5081" target="_blank">TwitterFox</a> (Firefox) &#8211; Update and view status from within the browser.</li>
<li><a href="http://rss2imap.sourceforge.net/" target="_blank">RSS2IMAP</a> &#8211; My RSS feed reader of choice, read the Twitter RSS and convert into emails, for viewing in Thunderbird.</li>
<li><a href="http://apps.new.facebook.com/twitter/" target="_blank">Facebook Twitter</a> &#8211; Updates my Facebook status whenever I post to twitter (from anywhere).</li>
<li><a href="http://32hours.com/" target="_blank">BeTwittered</a> (iGoogle)</li>
</ol>
<p>And because of all of this, I never need to visit twitter.com any more.  That&#8217;s progress <img src='http://www.kevinblake.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/twitter-convergence-ten-top-twitter-tools/257/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<georss:point>51.6548576 -0.3982030</georss:point>	</item>
		<item>
		<title>Twitter &#8211; Now the machines are syndicating us</title>
		<link>http://www.kevinblake.co.uk/twitter-now-the-machines-are-syndicating-us/197/</link>
		<comments>http://www.kevinblake.co.uk/twitter-now-the-machines-are-syndicating-us/197/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 19:45:57 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=197</guid>
		<description><![CDATA[&#8230; that was syndication for the sake of it. That&#8217;s what I said, word for word. Then a colleague pointed out that I could have twitter automatically update from my blog or Blakepics. And all hell broke loose. I didn&#8217;t like Twitter as another way of updating my blog, or having it throw up all [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_198" class="wp-caption alignright" style="width: 112px"><a href="http://www.kevinblake.co.uk/wp-content/uploads/2008/08/rssx.gif" rel="lightbox"><img class="size-thumbnail wp-image-198" title="RSS" src="http://www.kevinblake.co.uk/wp-content/uploads/2008/08/rssx.gif" alt="" width="102" height="102" /></a><p class="wp-caption-text">RSS recursion is not a toy</p></div>
<blockquote><p>&#8230; that was syndication for the sake of it.</p></blockquote>
<p>That&#8217;s what I said, word for word.  Then <a href="http://twitter.com/mcunnington" target="_blank">a colleague</a> pointed out that I could have twitter <a href="http://twitterfeed.com/" target="_blank">automatically update</a> from my blog or Blakepics.  And all hell broke loose.</p>
<p>I didn&#8217;t like Twitter as another way of updating my blog, or having it throw up all over my Facebook status every time I opened up my Twitter-enabled fridge.  But reaching out to new audiences, and the potential to bombard mobile phone networks every time I bounce from one country to the next&#8230; Well suddenly it&#8217;s become quite cool.</p>
<p>And yes, I admit &#8211; I was tempted to install the application to <a href="http://www.joystiq.com/2007/05/15/twitter-your-xbox-360-gamertag/" target="_blank">syndicate my Xbox 360 status</a> as well.  But I&#8217;m not sure I&#8217;m ready to spam everyone that much.  Yet.</p>
<blockquote><p>&#8220;Kevin has just been killed by a bunny rabbit on Halo 3.  Again&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/twitter-now-the-machines-are-syndicating-us/197/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Twitter &#8211; Conversation in the Machine</title>
		<link>http://www.kevinblake.co.uk/twitter-conversation-in-the-machine/184/</link>
		<comments>http://www.kevinblake.co.uk/twitter-conversation-in-the-machine/184/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 18:49:29 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinblake.co.uk/?p=184</guid>
		<description><![CDATA[It&#8217;s another of those life-changing technologies which will not only improve the way you interact your fellow humans across the planet, but also shape and change the web as we know it for a brighter future beyond our current limited borders. No it&#8217;s not. It&#8217;s a micro-blogging tool which performs about the same function as [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s another of those life-changing technologies which will not only improve the way you interact your fellow humans across the planet, but also shape and change the web as we know it for a brighter future beyond our current limited borders.</p>
<p>No it&#8217;s not.</p>
<p>It&#8217;s a micro-blogging tool which performs about the same function as your Facebook status, with a bit more history and more conversation potential than real speaking.  It also falls into the category of &#8220;shiny web things&#8221; that the magpie&#8217;s of the Internet world run bounding towards with wings flapping, declaring their undying allegiance and overwhelming excitement about the grand new era of technology, society and communication.</p>
<p>I am said magpie.  I just haven&#8217;t had much use for it, so whilst most people are bounding towards <a href="http://pownce.com/" target="_blank">Pownce</a> with their wings wide open, I&#8217;m still trying to find an excuse.</p>
<p>My <a href="http://twitter.com/puzzlebox" target="_blank">Twitter feed</a> is decidedly empty, having originally opened it as a way only of updating my Facebook status before I realised that was syndication for the sake of it (See integrations with <a href="http://blog.brightkite.com/" target="_blank">BrightKite</a>, <a href="http://www.loopt.com/" target="_blank">Loopt</a>, and <a href="http://flickr.twittergram.com/" target="_blank">Flickr </a>integration for reference).  But I do get a kick out of things like the <a href="http://infovore.org/archives/2008/02/28/making-bridges-talk/" target="_blank">Tower Bridge Tweets</a>.  The wonderful thing about this Web 2.0 stuff is that you don&#8217;t have to use any of it for what it was intended for (which is usually so vague and fluffy, it only really starts to take shape after the rules have been broken).</p>
<p>So I grabbed a copy of the <a href="http://search.cpan.org/~cthom/Net-Twitter-1.14/lib/Net/Twitter.pm" target="_blank">Net::Twitter module</a> for Perl and before you know it, my script that monitors if the Wifi connection on the <a href="http://www.blakepics.com" target="_blank">Blakepics </a>server had gone down was <a href="http://www.twitter.com/puzzleboxneco" target="_blank">happily tweeting away</a> with only three more lines of (my) code.</p>
<p><code>use Net::Twitter;<br />
my $twit = Net::Twitter-&gt;new(username=&gt;"<em>username</em>", password=&gt;"<em>password</em>",  source =&gt; "DowntimeMonitor" );<br />
$twit-&gt;update("Internet connection ".($state ? "is now up" : "has been restarted"));</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinblake.co.uk/twitter-conversation-in-the-machine/184/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
