<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Kevin Withnall</title>
	<atom:link href="http://kevin.withnall.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevin.withnall.com</link>
	<description>My 15 megabytes of fame</description>
	<lastBuildDate>Thu, 06 May 2010 06:37:02 +0000</lastBuildDate>
	<language>en-au</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<copyright>Copyright &#xA9; Kevin Withnall 2011 </copyright>
	<managingEditor>kevin@withnall.com.au (Kevin Withnall)</managingEditor>
	<webMaster>kevin@withnall.com.au (Kevin Withnall)</webMaster>
	<ttl>1440</ttl>
	<image>
		<url>http://kevin.withnall.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Kevin Withnall</title>
		<link>http://kevin.withnall.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>My 15 megabytes of fame</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &#38; Culture" />
	<itunes:author>Kevin Withnall</itunes:author>
	<itunes:owner>
		<itunes:name>Kevin Withnall</itunes:name>
		<itunes:email>kevin@withnall.com.au</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://kevin.withnall.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>Engin updates their software and breaks routing</title>
		<link>http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/</link>
		<comments>http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/#comments</comments>
		<pubDate>Thu, 06 May 2010 06:37:02 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[asterisk]]></category>
		<category><![CDATA[VoIP]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=307</guid>
		<description><![CDATA[Engin updated their software a while ago and broke inbound switchboard distinctions. The To SIP header used to contain the switchboard number but now it doesn&#8217;t. Incase you dont understand what this is about, engin is an Australian VoIP provider that allows &#8220;switchboard&#8221; numbers to be added for $5 per month to an account. This [...]]]></description>
			<content:encoded><![CDATA[<p>Engin updated their software a while ago and broke inbound switchboard distinctions. The To SIP header used to contain the switchboard number but now it doesn&#8217;t.</p>
<p>Incase you dont understand what this is about, engin is an Australian VoIP provider that allows &#8220;switchboard&#8221; numbers to be added for $5 per month to an account. This is great for saving money with 1300 numbers and provides local answer points that still come back to a single place. As we are migrating many customers away from Telstra (and hosting the VoIP asterisk system in the cloud at rackspace) this is a necessary function to determine where the calls came from.</p>
<p>Heres updated code that will work.</p>
<p>[ext-engin]</p>
<p>exten =&gt; _X.,1,noop(ENGIN STARTING)<br />exten =&gt; _X.,n,Set(ENGINH=${SIP_HEADER(DIVERSION)})<br />exten =&gt; _X.,n,Set(ENGINH=${IF($[${LEN(${ENGINH})} &gt; 0]?&#8221;${ENGINH}&#8221;:&#8221;${SIP_HEADER(TO)}&#8221;)})<br />exten =&gt; _X.,n,Set(ENGIN=${CUT(ENGINH,:,2)})<br />exten =&gt; _X.,n,Set(ENGIN=${CUT(ENGIN,@,1)})<br />exten =&gt; _X.,n,GotoIf($[${LEN(${ENGIN})} &gt; 0]?ext-did,${ENGIN},1:ext-did,${EXTEN},1)</p>
<p> </p>
<p>just set the context for incoming calls to ext-engin and then this will send all calls back to the ext-did context with the appropriate target based on which switchboard number was used.</p>
<p> </p>
<p> </p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Engin+updates+their+software+and+breaks+routing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D307" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Engin+updates+their+software+and+breaks+routing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D307" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Engin+updates+their+software+and+breaks+routing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D307" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Engin+updates+their+software+and+breaks+routing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D307" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;headline=Engin+updates+their+software+and+breaks+routing" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;headline=Engin+updates+their+software+and+breaks+routing" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;title=Engin+updates+their+software+and+breaks+routing" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;title=Engin+updates+their+software+and+breaks+routing" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;title=Engin+updates+their+software+and+breaks+routing" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;title=Engin+updates+their+software+and+breaks+routing" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;t=Engin+updates+their+software+and+breaks+routing" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;t=Engin+updates+their+software+and+breaks+routing" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;t=Engin+updates+their+software+and+breaks+routing" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;t=Engin+updates+their+software+and+breaks+routing" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Engin+updates+their+software+and+breaks+routing&amp;link=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Engin+updates+their+software+and+breaks+routing&amp;link=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;title=Engin+updates+their+software+and+breaks+routing" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;title=Engin+updates+their+software+and+breaks+routing" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;title=Engin+updates+their+software+and+breaks+routing" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/&amp;title=Engin+updates+their+software+and+breaks+routing" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2010%2F05%2F06%2Fengin-updates-their-software-and-breaks-routing%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2010/05/06/engin-updates-their-software-and-breaks-routing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Google nexus one vs iphone in Australia</title>
		<link>http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/</link>
		<comments>http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:42:28 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Gadgets and Toys]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=305</guid>
		<description><![CDATA[I have used the iPhone for 2 years now and quite like it. The strangle hold apple has really annoys me so after jailbreaking the phone, I can do mostly all of what I want to do. Heres some thoughts about the last 24hrs playing with the nexus one. Nexus One &#8211; Good Points Fantastic [...]]]></description>
			<content:encoded><![CDATA[<p>I have used the iPhone for 2 years now and quite like it. The strangle hold apple has really annoys me so after jailbreaking the phone, I can do mostly all of what I want to do.</p>
<p>Heres some thoughts about the last 24hrs playing with the nexus one.</p>
<p>Nexus One &#8211; Good Points</p>
<ul>
<li>Fantastic screen. It&#8217;s bright, clear, hi-res and the animations are great.</li>
<li>Brilliant google apps integration. (Including lattitude from google apps accounts which aparent&#8217;y can&#8217;t be done on any other platform)</li>
<li>Close integration with things like SIP clients with the normal phone interface</li>
<li>GPS reeption (inside a building, works great)</li>
<li>Fast browser.</li>
<li>latitude that &#8216;just works&#8217;</li>
<li>Gmail integration that doesn&#8217;t rely on the old imap methodology. It handles threaded conversations.</li>
<li>Great camera with flash</li>
<li>feels thinner and better</li>
<li>great google talk integration</li>
<li>proper multitasking</li>
</ul>
<p>Nexus One &#8211; Bad Points</p>
<ul>
<li>3G dropouts. In 24 hrs, i have had 2 calls drop (I don&#8217;t make many calls) and have had other call breakup.</li>
<li>Bluetooth is worse than the iPhone (which is pretty bad). I often have trouble getting A2DP connections working properly with phone calls etc. The iPhone gives you an option to select audio output options and therefore by selecting speaker, then back to bluetooth, it works again. the Nexus one, doesn&#8217;t have this option and stopping/starting the bluetooth, while it seems to fix the problem, takes too long.</li>
<li>Finger sensors seem &#8216;wrong&#8217;. When I played with the HERO, i seemed to have to touch the screen a few mm above the point that i wanted. This is the same on the nexus one. I would be happy to believe it was my fat fingers but the iphone doesn&#8217;t have this problem.</li>
<li>The gmail application, while it has some great features just feels wrong. I normally keep mail unread in the inbox as a todo list, this is harder to do in the gmail app. on the iPhone app, its easier.</li>
<li>doesn&#8217;t support pinch gestures.</li>
<li>has a totally useless trackball (well, sometimes its the only way to do something so useless is probably not the right word)</li>
<li>still not enough apps</li>
</ul>
<p>iPhone Jailbroken &#8211; Good Points</p>
<ul>
<li>with the purchase of 3G unrestrictor and longtitude, latitude works and SIP over 3G works.</li>
<li>as much as I hate to say it, iTunes integration makes life easier than the options.</li>
<li>wifi/3g switching just works</li>
</ul>
<p>iPhone Jailbroken &#8211; Bad Points</p>
<ul>
<li>Apples restrictive policies on things like native google latitude support.</li>
<li>the bluetooth support is crappy but still less bad than the nexus one.</li>
<li>crappy battery life with no quick replacement option</li>
<li>only manual upgrading of software/apps</li>
<li>no multitasking</li>
</ul>
<p> </p>
<p>So in summary, I am going back to the iPhone and hope the next 4G iPhone addresses these bad points.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=The+Google+nexus+one+vs+iphone+in+Australia+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D305" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=The+Google+nexus+one+vs+iphone+in+Australia+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D305" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=The+Google+nexus+one+vs+iphone+in+Australia+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D305" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=The+Google+nexus+one+vs+iphone+in+Australia+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D305" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;headline=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;headline=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;title=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;title=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;title=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;title=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;t=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;t=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;t=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;t=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+Google+nexus+one+vs+iphone+in+Australia&amp;link=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+Google+nexus+one+vs+iphone+in+Australia&amp;link=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;title=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;title=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;title=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/&amp;title=The+Google+nexus+one+vs+iphone+in+Australia" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2010%2F01%2F13%2Fthe-google-nexus-one-vs-iphone-in-australia%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2010/01/13/the-google-nexus-one-vs-iphone-in-australia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2009 Cruise</title>
		<link>http://kevin.withnall.com/2009/11/29/2009-cruise/</link>
		<comments>http://kevin.withnall.com/2009/11/29/2009-cruise/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 10:48:05 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=302</guid>
		<description><![CDATA[Everything you wanted to know is on Libbys Blog but heres some photos i had fun taking&#8230; Tweet This Post Plurk This Post Buzz This Post Post to Delicious Digg This Post Post to Facebook Post to MySpace Ping This Post Post to Reddit Stumble This Post]]></description>
			<content:encoded><![CDATA[<p>Everything you wanted to know is on <a href="http://libby.withnall.com">Libbys Blog</a> but heres some photos i had fun taking&#8230;</p>
<p><a class="tt-flickr tt-flickr-Small" title="_DSC2733" href="http://www.flickr.com/photos/kevinwithnall/4135767216/"><img class="alignnone" src="http://farm3.static.flickr.com/2763/4135767216_710b32c967_m.jpg" alt="_DSC2733" width="240" height="159" /></a> <a class="tt-flickr tt-flickr-Small" title="_DSC2732" href="http://www.flickr.com/photos/kevinwithnall/4135006645/"><img class="alignnone" src="http://farm3.static.flickr.com/2562/4135006645_5fcb5ff333_m.jpg" alt="_DSC2732" width="240" height="159" /></a> <a class="tt-flickr tt-flickr-Small" title="_DSC2724" href="http://www.flickr.com/photos/kevinwithnall/4135766626/"><img class="alignnone" src="http://farm3.static.flickr.com/2596/4135766626_b5e6640a08_m.jpg" alt="_DSC2724" width="240" height="159" /></a> <a class="tt-flickr tt-flickr-Small" title="_DSC2713" href="http://www.flickr.com/photos/kevinwithnall/4135766308/"><img class="alignnone" src="http://farm3.static.flickr.com/2729/4135766308_a87e839340_m.jpg" alt="_DSC2713" width="240" height="159" /></a> <a class="tt-flickr tt-flickr-Small" title="_DSC2710" href="http://www.flickr.com/photos/kevinwithnall/4135766016/"><img class="alignnone" src="http://farm3.static.flickr.com/2774/4135766016_a9c407bfcb_m.jpg" alt="_DSC2710" width="159" height="240" /></a> <a class="tt-flickr tt-flickr-Small" title="_DSC2697" href="http://www.flickr.com/photos/kevinwithnall/4135005411/"><img class="alignnone" src="http://farm3.static.flickr.com/2581/4135005411_661cb420f9_m.jpg" alt="_DSC2697" width="240" height="159" /></a> <a class="tt-flickr tt-flickr-Small" title="_DSC2754" href="http://www.flickr.com/photos/kevinwithnall/4135763646/"><img class="alignnone" src="http://farm3.static.flickr.com/2641/4135763646_ae1b926d49_m.jpg" alt="_DSC2754" width="240" height="159" /></a> <a class="tt-flickr tt-flickr-Small" title="_DSC2757" href="http://www.flickr.com/photos/kevinwithnall/4135760358/"><img class="alignnone" src="http://farm3.static.flickr.com/2695/4135760358_4f36f9e071_m.jpg" alt="_DSC2757" width="240" height="159" /></a> <a class="tt-flickr tt-flickr-Small" title="Fruit" href="http://www.flickr.com/photos/kevinwithnall/4135755300/"><img class="alignnone" src="http://farm3.static.flickr.com/2685/4135755300_b9c5fac75f_m.jpg" alt="Fruit" width="159" height="240" /></a> <a class="tt-flickr tt-flickr-Small" title="Crocodile" href="http://www.flickr.com/photos/kevinwithnall/4134994213/"><img class="alignnone" src="http://farm3.static.flickr.com/2537/4134994213_3af3ecc176_m.jpg" alt="Crocodile" width="240" height="95" /></a> <a class="tt-flickr tt-flickr-Small" title="My First Wife" href="http://www.flickr.com/photos/kevinwithnall/4134991479/"><img class="alignnone" src="http://farm3.static.flickr.com/2637/4134991479_9a20f7fbac_m.jpg" alt="My First Wife" width="240" height="159" /></a></p>
<p><a class="tt-flickr tt-flickr-Small" title="My First Wife" href="http://www.flickr.com/photos/kevinwithnall/4134991479/"></a> <a class="tt-flickr tt-flickr-Medium" title="Sydney" href="http://www.flickr.com/photos/kevinwithnall/4133160568/"><img class="alignnone" src="http://farm3.static.flickr.com/2792/4133160568_c21e67c9a4.jpg" alt="Sydney" width="500" height="122" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=2009+Cruise+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D302" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=2009+Cruise+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D302" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=2009+Cruise+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D302" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=2009+Cruise+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D302" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;headline=2009+Cruise" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;headline=2009+Cruise" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;title=2009+Cruise" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;title=2009+Cruise" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;title=2009+Cruise" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;title=2009+Cruise" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;t=2009+Cruise" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;t=2009+Cruise" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;t=2009+Cruise" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;t=2009+Cruise" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=2009+Cruise&amp;link=http://kevin.withnall.com/2009/11/29/2009-cruise/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=2009+Cruise&amp;link=http://kevin.withnall.com/2009/11/29/2009-cruise/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;title=2009+Cruise" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;title=2009+Cruise" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;title=2009+Cruise" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/11/29/2009-cruise/&amp;title=2009+Cruise" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2009%2F11%2F29%2F2009-cruise%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2009/11/29/2009-cruise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Washington DC</title>
		<link>http://kevin.withnall.com/2009/10/27/washington-dc/</link>
		<comments>http://kevin.withnall.com/2009/10/27/washington-dc/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 00:07:24 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=296</guid>
		<description><![CDATA[I didn&#8217;t know that the smithsonian was so extensive. Its 19 separate museums and were/are great places to visit. The first things I wanted to see were the Holocaust Memorial Museum, and the Air and Space museum.  These were great to visit but I also discovered lots more to see. The Natural History Museum was [...]]]></description>
			<content:encoded><![CDATA[<p><!-- BODY { FONT-FAMILY:Tahoma; FONT-SIZE:10pt } P { FONT-FAMILY:Tahoma; FONT-SIZE:10pt } DIV { FONT-FAMILY:Tahoma; FONT-SIZE:10pt } TD { FONT-FAMILY:Tahoma; FONT-SIZE:10pt } -->I didn&#8217;t know that the smithsonian was so extensive. Its 19 separate museums and were/are great places to visit.</p>
<div>The first things I wanted to see were the Holocaust Memorial Museum, and the Air and Space museum.  These were great to visit but I also discovered lots more to see. The Natural History Museum was great, as was the Portrait gallery and the National Museum. The national archives was a little less interesting (probably more aimed at children) but it was interesting to see a 1296 copy of the Magna Carta. There was a line for about 40 mins to see the declaration of independence but no line at all for the magna carta.</div>
<div>The Spy Museum (not smithsonian) and the Crime and Punishment museum were interesting but also mainly directed at children, or at least people who don&#8217;t watch documentaries as often as I do.</div>
<div>Madame Tussads was really crappy. It could have been that I was expecting so much more after going to the &#8216;real&#8217; one in london but this one wasn&#8217;t even as good as the wax museum in surfers paradise in Qld.</div>
<div>The postal museum was interesting, although also more for children, and had the postage stamp that we&#8217;ve all seen on television with the upside-down plane. I don&#8217;t know whats its worth but its always the example of expensive stamps.</div>
<div>The Lincoln monument was interesting (although very wet that day) and the Washington monument was also worth seeing (not that you could avoid it). In the same area the monuments were the WWII and Vietnam memorials, the Korean war memorial is a little further away and I didn&#8217;t get that far.</div>
<div>I didn&#8217;t get to the American Indian museum, the FBI building or the Capitol Building but they had to be missed as I ran out of time. I did get to go to the new Air and Space museum wing (the new one as the 1976 one was full) at Dulles Airport. Thats were the space shuttle enterprise is and the SR-71 Blackbird as well as lots of other things.</div>
<div>So, the things I saw that I will hopefully remember are&#8230;</div>
<div>Apollo 11 command module</div>
<div>Space Shuttle Enterprise (not that it was a finished space shuttle capable of space flight)</div>
<div>Magna Carta</div>
<div>The upside down stamp</div>
<div>SR-71</div>
<div>the Original &#8216;Wright Flyer&#8217;</div>
<div>Original Space Suits (from many of the moon trips)0</div>
<div>The X-1</div>
<div>The Enola Gay</div>
<div>Overall it was a great trip to washington as I managed to have it over a weekend where I didn&#8217;t have to do too much work and got to see some great stuff.</div>
<div><a class="tt-flickr tt-flickr-Medium" title="Enola Gay" href="http://www.flickr.com/photos/kevinwithnall/4047745951/"><img src="http://farm3.static.flickr.com/2707/4047745951_330988b5a1.jpg" alt="Enola Gay" width="500" height="375" /></a> <a class="tt-flickr tt-flickr-Medium" title="Enterprise" href="http://www.flickr.com/photos/kevinwithnall/4048485968/"><img class="alignnone" src="http://farm3.static.flickr.com/2448/4048485968_7a6976db18.jpg" alt="Enterprise" width="500" height="375" /></a></div>
<div><a class="tt-flickr tt-flickr-Medium" title="SR-71 Blackbird (Skunk Works)" href="http://www.flickr.com/photos/kevinwithnall/4048482612/"><br />
</a></div>
<div><a class="tt-flickr tt-flickr-Medium" title="Marine One" href="http://www.flickr.com/photos/kevinwithnall/4048479758/"><img class="alignnone" src="http://farm3.static.flickr.com/2497/4048479758_b8b2c4057d.jpg" alt="Marine One" width="500" height="375" /></a> <a class="tt-flickr tt-flickr-Medium" title="First Van De Graff Generator" href="http://www.flickr.com/photos/kevinwithnall/4048477498/"><img class="alignnone" src="http://farm4.static.flickr.com/3532/4048477498_14eb1b3351.jpg" alt="First Van De Graff Generator" width="375" height="500" /></a></div>
<div><a class="tt-flickr tt-flickr-Medium" title="First Van De Graff Generator" href="http://www.flickr.com/photos/kevinwithnall/4048477498/"></a> <a class="tt-flickr tt-flickr-Medium" title="Tanzonites" href="http://www.flickr.com/photos/kevinwithnall/4048475192/"><img class="alignnone" src="http://farm3.static.flickr.com/2681/4048475192_68e06cc761.jpg" alt="Tanzonites" width="375" height="500" /></a></div>
<div><a class="tt-flickr tt-flickr-Medium" title="The Hope Diamond" href="http://www.flickr.com/photos/kevinwithnall/4048472788/"><img class="alignnone" src="http://farm4.static.flickr.com/3517/4048472788_1e9f1ef5c1.jpg" alt="The Hope Diamond" width="500" height="375" /></a></div>
<div><a class="tt-flickr tt-flickr-Medium" title="The Hope Diamond" href="http://www.flickr.com/photos/kevinwithnall/4048472788/"></a> <a class="tt-flickr tt-flickr-Medium" title="IMG_0053" href="http://www.flickr.com/photos/kevinwithnall/4048468804/"><img class="alignnone" src="http://farm3.static.flickr.com/2759/4048468804_46e5e6ab63.jpg" alt="IMG_0053" width="375" height="500" /></a></div>
<div><a class="tt-flickr tt-flickr-Medium" title="IMG_0053" href="http://www.flickr.com/photos/kevinwithnall/4048468804/"></a> <a class="tt-flickr tt-flickr-Medium" title="Enigma Machine (3 Rotor)" href="http://www.flickr.com/photos/kevinwithnall/4047725259/"><img class="alignnone" src="http://farm3.static.flickr.com/2793/4047725259_932007d74b.jpg" alt="Enigma Machine (3 Rotor)" width="375" height="500" /></a></div>
<div><a class="tt-flickr tt-flickr-Medium" title="X-1" href="http://www.flickr.com/photos/kevinwithnall/4048459674/"><img class="alignnone" src="http://farm4.static.flickr.com/3490/4048459674_1c881062f4.jpg" alt="X-1" width="500" height="375" /></a> <a class="tt-flickr tt-flickr-Medium" title="'The' Wright Flyer" href="http://www.flickr.com/photos/kevinwithnall/4048462478/"><img class="alignnone" src="http://farm3.static.flickr.com/2757/4048462478_e7023fbc9f.jpg" alt="'The' Wright Flyer" width="500" height="375" /></a></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Washington+DC+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D296" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Washington+DC+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D296" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Washington+DC+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D296" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Washington+DC+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D296" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;headline=Washington+DC" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;headline=Washington+DC" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;title=Washington+DC" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;title=Washington+DC" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;title=Washington+DC" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;title=Washington+DC" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;t=Washington+DC" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;t=Washington+DC" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;t=Washington+DC" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;t=Washington+DC" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Washington+DC&amp;link=http://kevin.withnall.com/2009/10/27/washington-dc/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Washington+DC&amp;link=http://kevin.withnall.com/2009/10/27/washington-dc/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;title=Washington+DC" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;title=Washington+DC" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;title=Washington+DC" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/10/27/washington-dc/&amp;title=Washington+DC" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2009%2F10%2F27%2Fwashington-dc%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2009/10/27/washington-dc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Astricon 2009</title>
		<link>http://kevin.withnall.com/2009/10/27/astricon-2009/</link>
		<comments>http://kevin.withnall.com/2009/10/27/astricon-2009/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 00:00:49 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=298</guid>
		<description><![CDATA[Astricon was very informative. From learning more about Amazon EC2, to chan_skype they cover lots of things. Not every session was what I wanted to know but they did get you thinking about how to do things. There were sessions on large organisations and government systems where queues are seperated from media gateways and from [...]]]></description>
			<content:encoded><![CDATA[<p><!-- BODY { FONT-FAMILY:Tahoma; FONT-SIZE:10pt } P { FONT-FAMILY:Tahoma; FONT-SIZE:10pt } DIV { FONT-FAMILY:Tahoma; FONT-SIZE:10pt } TD { FONT-FAMILY:Tahoma; FONT-SIZE:10pt } -->Astricon was very informative. From learning more about Amazon EC2, to chan_skype they cover lots of things. Not every session was what I wanted to know but they did get you thinking about how to do things. There were sessions on large organisations and government systems where queues are seperated from media gateways and from servers where extensions connect. There was also a log on XMPP integration into asterisk and thats certainly something ill need to look into further.</p>
<div>Not all sessions were of the same quality. Some were very well prepared and were informative, others were simply sales pitches for the products sold by the company presenting.</div>
<div>It was also nice to meet Jared Smith, Leif Madsen and Mark Spencer. The dCap breakfast was also great as it provided a chance to chat with some others on a technical level. There were certainly some very knowledgeable people there to talk to.</div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Astricon+2009+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D298" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Astricon+2009+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D298" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Astricon+2009+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D298" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Astricon+2009+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D298" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;headline=Astricon+2009" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;headline=Astricon+2009" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;title=Astricon+2009" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;title=Astricon+2009" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;title=Astricon+2009" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;title=Astricon+2009" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;t=Astricon+2009" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;t=Astricon+2009" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;t=Astricon+2009" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;t=Astricon+2009" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Astricon+2009&amp;link=http://kevin.withnall.com/2009/10/27/astricon-2009/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Astricon+2009&amp;link=http://kevin.withnall.com/2009/10/27/astricon-2009/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;title=Astricon+2009" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;title=Astricon+2009" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;title=Astricon+2009" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/10/27/astricon-2009/&amp;title=Astricon+2009" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2009%2F10%2F27%2Fastricon-2009%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2009/10/27/astricon-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>By the time I get to Phoenix, i&#8217;ll be sleeping</title>
		<link>http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/</link>
		<comments>http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 06:40:23 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[asterisk]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=290</guid>
		<description><![CDATA[The day started off quite well. While sitting in the airport, I was organised, with a combination of TripIt, Dropbox, Google Calendar Sync, Evernote I had all my documents ready at hand. This makes life much easier when filling in forms with passport numbers etc. The US war on tourism was in full force and [...]]]></description>
			<content:encoded><![CDATA[<p>The day started off quite well. While sitting in the airport, I was organised, with a combination of TripIt, Dropbox, Google Calendar Sync, Evernote I had all my documents ready at hand. This makes life much easier when filling in forms with passport numbers etc.</p>
<p>The US war on tourism was in full force and apart from their difficult on board requirements, this year they have a online form to fill in before you can leave. This must be done 72 hours before leaving and no-one reminds you of it. Luckily, I had read something about it and filled it in.</p>
<p>It seems, a Visa is a document telling you had permission to enter a country, the USA and Australia participate in the visa waver program so this means you don&#8217;t need one. That sounds great until you realise what a visa does for you. It gives you permission to enter the country, now we don&#8217;t have it at all.</p>
<p>So, weeks ago, i fill in an online form with passport number, flight number, date of entry, date of exit and address where I will be staying. This could have been a real time saver but no-one apparently reads this form.</p>
<p>On getting to the airport I discovered that they didn&#8217;t know about my form and asked me to fill it all in again at the check in. Oh well, it only 5 mins and not too hard. My docs were all organised and not too hard to setup.</p>
<p>I always find it annoying that the little green form you need to fill in to leave the country is only provided when you get to the airport so this had to be filled in also.</p>
<p>Anyway, After all this, I was sitting in Qantas club charging the laptop and phone up feeling quite good about it all.</p>
<p>The Flight was annoyingly long (although obviously expected) and during the flight, we were given a blue form that asked the same questions again. I thought, as others had, that we didn&#8217;t need to do this as we had filled in one online and one at checkin. Well the crew made a PA announcement saying that this was needed regardless of what was done online. I was also annoyed at this point that Qantas doesn&#8217;t give you one of those as its a dedicated USA checkin desk and they should know whats required.</p>
<p>On getting to LAX, I was a little pleased to discover they have about 50 little cubicles readily to rapidly process the incoming traveller and send them on their way.Unfortunately, on loser inspection, only about 5 cubicles had people in them. Bugger.</p>
<p>25 mins later, I was told with a little sense of &#8216;understanding&#8217; by the staff that I also needed a green form and I needed to go back and start again. This had the tone of &#8216;why is everyone getting this wrong today&#8217;</p>
<p>Well, in a very Douglas Adams moment, I found the green forms in a drawer. There were no signs on it saying &#8216;beware of the leopard&#8217; but it might as well have.</p>
<p>Filling in this form, with the same information they had from online, checkin, and the blue form, i waited 25 mins more and got through immigration only leaving them with the required left hand, left thumb, right hand, right thumb fingerprints on the scanner and a nice new photo of me.</p>
<p>My bags were dizzy from going around and around and after I was sniffed by the puppies, I walked out without further interruption. I think the customs part of it all is working quite nicely now, it was really painless at that stage.</p>
<p>The car rental documents I had said wait for a car labeled &#8216;JohnnyPark&#8217;. 20 mins waiting was aparently enough because it finally decided to turn up and took me to the car rental place.</p>
<p>On getting there, I noticed it looked pretty dumpy. They didn&#8217;t believe be I had paid and it took a while to work out that I had only paid insurance.</p>
<p>Well, I thought this would have been quite simple as when I ordered online I clicked all the insurance boxes.</p>
<p>Well, Aparently I hadn&#8217;t ticked the not offered fourth party insurance, swamp insurance, doorknob tax, foreign accent and foreign licence tax, internet booking fees and a &#8216;oh, you actually want the car you ordered&#8217; fees which updated me to the car they had available.</p>
<p>It was nicely already dented and scratched so that saves me the worry of having to do it later.</p>
<p>Luckily the guy wasn&#8217;t there to see me getting in the wrong side or there would have been a &#8216;the steering wheel is missing&#8217; tax. Ok, I was a little tired.</p>
<p>The Garmin satnav i took with me had the usa maps on it and after the 10 min warmup time when it looks at all the music files on the SD card to make sure they haven&#8217;t changed, it started telling me what direction to take out of LA.</p>
<p>About an hour later, I stopped at a Wal*Mart and decided to get some breakfast and coffee. I also picked up a AT&amp;T prepaid card (after doing lots of research on the net) and some recharge cards for it. I also picked up a cradle to charge the phone (I forgot to bring the car charger) and I was set. In the car, I spent 30 mins on the phone to AT&amp;T working out that the iphone cannot be used in the USA. After I told them that I was wrong, it wasn&#8217;t an iphone, it was a nokia, they processed it and told me they can&#8217;t do it on the phone, I needed to go to an AT&amp;T store and work it out there.</p>
<p>Giving up on that, I started driving again. With 5 hours of driving, i needed to get moving to get there on time. about 2 hours later, an impromptu lane change encouraged me to pull over and get something to keep me awake. I pulled into a carpark of a service station and thought I would just get an hours sleep. The ads on the TV in australia telling me that nothing beets a little sleep is working I guess.</p>
<p>After about 15 mins of sort of sleeping, I overheard someone talking. In my dazed state (trying to sleep really hard) I started to make out words and realised they were talking about me. Aparently the 911 operator was interested there was a body in a car in a car park. I then got up (much to the surprise of the person calling) and went into the service station and told them I was going to have a sleep in their car park.</p>
<p>This worked far better.</p>
<p>After about 30 mins of real sleep, I went back to the service station feeling I should buy something after using their carpark, I bought some &#8216;energy drink&#8217; thats only about 60 ml. The packet says its 5hrs energy and you should take only half at a time. I took it all and that, with the sleep I had, had me feeling great.</p>
<p>3.5 hours or so later, I was in Glendale (near Pheonix) and checkin into the hotel. Aparently theres a cisco conference here at the same time so the world nerd population could be in real danger if there was a natural disaster here.</p>
<p>I then went out to find an AT&amp;T store to get this phone thing sorted. When I arrived, I explained that the phone person told me that it had to be done in a store. She called the call center and in 10 mins, had it working. I guess the store part is nothing special, you only have to know to ignore them when they say its not possible.</p>
<p>Anyway, I now had a phone (working for voice) with a revolving 100mb data plan. If I used my Optus card, this represents $2000 of data, locally its $20. I know the $2000 is AUD and the $20 is USD but it still seems cheper to me.</p>
<p>After getting some pizza to eat, I tried the data part and realised it was not working. Maybe I really can&#8217;t use an Australian iphone here with data. Again, Bugger.</p>
<p>I called tech support and after a while, realised I was being passed from AT&amp;T to Apple and back again many times I gave up. I setup the laptop up with the wifi in the hotel ($10 USD per day) and googled it. Right, I needed to update the carrier file. After plugging in the phone to iTunes, updating carrier files and realising it didn&#8217;t work any better, I had to then start playing with the phone more seriously.</p>
<p>The WIFI here gives you a /30 address range and even with the phone and laptop both connected ($10 USD per day EACH) I couldn&#8217;t ssh between them as they weren&#8217;t on the same subnet and they were blocking port 22.</p>
<p>I then setup both the laptop and phone to VPN back to the office (other side of the world, via 2 translations, over PPTP) and finally they were on the same subnet. I could then SFTP in, get the carrier file, edit it manually on the mac here, re-send it back, reboot and WOO HOO, data works.</p>
<p>Apple (ok, optus) turns off the APN settings for a phone so that users can&#8217;t break it. It means that we also can&#8217;t fix it (and they can&#8217;t either) so the change I made tuened on the settings screen where I could type in the right APN and get it all working.</p>
<p>So, its now 23:30, the energy drink seems to still be working (I can&#8217;t sleep now after about 2 hours earlier) and decided to write stuff that is a) too technical and b) not interesting.</p>
<p>I also got the virgin mobile internet working for the laptop so I have connections everywhere now.</p>
<p>AT&amp;T seem to block port 5060 so sip doesn&#8217;t work over 3G but I can live with that i think.</p>
<p>Anyway, tomorrow the Asterisk (astricon 2009) conference starts and I&#8217;m really keen to see what its like. I just hope I get some sleep soon so I don&#8217;t have to sleep in class.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D290" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D290" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D290" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D290" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;headline=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;headline=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;t=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;t=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;t=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;t=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping&amp;link=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping&amp;link=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/&amp;title=By+the+time+I+get+to+Phoenix%2C+i%E2%80%99ll+be+sleeping" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2009%2F10%2F13%2Fby-the-time-i-get-to-phoenix-ill-be-sleeping%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2009/10/13/by-the-time-i-get-to-phoenix-ill-be-sleeping/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vanuatu 2009</title>
		<link>http://kevin.withnall.com/2009/07/13/vanuatu-2009/</link>
		<comments>http://kevin.withnall.com/2009/07/13/vanuatu-2009/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 23:25:05 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Diving]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=280</guid>
		<description><![CDATA[Well, I thought the last trip would be my last to Vanuatu but with the Tec course happening, it seemed like a good idea. The main issue with this particular dive destination, although its not alone in this problem, is the weight limit getting there and back again. We had a 20kg limit and had [...]]]></description>
			<content:encoded><![CDATA[<p><a class="tt-flickr tt-flickr-Large" title="IMG_5318" href="http://www.flickr.com/photos/kevinwithnall/3713789521/"></a><a class="tt-flickr tt-flickr-Medium" title="IMG_5318" href="http://www.flickr.com/photos/kevinwithnall/3713789521/"><img class="alignnone" src="http://farm3.static.flickr.com/2513/3713789521_aab7ea187c.jpg" alt="IMG_5318" width="500" height="375" /></a></p>
<p>Well, I thought the last trip would be my last to Vanuatu but with the Tec course happening, it seemed like a good idea.</p>
<p>The main issue with this particular dive destination, although its not alone in this problem, is the weight limit getting there and back again. We had a 20kg limit and had to take all our gear in that so its difficuly to say the least. On arriving at the airport, we found out that the dive travel company had not only told us the wrong number (it was 24kg) but they had also neglected to mention that as its a &#8216;sporting&#8217; trip, we actually could just ask for and get a limit of 30kg. the 25kg I had therefore was not going to cost me anything as I had expected.</p>
<p>In the &#8216;Olden&#8217; days, we flew on very small planes that had serious weight limits, these days however, the plane is a 737-800 all the say to Santo so I think its far easier for them to be flexable.</p>
<p>On arrival in Santo, as always, we were keen to get diving. I had a Hollis HTS harness and a single 65lb wing to use with twins so we had to go over the road to setup our gear with the dive operator. I had pre-reserved a pair of 300bar DIN tanks with bands so it was quite an easy excercise.  The diving was a little colder this year (26 degrees) where on other trips we had been 28 but its still fantastic compared to local diving tempratures.</p>
<p>Its strange that after a few days, &#8216;Island Time&#8217; starts to operate and as easy as the diving is, you start to get lazy and not do every dive. As the dives are also long and deep, its nice to have some time out of the water to make sure you are diving withing your nitrogen limits.</p>
<p>As recently as four years ago, when I was in Santo last, the usual pattern was Wake, Eat, Dive, Reset Gear, Eat, Dive, Reset Gear, Eat, Sleep. The &#8216;Reset Gear&#8217; was something that had to be done at the end of every dive and included things such as re-charge torches, re-charge cameras, download photos, then re-pack silica gel into the camera housing etc ready for the next dive. This trip however, with just a few years difference, its so much easier. The camera has enough storage for 3k photos, the batteries in the camera, last charged in townsville on the motorcycle trip a year ago, lasted well past half way through the trip before needing to be recharged again, and the torch, filled with 3 &#8216;C&#8217; batteries, lasted the whole trip. The batteries at the end were donated to the dive operator as they were still virtually full as they have trouble getting decent batteries over there. The torch, incase anyone cares, was a Hollis 3&#215;3 and is fantastic.</p>
<p>This trip was also the first real dives with my new Uwatec SOL computer. What a brilliant machine that is. As typical with Uwatec, the transmitters are not the best (I had a dive where one interfeared with the other and I had no SPG at all) but when they work the interface on the computer is great. I wish someone would make a Uwatec computer with all the information it provides, with the algorithm it uses, with an Oceanic transmitter system.</p>
<p>Every dive I had 2 computers (and extra depth/time piece) and apart from a single dive, they worked beautifully. The new PDIS (Profile Dependant Intermediate Stops) and the micro bubble radius consertive limits were great and I never once felt close to the limits of what we should be doing. Even on the last dive, when after about 13 mins at 45 metres we were heading back when another group silted out our exit, we had to go another way racking another 10 mins at depth, the computer of course did what its designed to do, calculate the required decompression because it was unplanned. I had over an hour decompression to do on that dive. I wouldn&#8217;t like to have to calculate the required decompression on that dive with tables. That dive alone justified the cost of the computers.</p>
<p>Santo has also change a lot this trip, last time, getting on the net was difficult at best but this time, theres lots of wi-fi available in the town and while its still slow (seems like shared dialup speed) its better than nothing. I probably checked things too much but its nice to know that everythings under control at home. Internet via the mobile phone network is still non-existant which is probably a good thing as it would be expensive anyway.</p>
<p>So, overall, I&#8217;m very glad I went. Its relaxing and amazingly easy to get some great diving in.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Vanuatu+2009+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D280" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Vanuatu+2009+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D280" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Vanuatu+2009+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D280" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Vanuatu+2009+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D280" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;headline=Vanuatu+2009" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;headline=Vanuatu+2009" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;title=Vanuatu+2009" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;title=Vanuatu+2009" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;title=Vanuatu+2009" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;title=Vanuatu+2009" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;t=Vanuatu+2009" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;t=Vanuatu+2009" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;t=Vanuatu+2009" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;t=Vanuatu+2009" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Vanuatu+2009&amp;link=http://kevin.withnall.com/2009/07/13/vanuatu-2009/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Vanuatu+2009&amp;link=http://kevin.withnall.com/2009/07/13/vanuatu-2009/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;title=Vanuatu+2009" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;title=Vanuatu+2009" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;title=Vanuatu+2009" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/07/13/vanuatu-2009/&amp;title=Vanuatu+2009" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2009%2F07%2F13%2Fvanuatu-2009%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2009/07/13/vanuatu-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Asterisk, Digium and dCAP</title>
		<link>http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/</link>
		<comments>http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 09:07:28 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[asterisk]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=277</guid>
		<description><![CDATA[I haven&#8217;t blogged that much lately as I have been struggling to keep up with the workload I have. I thought I should however, let you know about a new certification available from Digium. Digium are the people that create Asterisk. Its an open source telephony system we have been using at work for some [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t blogged that much lately as I have been struggling to keep up with the workload I have.</p>
<p>I thought I should however, let you know about a new certification available from Digium.</p>
<p>Digium are the people that create Asterisk. Its an open source telephony system we have been using at work for some years now and I have done quite a lot of customisations with it.</p>
<p>I thought I should try to get more real world customers and jobs with this technology rather than just setup my own systems and therefore wanted to get certified.</p>
<p>So, after a week in Melbourne, which only covers a small amount of the content in the exams, I am now a Digium Certified Asterisk Professional (dCAP #1360)</p>
<p>Just thought I would post something :-)</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Asterisk%2C+Digium+and+dCAP+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D277" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Asterisk%2C+Digium+and+dCAP+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D277" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Asterisk%2C+Digium+and+dCAP+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D277" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Asterisk%2C+Digium+and+dCAP+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D277" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;headline=Asterisk%2C+Digium+and+dCAP" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;headline=Asterisk%2C+Digium+and+dCAP" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;title=Asterisk%2C+Digium+and+dCAP" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;title=Asterisk%2C+Digium+and+dCAP" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;title=Asterisk%2C+Digium+and+dCAP" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;title=Asterisk%2C+Digium+and+dCAP" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;t=Asterisk%2C+Digium+and+dCAP" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;t=Asterisk%2C+Digium+and+dCAP" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;t=Asterisk%2C+Digium+and+dCAP" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;t=Asterisk%2C+Digium+and+dCAP" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Asterisk%2C+Digium+and+dCAP&amp;link=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Asterisk%2C+Digium+and+dCAP&amp;link=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;title=Asterisk%2C+Digium+and+dCAP" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;title=Asterisk%2C+Digium+and+dCAP" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;title=Asterisk%2C+Digium+and+dCAP" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/&amp;title=Asterisk%2C+Digium+and+dCAP" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2009%2F06%2F01%2Fasterisk-digium-and-dcap%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2009/06/01/asterisk-digium-and-dcap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Driving</title>
		<link>http://kevin.withnall.com/2009/03/22/driving/</link>
		<comments>http://kevin.withnall.com/2009/03/22/driving/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 19:58:08 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=274</guid>
		<description><![CDATA[Yesterday was a long day. Kids woke up early so we decided to get going. We left the house at 3am and headed north. In total, it took 14hours (incliuding 2 hours combined of stops). Its not so bad but its not over once you arrive. Then its the shopping etc. On getting into the [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday was a long day. Kids woke up early so we decided to get going. We left the house at 3am and headed north. In total, it took 14hours (incliuding 2 hours combined of stops). Its not so bad but its not over once you arrive. Then its the shopping etc.</p>
<p>On getting into the room, I had to setup the wireless internet access (had to use Optus as 3 network sucks here) and re-configure the 3 laptops to use it. The kids have to share one but I think having 4 laptops here would be overkill. It is a holiday afterall.</p>
<p>So, with 3 laptops, 2 iphones, 1 ipod touch, 2 ipod shuffles, 2 nintendo DS, 1 wifi 3G router and an amazon kindle 2 we seem ready to be on holiday.</p>
<p>Its morning now, Christy is still asleep, each of us has his/her face buried in a laptop adn the TV on in the background I&#8217;m about to show Amy how she can use google chat with me so we can at least communicate while on the couch.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Driving+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D274" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Driving+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D274" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Driving+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D274" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Driving+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D274" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/03/22/driving/&amp;headline=Driving..." title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2009/03/22/driving/&amp;headline=Driving..." title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/03/22/driving/&amp;title=Driving" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2009/03/22/driving/&amp;title=Driving" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/03/22/driving/&amp;title=Driving" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2009/03/22/driving/&amp;title=Driving" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/03/22/driving/&amp;t=Driving" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2009/03/22/driving/&amp;t=Driving" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/03/22/driving/&amp;t=Driving" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2009/03/22/driving/&amp;t=Driving" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Driving&amp;link=http://kevin.withnall.com/2009/03/22/driving/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Driving&amp;link=http://kevin.withnall.com/2009/03/22/driving/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/03/22/driving/&amp;title=Driving" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2009/03/22/driving/&amp;title=Driving" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/03/22/driving/&amp;title=Driving" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2009/03/22/driving/&amp;title=Driving" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2009%2F03%2F22%2Fdriving%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2009/03/22/driving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some things I&#8217;ve learned about dancing</title>
		<link>http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/</link>
		<comments>http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 21:39:17 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=272</guid>
		<description><![CDATA[Well, anyone could tell you that I&#8217;m not a dancer but I do, once a year, shoot the kids dance concert. I&#8217;ve done it two years in a row now and wanted to write down the things I&#8217;ve learned (twice now) so that I don&#8217;t need to re-learn them next year. Firstly, when shooting, I [...]]]></description>
			<content:encoded><![CDATA[<p>Well, anyone could tell you that I&#8217;m not a dancer but I do, once a year, shoot the kids dance concert. I&#8217;ve done it two years in a row now and wanted to write down the things I&#8217;ve learned (twice now) so that I don&#8217;t need to re-learn them next year.</p>
<p>Firstly, when shooting, I was using four cameras (and had a friend also shooting). The order of the rehersal (I can only shoot the final dress rehersal) is different from the main show as they like to get the little kids home to bed earlier.</p>
<p>The show night program therefore is useless in working out what each photo was of. So, heres the new rules.</p>
<p>1. Syncronise all the clocks on all the cameras. that way all shots ordered by time taken will be of the same things.<br />
2. Have a video camera shooting all of it (all 5+ hours) so that you can match the photos with the music and be able to put them in the correct categories. The video camera should also have the time code put on the screen and have it also synchronised.<br />
This year, I had a pre-release copy of the show DVD&#8217;s available but the order made it difficult to match up. Also, during rehersal, there were some items repeated which was confusing looking at the photos.</p>
<p>The Lighting really sucked and was mostly too dark to shoot at fast enough speeds to make it blur free. I shot manual at about 1/500 on iso 1600 and tried to shoot at f2.8 for most of the single person shots and about 5.6 for group shots (to get some DOF back)</p>
<p>Also, as about 4000 photos were taken on the night, only JPG images were recorded to save time and space. of these about 3200 were available to the parents etc so thats quite a good &#8216;keeper&#8217; percentage.</p>
<p>This year was also the first year that I wandered around on stage to shoot. I was waiting to be told to get off as I was in the way but it didn&#8217;t happen. It also allowed me to get some better angles I think.</p>
<p>Anyway, as always, this post is more for me to read next year rather than for others to get much benefit from but I hope you enjoyed it :-)</p>
<p>heres a small selection of shots that I liked for some reason or other.</p>
<p><a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc9829" href="http://www.flickr.com/photos/kevinwithnall/3071800429/"><img class="alignnone" src="http://farm4.static.flickr.com/3190/3071800429_551dcddbbc_m.jpg" alt="kw_d3__dsc9829" width="160" height="240" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc0602" href="http://www.flickr.com/photos/kevinwithnall/3071905323/"><img class="alignnone" src="http://farm4.static.flickr.com/3166/3071905323_1b1594e351_m.jpg" alt="kw_d3__dsc0602" width="160" height="240" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc0555" href="http://www.flickr.com/photos/kevinwithnall/3071892505/"><img class="alignnone" src="http://farm4.static.flickr.com/3295/3071892505_7e4a139041_m.jpg" alt="kw_d3__dsc0555" width="160" height="240" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc0554" href="http://www.flickr.com/photos/kevinwithnall/3071881115/"><img class="alignnone" src="http://farm4.static.flickr.com/3060/3071881115_a5140d187e_m.jpg" alt="kw_d3__dsc0554" width="160" height="240" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc0520" href="http://www.flickr.com/photos/kevinwithnall/3071869277/"><img class="alignnone" src="http://farm4.static.flickr.com/3269/3071869277_531529e0b2_m.jpg" alt="kw_d3__dsc0520" width="160" height="240" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc0448" href="http://www.flickr.com/photos/kevinwithnall/3072693544/"><img class="alignnone" src="http://farm4.static.flickr.com/3022/3072693544_4f1b41d332_m.jpg" alt="kw_d3__dsc0448" width="160" height="240" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc0147" href="http://www.flickr.com/photos/kevinwithnall/3072671786/"><img class="alignnone" src="http://farm4.static.flickr.com/3166/3072671786_9ee1bc9de8_m.jpg" alt="kw_d3__dsc0147" width="160" height="240" /></a></p>
<p><a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc0287" href="http://www.flickr.com/photos/kevinwithnall/3072683358/"><img class="alignnone" src="http://farm4.static.flickr.com/3151/3072683358_4afc2470eb_m.jpg" alt="kw_d3__dsc0287" width="240" height="160" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc9863" href="http://www.flickr.com/photos/kevinwithnall/3072663484/"><img class="alignnone" src="http://farm4.static.flickr.com/3046/3072663484_af13d010ff_m.jpg" alt="kw_d3__dsc9863" width="240" height="160" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc1273" href="http://www.flickr.com/photos/kevinwithnall/3072753478/"><img class="alignnone" src="http://farm4.static.flickr.com/3156/3072753478_110d29e723_m.jpg" alt="kw_d3__dsc1273" width="240" height="160" /></a></p>
<p><a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc9842" href="http://www.flickr.com/photos/kevinwithnall/3071813795/"><img class="alignnone" src="http://farm4.static.flickr.com/3041/3071813795_f132637510_m.jpg" alt="kw_d3__dsc9842" width="240" height="160" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc9823" href="http://www.flickr.com/photos/kevinwithnall/3072624562/"><img class="alignnone" src="http://farm4.static.flickr.com/3190/3072624562_749af45d28_m.jpg" alt="kw_d3__dsc9823" width="240" height="160" /></a> <a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc9822" href="http://www.flickr.com/photos/kevinwithnall/3072611572/"><img class="alignnone" src="http://farm4.static.flickr.com/3253/3072611572_9875c1f5ba_m.jpg" alt="kw_d3__dsc9822" width="240" height="160" /></a></p>
<p><a class="tt-flickr tt-flickr-Small" title="kw_d3__dsc9636" href="http://www.flickr.com/photos/kevinwithnall/3071763067/"><img class="alignnone" src="http://farm4.static.flickr.com/3275/3071763067_17292c69b7_m.jpg" alt="kw_d3__dsc9636" width="240" height="160" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Some+things+I%E2%80%99ve+learned+about+dancing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D272" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Some+things+I%E2%80%99ve+learned+about+dancing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D272" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Some+things+I%E2%80%99ve+learned+about+dancing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D272" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Some+things+I%E2%80%99ve+learned+about+dancing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D272" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;headline=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;headline=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;t=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;t=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;t=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;t=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing&amp;link=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing&amp;link=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/&amp;title=Some+things+I%E2%80%99ve+learned+about+dancing" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F12%2F17%2Fsome-things-ive-learned-about-dancing%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/12/17/some-things-ive-learned-about-dancing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What the hell are we doing</title>
		<link>http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/</link>
		<comments>http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 21:57:38 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Treading Lightly]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=269</guid>
		<description><![CDATA[Yesterday, I was at the inlaws house for a pre-christmas lunch where we meet up with friends that we haven&#8217;t seen for a while. normally its quite nice and the company was certainly great but just before lunch, we had bonbons that mother in law always buys. Apart from the packaging, shipping and unnecessary expense, [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I was at the inlaws house for a pre-christmas lunch where we meet up with friends that we haven&#8217;t seen for a while. normally its quite nice and the company was certainly great but just before lunch, we had bonbons that mother in law always buys. Apart from the packaging, shipping and unnecessary expense, theres always the &#8216;toy&#8217; which is almost but not quite entirely useless and unwanted but this year had a special treat. Instead of a indulgent bang you normally get, this year they had plastic boxes about the size of matchboxes installed. then the cracker was pulled, plastic tabs were removed from it and it played a song for about 30 seconds. Thats it. Its clearly designed for a single use as theres no way to re-set it. I had to pull one apart to see what was inside, and discovered a coin battery, small IC and speaker, all packaged and assembled in china and shipped over in plastic and paper for a 30 second song.</p>
<p>These batteries alone contain heavy metals and corosive materials, the speakers of course had magnets etc in them and all this for a 30 second song.</p>
<p>I couldn&#8217;t think of a single thing these could be used for (although we could at least play the song again once I worked out how to reset them. once the contacts were closed on the device, the IC stays running and using power even once the song has finished.</p>
<p>This seems to me, to one of those things that in 100 years time, we (ok not us, but someone) will look back and look at the sort of things we do, like christmas lights, and wonder what the hell we were thinking to decide that was a good idea.</p>
<p>Linda, on hearing my amazement, said that they must be ok for the environment as they clearly had to pass a standard to be allowed to be sold didn&#8217;t they ?</p>
<p>Maybe we should have such standards. It seems the only thing stopping items like this being sold are people thinking and doing some research on whats in them and thats really too much to ask of people with lives to lead. We need some standards or at least an easy way of knowing whats good and bad to buy.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=What+the+hell+are+we+doing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D269" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=What+the+hell+are+we+doing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D269" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=What+the+hell+are+we+doing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D269" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=What+the+hell+are+we+doing+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D269" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;headline=What+the+hell+are+we+doing" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;headline=What+the+hell+are+we+doing" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;title=What+the+hell+are+we+doing" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;title=What+the+hell+are+we+doing" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;title=What+the+hell+are+we+doing" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;title=What+the+hell+are+we+doing" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;t=What+the+hell+are+we+doing" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;t=What+the+hell+are+we+doing" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;t=What+the+hell+are+we+doing" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;t=What+the+hell+are+we+doing" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=What+the+hell+are+we+doing&amp;link=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=What+the+hell+are+we+doing&amp;link=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;title=What+the+hell+are+we+doing" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;title=What+the+hell+are+we+doing" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;title=What+the+hell+are+we+doing" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/&amp;title=What+the+hell+are+we+doing" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F12%2F15%2Fwhat-the-hell-are-we-doing%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/12/15/what-the-hell-are-we-doing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everybody&#8217;s doin&#8217; it</title>
		<link>http://kevin.withnall.com/2008/12/11/everybodys-doin-it/</link>
		<comments>http://kevin.withnall.com/2008/12/11/everybodys-doin-it/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 22:08:24 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=267</guid>
		<description><![CDATA[When I discovered HDR photos, I thought it was quite exciting until I discovered everyone had already done it and I was, as usual, the last to find out about it. Well, its happened again with Tilt-Shift (or fake tilt shift as I cannot affort a tilt-shift lens) and miniature faking. I have had some [...]]]></description>
			<content:encoded><![CDATA[<p>When I discovered HDR photos, I thought it was quite exciting until I discovered everyone had already done it and I was, as usual, the last to find out about it. Well, its happened again with Tilt-Shift (or fake tilt shift as I cannot affort a tilt-shift lens) and miniature faking.</p>
<p>I have had some fun going back through old photos and giving them the treatment so heres my first few I&#8217;ve done. I quite like the effect but will try to avoid the &#8216;when all you have is a hammer, everything looks like a nail&#8217; approach and restrict it to things that will suit better in future.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="dsc_3134_mf" href="http://www.flickr.com/photos/kevinwithnall/3097329962/"><img class="alignnone" src="http://farm4.static.flickr.com/3039/3097329962_659684bc29.jpg" alt="dsc_3134_mf" width="500" height="332" /></a> <a class="tt-flickr tt-flickr-Medium" title="img_1869_mf" href="http://www.flickr.com/photos/kevinwithnall/3096487223/"><img class="alignnone" src="http://farm4.static.flickr.com/3017/3096487223_8362440b2e.jpg" alt="img_1869_mf" width="500" height="375" /></a> <a class="tt-flickr tt-flickr-Medium" title="kw_d3__dsc2826_mf" href="http://www.flickr.com/photos/kevinwithnall/3096482401/"><img class="alignnone" src="http://farm4.static.flickr.com/3011/3096482401_edeede0434.jpg" alt="kw_d3__dsc2826_mf" width="500" height="333" /></a> <a class="tt-flickr tt-flickr-Medium" title="img_4736_mf" href="http://www.flickr.com/photos/kevinwithnall/3097319996/"><img class="alignnone" src="http://farm4.static.flickr.com/3234/3097319996_fcdd75dba0.jpg" alt="img_4736_mf" width="500" height="375" /></a> <a class="tt-flickr tt-flickr-Medium" title="dsc_3222_mf" href="http://www.flickr.com/photos/kevinwithnall/3096479813/"><img class="alignnone" src="http://farm4.static.flickr.com/3167/3096479813_64dd0a86c5.jpg" alt="dsc_3222_mf" width="500" height="332" /></a> <a class="tt-flickr tt-flickr-Medium" title="dsc_3040_mf" href="http://www.flickr.com/photos/kevinwithnall/3096477675/"><img class="alignnone" src="http://farm4.static.flickr.com/3041/3096477675_588d305b1d.jpg" alt="dsc_3040_mf" width="500" height="332" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Everybody%E2%80%99s+doin%E2%80%99+it+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D267" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Everybody%E2%80%99s+doin%E2%80%99+it+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D267" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Everybody%E2%80%99s+doin%E2%80%99+it+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D267" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Everybody%E2%80%99s+doin%E2%80%99+it+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D267" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;headline=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;headline=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;t=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;t=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;t=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;t=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it&amp;link=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it&amp;link=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/12/11/everybodys-doin-it/&amp;title=Everybody%E2%80%99s+doin%E2%80%99+it" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F12%2F11%2Feverybodys-doin-it%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/12/11/everybodys-doin-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Snowy Ride 2008</title>
		<link>http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/</link>
		<comments>http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 05:56:02 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=263</guid>
		<description><![CDATA[Well, I&#8217;ve just finished the snowy ride 2008. It was quite fun but lost some of the excitement due to the fact that I&#8217;ve now done bigger and more exciting rides. Originally, Libby was going with me but a few days before leaving, she decided not to go. I ended up going with John and [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve just finished the <a href="http://snowyride.com.au/">snowy ride 2008</a>. It was quite fun but lost some of the excitement due to the fact that I&#8217;ve now done bigger and more exciting rides.</p>
<p>Originally, <a href="http://libby.withnall.com">Libby</a> was going with me but a few days before leaving, she decided not to go. I ended up going with John and Gordon and sharing a room.</p>
<p>On the friday morning, we left the office (our normal meeting place) about 0730 and the three of us went straight to Berry. there we met up with the larger group (I know via Jim) and we had about 10 bikes.</p>
<p>Well, those guys ride fast. We ended up splitting up into two groups and somehoe I was in the front group. This required me to decide if i was going to keep up or get lost. I decided to keep up but it was an effort.</p>
<p>When we got to Narooma, we had lunch and I decided to go with the B goup. This was easier but I ended up with the A group after a while (I don&#8217;t know how) and after not wanting to go the same speed as the others, was lost after Brown mountain.</p>
<p>We had to stop for a motorcycle accident as there was a helicopter on the road. It took about 40 mins to clear and the people who had gone up to sticky at it, told us the guy was not dead so that was a good thing. If he had been killed, I imagine the guys would have ridden slower for a bit but they didn&#8217;t.</p>
<p>After re-meeting up just before cooma, we then went on to Thredbo. From Jindabyne to Thredbo, it rained (quite heavily) and everything got wet.</p>
<p>During the night, the rain was constant but just in time, at about 0830, it started clearing. We decided to go riding and found the weather just got better and better. Jinndabyne  was the first stamp stop and we made time for breakfast in the cafe there. Then on to Dalgetty. This year, we took the direct route and it only took 30 mins. Last year, when I wasn&#8217;t navigating, they found a much more interesting way that took about 90 minutes. Maybe next year Ill work out what they did.</p>
<p>Anyway, Dalgetty was as much fun as last time (heaps of bikes to look at) and John wanted to go to the steam engine show at Bombala. This involved 20km of dirt roads but he was insistant. So, an hour and a half later, including 20 mins of dirt, we arrived at Bombala and the Steam engine show. It also contained heaps of Diesel and Kerosine engines so it was lots of fun. Lunch here (sausage sandwitch) and then onto Cooma and Berridale for more stamps stamp and hand in the cards. We also got some supplies (read chocolate, ice creams and milk) and headed to the ski tube entrance for the mass ride. There, we saw the girls that we had seen along the way a few times and I got a photo. I think Libby would like one of these and i have a card to order one.</p>
<p>The mass ride, while seeming like a good idea, when riding it is no different to riding in a small group because you only care about the few bikes infront and behind anyway. It was still worth doing at least once so I probably won&#8217;t do it again next year. John had his video camera out and we got some video of the ride.</p>
<p>At Thredbo, we went to the presentation (and didn&#8217;t win the bike) adn then had pizza for dinner. After that, I was tired and decided to go to bed.</p>
<p>Sunday morning was a decision point for me, I had paid for sunday night at Thredbo (it was a three night minimum) but didn&#8217;t really want to stay another day. I decided to go home and the other guys wanted to do Charlotts Pass. So, onwards on to the pass and then out again. It was quite a nice rde and I was pushing it a little trying to lay the bike over a little more. On looking at the tires, I still have about 20 degrees to go but I can&#8217;t see myself getting there. It feels like you are leaning so far when in reality you are prety upright.</p>
<p>We headed to Canberra on the main road (which is still quite a fun ride) and then on to Bungendore (Stop for lunch) . This road takes you back into Golburn and is quite a nice ride. On getting to golburn, John decided he had an idea to get more interesting roads. 30 mins later we were lost and they asked me to use the satnav to get us out. I should have used the force for all it did for us as I had, on ,my last trip, told it I don&#8217;t like U-turns. It took us on dirt roads and after 25 mins of crappy roads, we got back to where we started and then progressed to Marulan. John had another idea but we decided to stay on the highway until the illawarra highway and then, its an easy trip via Macquarie pass to home.</p>
<p>Once at home, John decided it was time to get on one wheel so we got some photos.</p>
<p>Overall, we travelled 1500km in 3 days, saw snow and tons of bikes. Aparently about 2980 registrations for the ride were there so I imagine there would have been about that many bikes also.</p>
<p>Heres some images from the trip.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="img_5241" href="http://www.flickr.com/photos/kevinwithnall/3017698075/"><img class="alignnone" src="http://farm4.static.flickr.com/3066/3017698075_11a86b98e6.jpg" alt="img_5241" width="500" height="375" /></a></p>
<p>heres the bike all loaded up. Notice nothing strapped on the seat. I&#8217;m getting better at this.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="img_5245" href="http://www.flickr.com/photos/kevinwithnall/3017702927/"><img class="alignnone" src="http://farm4.static.flickr.com/3013/3017702927_16b99e0be0.jpg" alt="img_5245" width="500" height="375" /></a></p>
<p>First fuel stop.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="img_5249" href="http://www.flickr.com/photos/kevinwithnall/3017709163/"><img class="alignnone" src="http://farm4.static.flickr.com/3066/3017709163_d44646e17e.jpg" alt="img_5249" width="500" height="375" /></a></p>
<p>Helicopter on road stopping us getting where we were going.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="img_5261" href="http://www.flickr.com/photos/kevinwithnall/3018592976/"><img class="alignnone" src="http://farm4.static.flickr.com/3144/3018592976_017421eb9e.jpg" alt="img_5261" width="500" height="375" /></a></p>
<p>Dalgetty stop. This is looking only one direction but theres lots of bikes all around.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="img_5265" href="http://www.flickr.com/photos/kevinwithnall/3018597652/"><img class="alignnone" src="http://farm4.static.flickr.com/3065/3018597652_2d1ef40cbe.jpg" alt="img_5265" width="500" height="375" /></a></p>
<p>The engine show after the dirt riding.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="img_5268" href="http://www.flickr.com/photos/kevinwithnall/3017770797/"><img class="alignnone" src="http://farm4.static.flickr.com/3177/3017770797_203d0f34bc.jpg" alt="img_5268" width="500" height="375" /></a></p>
<p>Girls with funny hats. Libby will want one of these.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="_dsc9569" href="http://www.flickr.com/photos/kevinwithnall/3017779387/"><img class="alignnone" src="http://farm4.static.flickr.com/3061/3017779387_2307947aba.jpg" alt="_dsc9569" width="500" height="333" /></a></p>
<p>John after 3 days hard riding letting off some steam.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=The+Snowy+Ride+2008+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D263" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=The+Snowy+Ride+2008+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D263" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=The+Snowy+Ride+2008+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D263" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=The+Snowy+Ride+2008+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D263" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;headline=The+Snowy+Ride+2008" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;headline=The+Snowy+Ride+2008" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;title=The+Snowy+Ride+2008" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;title=The+Snowy+Ride+2008" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;title=The+Snowy+Ride+2008" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;title=The+Snowy+Ride+2008" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;t=The+Snowy+Ride+2008" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;t=The+Snowy+Ride+2008" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;t=The+Snowy+Ride+2008" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;t=The+Snowy+Ride+2008" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+Snowy+Ride+2008&amp;link=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+Snowy+Ride+2008&amp;link=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;title=The+Snowy+Ride+2008" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;title=The+Snowy+Ride+2008" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;title=The+Snowy+Ride+2008" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/&amp;title=The+Snowy+Ride+2008" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F11%2F10%2Fthe-snowy-ride-2008%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/11/10/the-snowy-ride-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSx under vmware in windows (network and graphics display)</title>
		<link>http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/</link>
		<comments>http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 01:32:32 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=261</guid>
		<description><![CDATA[I&#8217;m writing this because I don&#8217;t want to lose it and it may be useful for somebody one day. To get OSX to work under in vmware windows, add ethernet0.virtualDev=&#8221;e1000&#8243; to the vmware  (whatever the name is).vmx file (This lets the ISX client os see the ethernet card) and to the /Library/Preferences/SystemConfiguration/com.apple.Boot.plist add some keys [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing this because I don&#8217;t want to lose it and it may be useful for somebody one day.</p>
<p>To get OSX to work under in vmware windows, add<br />
ethernet0.virtualDev=&#8221;e1000&#8243;<br />
to the vmware  (whatever the name is).vmx file (This lets the ISX client os see the ethernet card)</p>
<p>and to the</p>
<p>/Library/Preferences/SystemConfiguration/com.apple.Boot.plist</p>
<p>add some keys like<br />
&lt;key&gt;Graphics Mode&lt;/key&gt;<br />
&lt;string&gt;1280x1024x32&lt;/string&gt;</p>
<p>This should get it working properly.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=OSx+under+vmware+in+windows+%28network+and+graphics+display%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D261" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=OSx+under+vmware+in+windows+%28network+and+graphics+display%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D261" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=OSx+under+vmware+in+windows+%28network+and+graphics+display%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D261" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=OSx+under+vmware+in+windows+%28network+and+graphics+display%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D261" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;headline=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;headline=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;t=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;t=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;t=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;t=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29&amp;link=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29&amp;link=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/&amp;title=OSx+under+vmware+in+windows+%28network+and+graphics+display%29" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F11%2F05%2Fosx-under-vmware-in-windows-network-and-graphics-display%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/11/05/osx-under-vmware-in-windows-network-and-graphics-display/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Its a year today</title>
		<link>http://kevin.withnall.com/2008/10/22/its-a-year-today/</link>
		<comments>http://kevin.withnall.com/2008/10/22/its-a-year-today/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 03:01:52 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[vsg]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=259</guid>
		<description><![CDATA[Today is the 1 year anniversary of my weight loss surgery. Heres a summary for anyone who cares. I started at 126.2kg and today am 83.2kg (currently sitting at 43kg lost) , These days I can eat any type of food I like, although generally not much of it. I can even drink soft drinks [...]]]></description>
			<content:encoded><![CDATA[<p>Today is the 1 year anniversary of my weight loss surgery. Heres a summary for anyone who cares.</p>
<p>I started at 126.2kg and today am 83.2kg (currently sitting at 43kg lost) , These days I can eat any type of food I like, although generally not much of it. I can even drink soft drinks (although it takes a long time and I really have gone off them).</p>
<p>I have before and after photos, without shirt but decided it wouldn&#8217;t be a good idea to post them here as I think people really don&#8217;t want to see it.</p>
<p>The other day I was watching the new ads that were telling me to have a waist less than 102cm. I&#8217;m currently 81cm so I finally am average. If I lost another 7 kgs, I would be &#8216;normal&#8217;</p>
<p>Just thought people would like to know :-)</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Its+a+year+today+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D259" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Its+a+year+today+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D259" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Its+a+year+today+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D259" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Its+a+year+today+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D259" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;headline=Its+a+year+today" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;headline=Its+a+year+today" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;title=Its+a+year+today" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;title=Its+a+year+today" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;title=Its+a+year+today" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;title=Its+a+year+today" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;t=Its+a+year+today" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;t=Its+a+year+today" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;t=Its+a+year+today" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;t=Its+a+year+today" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Its+a+year+today&amp;link=http://kevin.withnall.com/2008/10/22/its-a-year-today/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Its+a+year+today&amp;link=http://kevin.withnall.com/2008/10/22/its-a-year-today/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;title=Its+a+year+today" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;title=Its+a+year+today" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;title=Its+a+year+today" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/10/22/its-a-year-today/&amp;title=Its+a+year+today" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F10%2F22%2Fits-a-year-today%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/10/22/its-a-year-today/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The iPhone</title>
		<link>http://kevin.withnall.com/2008/09/18/the-iphone/</link>
		<comments>http://kevin.withnall.com/2008/09/18/the-iphone/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 23:35:02 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Gadgets and Toys]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=256</guid>
		<description><![CDATA[I got the iPhone when it became available and was prepared to hate it. I of course had to get one to play with it but I was totally unprepared with how much it was less bad then other phones. I can&#8217;t say its a good phone, or PDA but it is far less bad [...]]]></description>
			<content:encoded><![CDATA[<p>I got the iPhone when it became available and was prepared to hate it. I of course had to get one to play with it but I was totally unprepared with how much it was less bad then other phones. I can&#8217;t say its a good phone, or PDA but it is far less bad then whats out there.<br />
This morning, I finally configured syncing with google hosted apps (via http://www.nuevasync.com/) with my contacts and calendar. Contacts have been syncing for a while but the Calendar was failing. It now stays updated over the air automatically.<br />
iTunes, being the worst program ever released, is also now almost useable. the PC version still sucks so I went and got a mac (maybe Apples plans all along) just to run iTunes on and it works pretty reliably. Its impossible to be watching a movie and sync the phone at the same time but that&#8217;s Apple for you.<br />
The battery life is pretty bad (even with 2.1) but its nice to be able to get access to things with a decent screen anywhere.<br />
I can&#8217;t wait until the new android mobile comes out so we will finally have an open source platform for mobiles that people can extend properly. Apples restrictive trade practices are also starting to annoy people in the development community so android might be the answer we have been waiting for.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=The+iPhone+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D256" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=The+iPhone+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D256" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=The+iPhone+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D256" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=The+iPhone+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D256" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;headline=The+iPhone" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;headline=The+iPhone" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;title=The+iPhone" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;title=The+iPhone" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;title=The+iPhone" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;title=The+iPhone" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;t=The+iPhone" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;t=The+iPhone" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;t=The+iPhone" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;t=The+iPhone" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+iPhone&amp;link=http://kevin.withnall.com/2008/09/18/the-iphone/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+iPhone&amp;link=http://kevin.withnall.com/2008/09/18/the-iphone/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;title=The+iPhone" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;title=The+iPhone" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;title=The+iPhone" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/09/18/the-iphone/&amp;title=The+iPhone" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F09%2F18%2Fthe-iphone%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/09/18/the-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Damn Olympics</title>
		<link>http://kevin.withnall.com/2008/08/12/damn-olympics/</link>
		<comments>http://kevin.withnall.com/2008/08/12/damn-olympics/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 08:53:44 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=252</guid>
		<description><![CDATA[I have been enjoying the olympics apart from having to watch channel 7 and therefore get ads (which I am very unused to). I&#8217;ve been staying up late (well, 9:30 which is late for me) watching it. Tonight however, I was distracted and sudden&#8217;y noticed myself getting annoyed. This happens sometimes when in the car [...]]]></description>
			<content:encoded><![CDATA[<p>I have been enjoying the olympics apart from having to watch channel 7 and therefore get ads (which I am very unused to). I&#8217;ve been staying up late (well, 9:30 which is late for me) watching it.</p>
<p>Tonight however, I was distracted and sudden&#8217;y noticed myself getting annoyed. This happens sometimes when in the car and I discover someone has changed the radio station away from Local ABC to some silly teeny bop station. Anyway, I looked up and noticed that I was sitting in front of &#8220;Today Tonight&#8221;. I feel so dirty, I&#8217;m sure when I shower the water won&#8217;t be hot enough to wash it all off.</p>
<p>I wouldn&#8217;t really admit this sort of thing but was hoping someone could help me get rid of this depression I now feel.</p>
<p>I really can&#8217;t believe how crappy that show is.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Damn+Olympics+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D252" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Damn+Olympics+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D252" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Damn+Olympics+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D252" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Damn+Olympics+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D252" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;headline=Damn+Olympics" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;headline=Damn+Olympics" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;title=Damn+Olympics" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;title=Damn+Olympics" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;title=Damn+Olympics" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;title=Damn+Olympics" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;t=Damn+Olympics" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;t=Damn+Olympics" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;t=Damn+Olympics" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;t=Damn+Olympics" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Damn+Olympics&amp;link=http://kevin.withnall.com/2008/08/12/damn-olympics/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Damn+Olympics&amp;link=http://kevin.withnall.com/2008/08/12/damn-olympics/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;title=Damn+Olympics" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;title=Damn+Olympics" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;title=Damn+Olympics" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/08/12/damn-olympics/&amp;title=Damn+Olympics" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F08%2F12%2Fdamn-olympics%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/08/12/damn-olympics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New front tyre</title>
		<link>http://kevin.withnall.com/2008/08/11/new-front-tyre/</link>
		<comments>http://kevin.withnall.com/2008/08/11/new-front-tyre/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 04:57:30 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/2008/08/11/new-front-tyre/</guid>
		<description><![CDATA[13869km it lasted. This was also blogged from my iPhone. Tweet This Post Plurk This Post Buzz This Post Post to Delicious Digg This Post Post to Facebook Post to MySpace Ping This Post Post to Reddit Stumble This Post]]></description>
			<content:encoded><![CDATA[<p>13869km it lasted.<br />
This was also blogged from my iPhone.</p>
<p><a href="http://kevin.withnall.com/wp-content/uploads/2008/08/l-640-480-515475c5-b56a-4ae7-b4e8-88f779d12591.jpeg"><br />
</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=New+front+tyre+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D250" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=New+front+tyre+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D250" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=New+front+tyre+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D250" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=New+front+tyre+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D250" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;headline=New+front+tyre" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;headline=New+front+tyre" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;title=New+front+tyre" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;title=New+front+tyre" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;title=New+front+tyre" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;title=New+front+tyre" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;t=New+front+tyre" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;t=New+front+tyre" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;t=New+front+tyre" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;t=New+front+tyre" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=New+front+tyre&amp;link=http://kevin.withnall.com/2008/08/11/new-front-tyre/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=New+front+tyre&amp;link=http://kevin.withnall.com/2008/08/11/new-front-tyre/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;title=New+front+tyre" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;title=New+front+tyre" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;title=New+front+tyre" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/08/11/new-front-tyre/&amp;title=New+front+tyre" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F08%2F11%2Fnew-front-tyre%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/08/11/new-front-tyre/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>There and Back Again. A motorcycles tale.</title>
		<link>http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/</link>
		<comments>http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 06:56:49 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=242</guid>
		<description><![CDATA[Apologies to tolkein for the title but it seemed appropriate. Some things about the trip I wanted to write so here goes. In total it was 10756k long. My shadow, travelled about 2m further than me as I started in the morning, ended in the afternoon. I was riding for about 133 hours, averaging about [...]]]></description>
			<content:encoded><![CDATA[<p>Apologies to tolkein for the title but it seemed appropriate.</p>
<p>Some things about the trip I wanted to write so here goes.</p>
<p>In total it was 10756k long. My shadow, travelled about 2m further than me as I started in the morning, ended in the afternoon. I was riding for about 133 hours, averaging about 80kph</p>
<p>Highlights from the trip for me were</p>
<ul>
<li>Riding to uluru</li>
<li>Spending time with the family at night stops and tourist attractions.</li>
<li>Spending time with my brother</li>
<li>Seeing mt Isa and where I stayed many years ago</li>
<li>being able to say I&#8217;ve done it :-)</li>
<li>being self sufficient on the bike</li>
<li>soverign hill</li>
<li>flagstaff hill</li>
<li>12 apostles on the pretty good ocean road</li>
<li>working out the waving protocol once and for all</li>
<li>Riding through all the places I had looked at on google earth while planning the trip</li>
<li>got to see how fast the bike could go (well, as fast as I was game to push it)</li>
<li>getting uluru photos at night with stars out</li>
<li>riding from 2 degrees to 34 degrees</li>
<li>crossing the tropic of capricorn</li>
<li>taking the kids on the back of the bike around uluru</li>
<li>having Libby on the bike for some short rides</li>
</ul>
<p>Things that are not highlights are</p>
<ul>
<li>running over a kangaroo&#8217;s neck</li>
<li>hitting budgies at 130kph</li>
<li>freezing cold mornings</li>
<li>getting lonely when by myself at nights and at attractions (the last 2 weeks)</li>
<li>cleaning bug guts off the visor every night</li>
<li>a sore ass, back and neck</li>
</ul>
<p>Overall I am very glad to have done it. I wouldn&#8217;t do the same trip again but am still happy about it. The bike worked perfectly (It would suck to not have cruise control) and all the preperation seemed to work out very well. Of all the stuff I took, I inly used about 50% of it but as there was spares and emergency tools/supplies etc, I would probably still take them again.</p>
<p>I think I would have to be really careful about travelling with someone even though by myself had lonely times. Theres proably a very smal set of people who I could travel with I&#8217;ve decided. I also think I may not be the easiest person to live with either.</p>
<p>So overall, I&#8217;m really happy. I&#8217;ve learned much about what I want, what I do and what I think is important. I had lots of time to think and blogging it made me remember it more than I otherwise would. I think next time, I would probably use a voice recorder and podcast it instead. That way I could rant while on the bike and would be more verbose. On second thoughts, this may not be a good idea as I probably rant enough already.</p>
<p>Also, as I went clockwise and we drive on the left, I think, all other things being equal, I travelled about 7.53m further than if I had have progressed counter clockwise so its true to say I went the Long Way Round.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=There+and+Back+Again.+A+motorcycles+tale.+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D242" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=There+and+Back+Again.+A+motorcycles+tale.+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D242" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=There+and+Back+Again.+A+motorcycles+tale.+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D242" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=There+and+Back+Again.+A+motorcycles+tale.+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D242" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;headline=There+and+Back+Again.+A+motorcycles+tale." title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;headline=There+and+Back+Again.+A+motorcycles+tale." title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;title=There+and+Back+Again.+A+motorcycles+tale." title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;title=There+and+Back+Again.+A+motorcycles+tale." title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;title=There+and+Back+Again.+A+motorcycles+tale." title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;title=There+and+Back+Again.+A+motorcycles+tale." title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;t=There+and+Back+Again.+A+motorcycles+tale." title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;t=There+and+Back+Again.+A+motorcycles+tale." title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;t=There+and+Back+Again.+A+motorcycles+tale." title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;t=There+and+Back+Again.+A+motorcycles+tale." title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=There+and+Back+Again.+A+motorcycles+tale.&amp;link=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=There+and+Back+Again.+A+motorcycles+tale.&amp;link=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;title=There+and+Back+Again.+A+motorcycles+tale." title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;title=There+and+Back+Again.+A+motorcycles+tale." title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;title=There+and+Back+Again.+A+motorcycles+tale." title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/&amp;title=There+and+Back+Again.+A+motorcycles+tale." title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F31%2Fthere-and-back-again-a-motorcycles-tale%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/31/there-and-back-again-a-motorcycles-tale/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Homeward Bound</title>
		<link>http://kevin.withnall.com/2008/07/31/homeward-bound/</link>
		<comments>http://kevin.withnall.com/2008/07/31/homeward-bound/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 06:32:21 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=240</guid>
		<description><![CDATA[Leaving Nambucca Heads at about 7:30 in the morning, after a cold night where the bike was soaked in dew, was not pleasant. The bike was reporting 4 degrees, and it felt colder. I had the down jacket on under the bike jacket and the heaters on full and was still freezing. It didn&#8217;t take [...]]]></description>
			<content:encoded><![CDATA[<p>Leaving Nambucca Heads at about 7:30 in the morning, after a cold night where the bike was soaked in dew, was not pleasant. The bike was reporting 4 degrees, and it felt colder. I had the down jacket on under the bike jacket and the heaters on full and was still freezing. It didn&#8217;t take long for the sun to warm things up a little and by 9am, it was about 12 degrees.</p>
<p>The day was pretty unueventful as I have ridden on these roads before and its all familure. The strange thing about riding was that it was a 600k day and this has become normal. In the &#8220;olden days&#8221;, ie before this trip,  riding 500k was a big day and a ride to newcastle would still be a reasonable ride.</p>
<p>Anyway, I got home at about 2:15pm and are yet to unpack. Its nice to see Rosie (the dog) and Libby (the wife). I walked up to the school to get the girls (with Libby and Rosie) and they were happy I was home too.</p>
<p>Now, its back to a normal life again.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Homeward+Bound+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D240" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Homeward+Bound+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D240" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Homeward+Bound+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D240" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Homeward+Bound+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D240" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;headline=Homeward+Bound" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;headline=Homeward+Bound" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;title=Homeward+Bound" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;title=Homeward+Bound" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;title=Homeward+Bound" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;title=Homeward+Bound" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;t=Homeward+Bound" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;t=Homeward+Bound" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;t=Homeward+Bound" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;t=Homeward+Bound" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Homeward+Bound&amp;link=http://kevin.withnall.com/2008/07/31/homeward-bound/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Homeward+Bound&amp;link=http://kevin.withnall.com/2008/07/31/homeward-bound/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;title=Homeward+Bound" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;title=Homeward+Bound" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;title=Homeward+Bound" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/31/homeward-bound/&amp;title=Homeward+Bound" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F31%2Fhomeward-bound%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/31/homeward-bound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leaving Noosa</title>
		<link>http://kevin.withnall.com/2008/07/31/leaving-noosa/</link>
		<comments>http://kevin.withnall.com/2008/07/31/leaving-noosa/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 06:26:24 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=237</guid>
		<description><![CDATA[I was up and ready to go about 7am. My brother told me he goes at about 7:30 in the morning and I thought it would be good timing to get out at the same time. I had parked in the garage and had the bike packed and was using the computer checking out email [...]]]></description>
			<content:encoded><![CDATA[<p>I was up and ready to go about 7am. My brother told me he goes at about 7:30 in the morning and I thought it would be good timing to get out at the same time. I had parked in the garage and had the bike packed and was using the computer checking out email etc when Marc told me he had just booked me in for a breakfast meeting. This sounded good to me as I like going to cafe&#8217;s for breakfast.</p>
<p>When starting the bike, the satnav didn&#8217;t start up. Now, this place, as I already mentioned, is really hard to find your way around in so I followed Marc (who uses occasionally but sparingly) to the cafe. I knew the satnav units should have a hold three buttons, turn around and touch your nose reset thing but I couldn&#8217;t remember it. I thought about removing the battery but its internal and aparently a real pain to get to.  So, without satnav, I just had breakfast and thought about it.</p>
<p>Marc ended up paying for breakfast too (thats two meals I owe him now) and I got to meet some other people and talk computer/bikes with them.</p>
<p>After that, I got the laptop out, plugged it into the satnav to try to get it to reset. No luck. Then I called the supplier and got an answering machine (it was 8:30) so I decided to use the backup satnav unit and go from there. This was difficult as its a different user interface, has no audio, and is harder to see.</p>
<p>About an 45 mins later, I was further down the road (at least I got out of noosaville) and had to get some fuel. I tried the supplier again and they answered me telling me to simply remove the battery. I was wrong about the batteries in this unit and it was a simple allen key to get them off. I now only needed a 1.5mm allen key to try that solution. As it turns out, I keep that sort of thing on my belt so 5 mins later, I had satnav, spoken prompts and music all back again. I really should know more about the technology I take with me and how to fix it.</p>
<p>On the way south, I saw a sign to Lismore and for no other reason than I was in Lismore hospital for a night when I was a kid, I decided to go there and look around. When I got there, I got some fuel for the bike, fuel for me and was bored in about 5 mins. Oh well, back to the main road (it was a 30k detour) and I was again heading in the right direction. When reaching coffs harbour, I really wasn&#8217;t tired, sore or bored so decided to head to Port Macquarie for the night. About 30 mins later, I was suddenlt sore, tired and it was getting dark (well, a little) so I stopped at the first vacancy sigh I saw. It was in Nambucca Heads and was quite a nice room. I then got to have a warm shower and try to loosen up some shoulder muscles before going to bed. I also got to have a $4 aero bar from the mini bar. I didn&#8217;t need to buy dinner as I still had lots of food on the bike so it was a cheap night.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Leaving+Noosa+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D237" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Leaving+Noosa+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D237" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Leaving+Noosa+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D237" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Leaving+Noosa+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D237" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;headline=Leaving+Noosa" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;headline=Leaving+Noosa" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;title=Leaving+Noosa" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;title=Leaving+Noosa" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;title=Leaving+Noosa" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;title=Leaving+Noosa" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;t=Leaving+Noosa" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;t=Leaving+Noosa" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;t=Leaving+Noosa" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;t=Leaving+Noosa" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Leaving+Noosa&amp;link=http://kevin.withnall.com/2008/07/31/leaving-noosa/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Leaving+Noosa&amp;link=http://kevin.withnall.com/2008/07/31/leaving-noosa/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;title=Leaving+Noosa" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;title=Leaving+Noosa" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;title=Leaving+Noosa" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-noosa/&amp;title=Leaving+Noosa" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F31%2Fleaving-noosa%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/31/leaving-noosa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leaving Bundaberg</title>
		<link>http://kevin.withnall.com/2008/07/31/leaving-bundaberg/</link>
		<comments>http://kevin.withnall.com/2008/07/31/leaving-bundaberg/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 06:11:54 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=232</guid>
		<description><![CDATA[I&#8217;ve already done this and the next day but wordpress ate them. I got up early but stayed in the room as it was really cold. My breakfast was delivered (pre ordered the night before) and I packed up and was ready to go about 8:30am. The Rum tour wasn&#8217;t starting till 10am (I had [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve already done this and the next day but wordpress ate them.</p>
<p>I got up early but stayed in the room as it was really cold. My breakfast was delivered (pre ordered the night before) and I packed up and was ready to go about 8:30am.</p>
<p>The Rum tour wasn&#8217;t starting till 10am (I had to be there 15 mins early) so I had some time to kill. I went to a bookshop in bundaberg and asked for a short book just for a few days. The lady sugested, and I bought, a book called &#8220;Don&#8217;t tell mum I work in the old rigs&#8221;. Its really quite funny and interesting. I then went to a coffee shop. got some decent coffee and raison toast and started reading.</p>
<p>The book was so good, I almost forgot to get up at the right time but just made the tour.  I&#8217;m not really into rum (or any alcohol for that matter) much but am always interested in doing factory tours. It was quite interesting although I don&#8217;t think she (the guide) liked it when I asked if they get their timber from sustainable plantations. Aparently they are working towards it.</p>
<p>During the tour, they explained all their different varieties of rum and how they are made and how the differ. There was one that sounded interesting. its called &#8220;Royal Liquor&#8221; and was sugested for the people who don&#8217;t like rum that much. They only sell it there (you can&#8217;t even mail order it, it has to be purchased in person). Because I did the &#8220;Gold&#8221; tour, I got 2 free drink vouchers to try in the bar at the end of the tour. Bear (sic) in mind that its 10:45 in the morning when the bar opens and I&#8217;m not a drinker anyway but I asked for one of the royal liquor things. It was really really nice. I finished it quickly and wanted another but having no real tolerance to alcohol, and having to ride to Noosa, I decided to not use the other ticket.</p>
<p>In the obligitory gift shop at the end, I got some of the liquor, and while wondering how I was going to get it on the bike, saw a sigh saying that they have a postal service. I then got some more things and boxed them all up and freighted them home.</p>
<p>It was then time to go to noosa. My brother had finally sent me his address so I programmed it in and went there. Noosaville is like a maze. Without satnav, it would be really hard to get in or out of there. I got there at about 1500 and Suzie was there. Marc and the kids were not that far behind me and soon we were talking about old times and Marc was preparing dinner (apparently this is rare). I haven&#8217;t had a lamb roast for years so this was a nice change. I live in a vegetarian house and only get meat at work lunches etc. Even those times, I don&#8217;t eat pig, lamb or veal.</p>
<p>During dinner the family has a ritual called &#8220;happy/sad&#8221; where everyone gets to talk about what made them happy today, what made them sad, and what they want go get out of tomorrow. I really enjoyed this and would like to start something similar with my family. It gives an interesting perspective on what people think is important.</p>
<p>After dinner, I spent some time with Marc on the computer and hopefully solved some issues.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Leaving+Bundaberg+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D232" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Leaving+Bundaberg+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D232" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Leaving+Bundaberg+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D232" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Leaving+Bundaberg+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D232" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;headline=Leaving+Bundaberg" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;headline=Leaving+Bundaberg" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;title=Leaving+Bundaberg" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;title=Leaving+Bundaberg" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;title=Leaving+Bundaberg" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;title=Leaving+Bundaberg" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;t=Leaving+Bundaberg" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;t=Leaving+Bundaberg" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;t=Leaving+Bundaberg" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;t=Leaving+Bundaberg" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Leaving+Bundaberg&amp;link=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Leaving+Bundaberg&amp;link=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;title=Leaving+Bundaberg" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;title=Leaving+Bundaberg" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;title=Leaving+Bundaberg" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/31/leaving-bundaberg/&amp;title=Leaving+Bundaberg" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F31%2Fleaving-bundaberg%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/31/leaving-bundaberg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>747 Oxygen tanks</title>
		<link>http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/</link>
		<comments>http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 22:09:59 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=229</guid>
		<description><![CDATA[With all this news, they don&#8217;t seem to show you what they look like. I took this photo last week from the first cargo bay in a 747-200. There are 2 tanks here. Just thought people might like to see them. Tweet This Post Plurk This Post Buzz This Post Post to Delicious Digg This [...]]]></description>
			<content:encoded><![CDATA[<p>With all this news, they don&#8217;t seem to show you what they look like. I took this photo last week from the first cargo bay in a 747-200. There are 2 tanks here.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2711154751/"><img src="http://farm4.static.flickr.com/3106/2711154751_052c86ff85.jpg" border="0" alt="747 Oxygen Tanks" width="500" height="375" /></a></p>
<p>Just thought people might like to see them.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=747+Oxygen+tanks+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D229" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=747+Oxygen+tanks+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D229" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=747+Oxygen+tanks+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D229" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=747+Oxygen+tanks+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D229" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;headline=747+Oxygen+tanks" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;headline=747+Oxygen+tanks" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;title=747+Oxygen+tanks" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;title=747+Oxygen+tanks" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;title=747+Oxygen+tanks" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;title=747+Oxygen+tanks" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;t=747+Oxygen+tanks" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;t=747+Oxygen+tanks" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;t=747+Oxygen+tanks" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;t=747+Oxygen+tanks" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=747+Oxygen+tanks&amp;link=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=747+Oxygen+tanks&amp;link=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;title=747+Oxygen+tanks" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;title=747+Oxygen+tanks" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;title=747+Oxygen+tanks" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/&amp;title=747+Oxygen+tanks" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F29%2F747-oxygen-tanks%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/29/747-oxygen-tanks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Leaving Townsville and further on</title>
		<link>http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/</link>
		<comments>http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 08:47:35 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=227</guid>
		<description><![CDATA[Well, I left Townsville and headed to Mackay. I thought it was only 250k but it was closer to 400. Wasn&#8217;t the most exciting day. When going through Bowen,  I&#8217;m not sure why I went through there as its a few k off the main road, I was sitting in a carpark eating some lunch [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I left Townsville and headed to Mackay. I thought it was only 250k but it was closer to 400. Wasn&#8217;t the most exciting day. When going through Bowen,  I&#8217;m not sure why I went through there as its a few k off the main road, I was sitting in a carpark eating some lunch when I looked up and saw the following.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2709955580/"><img src="http://farm4.static.flickr.com/3141/2709955580_e36c7a5be6.jpg" border="0" alt="IMG_5232" width="500" height="375" /></a></p>
<p>It took me a while to read it and after seeing the name, I went over and introduced myself. Theres not that many withnalls around so its interesting to find one, especially by chance. That&#8217;s Lex in the photo.</p>
<p>On leaving Bowen, I passed the Big Mango and took this photo.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2709961482/"><img src="http://farm4.static.flickr.com/3028/2709961482_bb59dc7b09.jpg" border="0" alt="IMG_5234" width="500" height="375" /></a></p>
<p>Then, when I arrived at Mackay, I found the bike service place first so I could get somewhere close to sleep. I found somewhere a few k away and it was quite nice.</p>
<p>I got to the service place at 8am and wanted them to do the service quickly. They told me it would be 10am when its finished. I went to waste some time at a cafe and read the papers. At 10am, I went back to the dealer only to find it was still 30mins to go.</p>
<p>After I picked up the bike, I started riding out and decided to go to Bundaberg for the night (I was previously thinking of Rockhampton).</p>
<p>When I reached Rockhampton, the sky looked bad. The previous nights news said there would be 1mm or so rain (and confirmed by the paper I read that morning) so I decided to put some wet weather gear on. I&#8217;m quite glad I did. I had serious rain (although only for about 30 mins) that was going sideways, and again when I thought It couldn&#8217;t get worse, it started hailing. Hail really urts your fingers when it hits.</p>
<p>While riding, I decided I might go straight to Noosa and see if my brother could house me early. About 2 mins after programming the GPS, he called and said he couldn&#8217;t and I ended up in Bundaberg.</p>
<p>So, I&#8217;m now sitting in the hotel room (its cold and the aircon is taking ages to heat up) and I&#8217;ve already booked the tour of the bundaberg rum factory in the morning. Then, I&#8217;ll get to noosa by about 4pm and see some more family, although this family visit will be expected.</p>
<p>Then, Onto Coffs Harbour and Home.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Leaving+Townsville+and+further+on+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D227" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Leaving+Townsville+and+further+on+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D227" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Leaving+Townsville+and+further+on+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D227" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Leaving+Townsville+and+further+on+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D227" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;headline=Leaving+Townsville+and+further+on" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;headline=Leaving+Townsville+and+further+on" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;title=Leaving+Townsville+and+further+on" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;title=Leaving+Townsville+and+further+on" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;title=Leaving+Townsville+and+further+on" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;title=Leaving+Townsville+and+further+on" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;t=Leaving+Townsville+and+further+on" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;t=Leaving+Townsville+and+further+on" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;t=Leaving+Townsville+and+further+on" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;t=Leaving+Townsville+and+further+on" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Leaving+Townsville+and+further+on&amp;link=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Leaving+Townsville+and+further+on&amp;link=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;title=Leaving+Townsville+and+further+on" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;title=Leaving+Townsville+and+further+on" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;title=Leaving+Townsville+and+further+on" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/&amp;title=Leaving+Townsville+and+further+on" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F28%2Fleaving-townsville-and-further-on%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/28/leaving-townsville-and-further-on/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Some more photos</title>
		<link>http://kevin.withnall.com/2008/07/27/some-more-photos/</link>
		<comments>http://kevin.withnall.com/2008/07/27/some-more-photos/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 22:00:07 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=225</guid>
		<description><![CDATA[I got my camera working (after it got moist) but couldn&#8217;t upload last night. heres some photos. Me on the ski. This was quite fun. My baby on the ferry. I was quite concerned it might get too bumpy and come off the stand. This was the view after they cleaned a drain. Before this, [...]]]></description>
			<content:encoded><![CDATA[<p>I got my camera working (after it got moist) but couldn&#8217;t upload last night.</p>
<p>heres some photos.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2705031840/"><img src="http://farm4.static.flickr.com/3171/2705031840_4d8d3b2482.jpg" border="0" alt="Me on a Ski" width="500" height="375" /></a></p>
<p>Me on the ski. This was quite fun.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2704202943/"><img src="http://farm4.static.flickr.com/3079/2704202943_0e5b0a6451.jpg" border="0" alt="My baby on the RORO" width="500" height="375" /></a></p>
<p>My baby on the ferry. I was quite concerned it might get too bumpy and come off the stand.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2704196325/"><img src="http://farm4.static.flickr.com/3201/2704196325_27f6f02149.jpg" border="0" alt="Wilton Water" width="500" height="375" /></a></p>
<p>This was the view after they cleaned a drain. Before this, my room door was a waterfront.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2704190057/"><img src="http://farm3.static.flickr.com/2044/2704190057_0c34d7aeab.jpg" border="0" alt="All Loaded Up for the wet" width="500" height="375" /></a></p>
<p>My bike all ready for a vry wet day. The rain cover on the backpack and the tank bag were both ineffectual at keeping water out.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Some+more+photos+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D225" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Some+more+photos+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D225" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Some+more+photos+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D225" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Some+more+photos+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D225" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;headline=Some+more+photos" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;headline=Some+more+photos" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;title=Some+more+photos" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;title=Some+more+photos" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;title=Some+more+photos" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;title=Some+more+photos" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;t=Some+more+photos" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;t=Some+more+photos" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;t=Some+more+photos" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;t=Some+more+photos" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Some+more+photos&amp;link=http://kevin.withnall.com/2008/07/27/some-more-photos/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Some+more+photos&amp;link=http://kevin.withnall.com/2008/07/27/some-more-photos/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;title=Some+more+photos" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;title=Some+more+photos" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;title=Some+more+photos" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/27/some-more-photos/&amp;title=Some+more+photos" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F27%2Fsome-more-photos%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/27/some-more-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More townsville</title>
		<link>http://kevin.withnall.com/2008/07/26/more-townsville/</link>
		<comments>http://kevin.withnall.com/2008/07/26/more-townsville/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 10:30:33 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=223</guid>
		<description><![CDATA[Today, I had a plan. I have decided that I&#8217;m the sort of person who needs a plan. When I go snow skiing, I always need to have a plan to get somwehere, when I get there I ust make a new plan and go somewhere else. I was not really looking forward to today. [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I had a plan.</p>
<p>I have decided that I&#8217;m the sort of person who needs a plan. When I go snow skiing, I always need to have a plan to get somwehere, when I get there I ust make a new plan and go somewhere else.</p>
<p>I was not really looking forward to today. I&#8217;ve been getting lonely and wondering what the point of all this was.</p>
<p>But, as I said, today I had a plan. I decided to spend $378 on a Jet Ski tour of Magnetic Island (all around it) and It was good to have something planned. I had to get up at 6:20. Normally I would already be up, but I set my alarm anyway. When it went off, I really could use some more sleep. Then, Ihad to find the ferry terminal and get on the RORO boat (Roll On Roll Off) with the bike. That was the 7:10 boat and I managed to find it. Aparently you need to go to the correct terminal if you want the prepaid ticket to work.</p>
<p>Then, onto Horseshoe Bay. I was there early because of requiring to get the early RORO boat and had an hour to kill. I found a great cafe that had really nice coffee and that, with some raison toast, last weeks paper and I was set for the hour.</p>
<p>It would appear that up here, people don&#8217;t seem to care what papers they read. In Alice etc, I expected this but not in Townsville. Anyway, As long as I hadn&#8217;t read it previously, its all good.</p>
<p>Then onto the JetSki tour. This was really really fun. They were the 4 stroke sealed engines (I had checked before booking) so they didn&#8217;t leak oil like the 2 stroke engines do. They had 155hp and were great. Along the way, we saw a Dugong. The ski infront of me (the Guide) almost ran over it (what imagery that would have been for a semi eco tour) but missed and we all got to give it plenty of space and watch if for a while. It can&#8217;t have been too disturbed because they are normally quite shy.</p>
<p>Then, at the end of that, I got back on the RORO and back to townsville to warm up in a shower.</p>
<p>Then, as Linda and David arrived in townsville, I went to see them and have dinner. This also gave me a chance to unload all the extra stuff I no longer needed (stuff that was only for desert travel like shovel, water bottles etc).</p>
<p>Now, its time for bed, Tomorrow I need to get to Mackay but as its only a short trip, Ill leave late and have an easy day. Plus, after some days of nice weather, It will be sad to leae Townsville.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=More+townsville+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D223" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=More+townsville+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D223" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=More+townsville+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D223" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=More+townsville+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D223" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;headline=More+townsville" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;headline=More+townsville" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;title=More+townsville" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;title=More+townsville" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;title=More+townsville" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;title=More+townsville" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;t=More+townsville" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;t=More+townsville" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;t=More+townsville" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;t=More+townsville" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=More+townsville&amp;link=http://kevin.withnall.com/2008/07/26/more-townsville/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=More+townsville&amp;link=http://kevin.withnall.com/2008/07/26/more-townsville/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;title=More+townsville" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;title=More+townsville" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;title=More+townsville" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/26/more-townsville/&amp;title=More+townsville" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F26%2Fmore-townsville%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/26/more-townsville/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What a difference a day makes</title>
		<link>http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/</link>
		<comments>http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 07:42:51 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=221</guid>
		<description><![CDATA[Well, this morning, I got up, had a HOT shower (the water now works) moved all the wet stuff around so more of it dries and went out to see what townsville has to offer. The tourist information centre said the diving was crap, jet-skiing was really cold and beaches really cold and crap. So, [...]]]></description>
			<content:encoded><![CDATA[<p>Well, this morning, I got up, had a HOT shower (the water now works) moved all the wet stuff around so more of it dries and went out to see what townsville has to offer.</p>
<p>The tourist information centre said the diving was crap, jet-skiing was really cold and beaches really cold and crap.</p>
<p>So, I went to a movie (the new Batman one) and when I came out, the sky was mostly blue, the sun was out ad it was definatly warming up. I got some shoes and on getting back to the room, 80% or the stuff is dry and the rest should be done tomorrow.</p>
<p>I went to the Tropical Queensland Museum and its quite good. Its like a mixture of the Questacon in canberra, the Maratime museum in sydney and the sydney natural history museum. Overall, its quite good and worth going to. It would however be much better with the kids and wife here. I&#8217;m finding that I&#8217;m not really a solatary traveller.</p>
<p>I also went for a massage today and hopefully that should help.</p>
<p>Tomorrow I will go onto the Billabong animal park and will see what its like.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=What+a+difference+a+day+makes+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D221" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=What+a+difference+a+day+makes+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D221" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=What+a+difference+a+day+makes+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D221" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=What+a+difference+a+day+makes+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D221" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;headline=What+a+difference+a+day+makes" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;headline=What+a+difference+a+day+makes" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;title=What+a+difference+a+day+makes" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;title=What+a+difference+a+day+makes" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;title=What+a+difference+a+day+makes" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;title=What+a+difference+a+day+makes" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;t=What+a+difference+a+day+makes" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;t=What+a+difference+a+day+makes" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;t=What+a+difference+a+day+makes" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;t=What+a+difference+a+day+makes" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=What+a+difference+a+day+makes&amp;link=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=What+a+difference+a+day+makes&amp;link=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;title=What+a+difference+a+day+makes" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;title=What+a+difference+a+day+makes" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;title=What+a+difference+a+day+makes" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/&amp;title=What+a+difference+a+day+makes" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F24%2Fwhat-a-difference-a-day-makes%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/24/what-a-difference-a-day-makes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Townsville</title>
		<link>http://kevin.withnall.com/2008/07/23/townsville/</link>
		<comments>http://kevin.withnall.com/2008/07/23/townsville/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 10:05:49 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=219</guid>
		<description><![CDATA[I had a bad night last night. About 9pm I started vomiting and sweating etc. It really sucked and took until about 2:30am till I finally got to sleep. In the morning, I felt better and decided to ride to Hugenden for the night (only 200k ish) and not have a big day. Well, when [...]]]></description>
			<content:encoded><![CDATA[<p>I had a bad night last night. About 9pm I started vomiting and sweating etc. It really sucked and took until about 2:30am till I finally got to sleep.</p>
<p>In the morning, I felt better and decided to ride to Hugenden for the night (only 200k ish) and not have a big day. Well, when I looked outside, there was a lake at my front door and it was still raining. Not drizzling, but seriously raining.</p>
<p>The maps said that the road was sealed. I guess thats the problem with the english language. Sealed is present tense as well as past tense. I know which they meant on the maps now.</p>
<p>I was riding through water up to the foot pegs deep and it really really really sucked.</p>
<p>As I&#8217;ve mentioned previously, riding in rain is ok until you have to turn your head or similar because thats when the rain gets in. Well, today I knew I was riding through rain and made certain that every layer was setup correctly like gloves indide sleeves, wet weather pants higher and under the jacket, Jaked collar done up tight and inside helmet neck etc.</p>
<p>Well, that was all great for a while but there are these thingsd called road trains that stuff up all the plans. They put out so much water you just get soaked from every direction.</p>
<p>When youre riding normally, if you get an itchy nose, your visor opens and you can scratch (allbeit with a gloved finger). When its raining, you can&#8217;t do that as opening the visor breaks the seal on the top and water can come in. Thats not really so bad as it means you get a wet face but the real problem is that water comes on the inside of the visor which then gets between the fog shield and the visor and makes things like seeing whats on the road difficult. So, understandibly you don&#8217;t open the visor as seeing is important. Well, sometimes an itchy nose just won&#8217;t go away and you have to open it up.</p>
<p>So, by the time I got to Hugenden, I had a visor well and truely wet inside and out.</p>
<p>On the bike, I have a computer (apart from the satnav stuff) that tells me things like Tyre pressure, temps, fuel economy, average speed and distance remaining on this tank. When I left Wilton, the guage was reading 3/4 and the range was reading 600k (normally a full tank reads about 480k). I knew it was reading high but thought 3/4 of a tank would be heaps. Well, within 20k of leaving, it was reading 1/2 a tank and 250k range. Not so bad as the whole trip was only 206k. It always reads high and bu the time I was 80% through the trip, the range was reading less than the distane remaining to the next fuel. Bugger.</p>
<p>When I got to Hugenden, I had been riding on zero range for about 10k and I put in 21L of fuel (the tank is 24l) so apart from making me feel stressed, the range thing sems to serve no real purpose.</p>
<p>While filling up, and playing the sympathy card, I started speaking to the station operator about places to sleep and she told me that if history is any guide, If I spent a night there I wouldn&#8217;t be able to get to townsville as the roads would be closed.</p>
<p>I decidd to go to the next town. I was wet anyway and thought I couldn&#8217;t get any more miserable. Well, 200k further on, the wind came up and the fog rolled in. It sucked. I couldn&#8217;t see the front of the road train I Was following so overtaking was out of the question. The dirty air was making more even more wet and I was also getting hit with rocks. Also, If you think thurning your head gets you moist, every time youget fuel it gets worse as the gloves have to come off, the helmet comes off (servos get upset if you leave it on) and drips go everywhere. By the time I had done another 200k, I was freezing cold and soaked everywhere. I seriously don&#8217;t know how I could get wet underwear below 3 layers but I did. I decided to, when getting more fuel as I wasn&#8217;t going to get caught nearly running out again, change jackets. So now, I was 200k from townsville (should be nice and warm), wet and cold and hopefully getting no colder. I was now wearing a down jacket, had the heated seats on max and the heated grips on max. I really wanted to kill the person who tells you queensland is beautiful one day and perfect the next.</p>
<p>I was really annoyed when getting to townsville. Its bigger than I remember and the last 20k took ages. I had to remember what traffic lights were all about again. I went to the tourist information centre, of course had to take the helmet off again (it was now soaked inside and out including the linings) and try to find a room.</p>
<p>The one requirement I gave them was I wanted a bath in the room so I could thaw out (and help my back). She explained that again to the person at all the hotels she tried and finally found one (on the 3rd try) that had a bath. I was then booked in, put the wet gear back on again and, while trying to see through a visor that was really wet, found the hotel.</p>
<p>On getting checked in and getting all my gear in the room, I started the bath and then started trying to get the air conditioner going on hot. When getting undressed and back to the bath, I discovered the water was COLD. I called reception and explained that it was cold, his repsonse was that he knew it would be cold. How could it be hot when he only just turned it on? He then assured me it would be warm in the morning,</p>
<p>So, after finding out that the air conditioner reverse cycle function doesn&#8217;t work, I&#8217;m stting on the lounge under a blanket getting warm from the laptop.</p>
<p>At least theres a washing machine and dryer in the room.</p>
<p>Libby would be totally unimpressed with the room. Don&#8217;t misunderstand, the room itself is great, but as soon as I got in I dumped all bags and wet things across every chair and surface available. It looks like a bigger version of my desk at work.</p>
<p>According to the weather report, the rain should go tomorrow afternoon so that gives me 2 full sunny days in townsville to see the sights. Then, its onto Mackay and a bike service.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Townsville+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D219" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Townsville+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D219" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Townsville+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D219" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Townsville+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D219" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/23/townsville/&amp;headline=Townsville" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/23/townsville/&amp;headline=Townsville" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/23/townsville/&amp;title=Townsville" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/23/townsville/&amp;title=Townsville" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/23/townsville/&amp;title=Townsville" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/23/townsville/&amp;title=Townsville" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/23/townsville/&amp;t=Townsville" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/23/townsville/&amp;t=Townsville" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/23/townsville/&amp;t=Townsville" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/23/townsville/&amp;t=Townsville" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Townsville&amp;link=http://kevin.withnall.com/2008/07/23/townsville/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Townsville&amp;link=http://kevin.withnall.com/2008/07/23/townsville/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/23/townsville/&amp;title=Townsville" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/23/townsville/&amp;title=Townsville" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/23/townsville/&amp;title=Townsville" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/23/townsville/&amp;title=Townsville" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F23%2Ftownsville%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/23/townsville/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Qantas Museum and on to Winton</title>
		<link>http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/</link>
		<comments>http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 08:36:59 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=217</guid>
		<description><![CDATA[Well, this morning, I got up at about 6am and then had to watch silly tv until 9am to be able to go to the QANTAS museum. Lets just say firstly that its fantastic. I&#8217;ve been to a few museums in my time and this one is done really well. Theres lots of models, replicas [...]]]></description>
			<content:encoded><![CDATA[<p>Well, this morning, I got up at about 6am and then had to watch silly tv until 9am to be able to go to the QANTAS museum.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2692299808/"><img src="http://farm4.static.flickr.com/3296/2692299808_35fca95f8f.jpg" border="0" alt="Qantas Museum" width="500" height="375" /></a></p>
<p>Lets just say firstly that its fantastic.</p>
<p>I&#8217;ve been to a few museums in my time and this one is done really well. Theres lots of models, replicas and original parts. There are video and audio areas and lots of things to read. They also made, in the cafe, the best coffee I&#8217;ve had on this trip so far.</p>
<p>They offer 3 tours, the 747 tour, 707 tour, and the 747 detailed tour with wing walk. of course, I did all 3. That with the museum was $115 so its not cheap but its worth it.</p>
<p><a class="tt-flickr tt-flickr-Small" href="http://www.flickr.com/photos/kevinwithnall/2692305596/"><img src="http://farm4.static.flickr.com/3242/2692305596_22855c590b_m.jpg" border="0" alt="747-200 Wing Walk" width="240" height="180" /></a><a class="tt-flickr tt-flickr-Small" href="http://www.flickr.com/photos/kevinwithnall/2692302840/"><img src="http://farm4.static.flickr.com/3202/2692302840_ab9d75f42c_m.jpg" border="0" alt="747-200 Wing Walk" width="240" height="180" /></a></p>
<p>These were from the wing walk tour</p>
<p><a class="tt-flickr tt-flickr-Small" href="http://www.flickr.com/photos/kevinwithnall/2691500725/"><img src="http://farm4.static.flickr.com/3002/2691500725_0fef9e28d5_m.jpg" border="0" alt="747-200 Manual Wheel Controls" width="180" height="240" /></a><a class="tt-flickr tt-flickr-Small" href="http://www.flickr.com/photos/kevinwithnall/2692310060/"><img src="http://farm4.static.flickr.com/3255/2692310060_574cd756bd_m.jpg" border="0" alt="747-200 Avionics Bay" width="240" height="180" /></a></p>
<p>This part is in the avionics bay. In the floor of the cabin, there&#8217;s a hatch and when opened, it reveals a ladder going down. This is where you see in all the movies where people have to go and wind down the landing gear manually. It also leads back to access the cargo area. This was probably the most fun parts of the tour.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2691505075/"><img src="http://farm4.static.flickr.com/3068/2691505075_26a78079fc.jpg" border="0" alt="747-200 Flight Deck" width="500" height="375" /></a></p>
<p>This was the Flight deck of the 747 and would make a great base for a simulator&#8230;</p>
<p><a class="tt-flickr tt-flickr-Small" href="http://www.flickr.com/photos/kevinwithnall/2691500725/"><br />
</a></p>
<p>After the tours, I had to leave (about 2:30) to get to winton. It started raining on the way and although it was not heavy, it slowed me down a little. My back and neck was also getting sore. I&#8217;m not really looking forward to the trip tomorrow and may have to cut it short.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2691510167/"><img src="http://farm4.static.flickr.com/3115/2691510167_c5d3b1f113.jpg" border="0" alt="Waltzing Matilda" width="500" height="375" /></a></p>
<p>In winton, I went to the wasltzing matilda museum. It was a series of ups and downs. The down first as I thought it was going to be crappy, then the realsation that it was $19 so should be pretty good (that was the up). Then I passed through the doors still on a high to a audio visual presentation that was quite interesting. There was another down when I realised that that was the best thing in there and the rest was a smaller version of &#8216;Kevs tracter museum&#8217; (see previous posts) but not as good. Oh well, its only $19.</p>
<p>Then it was onto a supermarket as I had a craving for some chocolate. That solved, I also got some tennis balls to roll on to try to fix my back. It helped but not that well and I&#8217;ll get onto the voltarin tonight I think.</p>
<p>Tomorrow is the 650k ish to Townsville (or maybe one of the towns along the way if I&#8217;m too sore) and maybe some decent internet speed and hopefully a chiropractor.</p>
<p>I&#8217;ll have a few days there and hope to do lots of the local attractrions. The diving place called me and theres not much available but they hope to get me on the yongala.</p>
<p>I also was finally annoyed yesterday with the chin fur and decided to remove it. This will upset Libby as she wanted me to do it weeks ago and I wanted to continue the expiriment. Oh well, at least she may like me again when I get home.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Qantas+Museum+and+on+to+Winton+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D217" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Qantas+Museum+and+on+to+Winton+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D217" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Qantas+Museum+and+on+to+Winton+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D217" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Qantas+Museum+and+on+to+Winton+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D217" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;headline=Qantas+Museum+and+on+to+Winton" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;headline=Qantas+Museum+and+on+to+Winton" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;title=Qantas+Museum+and+on+to+Winton" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;title=Qantas+Museum+and+on+to+Winton" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;title=Qantas+Museum+and+on+to+Winton" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;title=Qantas+Museum+and+on+to+Winton" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;t=Qantas+Museum+and+on+to+Winton" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;t=Qantas+Museum+and+on+to+Winton" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;t=Qantas+Museum+and+on+to+Winton" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;t=Qantas+Museum+and+on+to+Winton" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Qantas+Museum+and+on+to+Winton&amp;link=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Qantas+Museum+and+on+to+Winton&amp;link=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;title=Qantas+Museum+and+on+to+Winton" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;title=Qantas+Museum+and+on+to+Winton" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;title=Qantas+Museum+and+on+to+Winton" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/&amp;title=Qantas+Museum+and+on+to+Winton" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F22%2Fqantas-museum-and-on-to-winton%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/22/qantas-museum-and-on-to-winton/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Leaving Mt Isa &#8211; Arriving at Longreach</title>
		<link>http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/</link>
		<comments>http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 22:29:00 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=214</guid>
		<description><![CDATA[I wanted to get some shoes at mt isa but the shops were not open until about 9am and I needed to get a move on. So, at about 7:30 I left the expensive crappy room I had and hit the road. As it was early, I wanted to follow some other cars out to [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to get some shoes at mt isa but the shops were not open until about 9am and I needed to get a move on. So, at about 7:30 I left the expensive crappy room I had and hit the road. As it was early, I wanted to follow some other cars out to avoid hitting any suicidal roos and this worked well for a few hours.  I rode through Cloncurry and was getting colder (it was 15 degrees and I only had on the bike jacket). By the time I got to McKinlay I was freezing and decided to put on the down jacket and get some breakfast at te roadhouse. This worked well and I was soon warm enough to ride comfortably.</p>
<p>I arrived at longreach about 3pm after going 650k. I&#8217;ve worked out the sore back thing with stretching, the sore elbow thing (the chiro showd me what to do with that) but I&#8217;m not getting sore shoulders and neck and have no idea what to do about it. Oh well, I don&#8217;t have many more big days so it should be ok.</p>
<p>I went to the Stockmans Museum and while it was interesting, It wasn&#8217;t what I had hoped it would be. Don&#8217;t get me wrong, its done very well, I guess its something I don&#8217;t find that interesting though. I then went out to get some dinner from a local take away shop and some newspapers.</p>
<p>Its now Tuesday morning and I have a 11am tour booked in at the QANTAS museum.They have the original (First QANTAS jet) 707 and a 747 there for tours and I will be doing both.</p>
<p>After that, I have 180k to ride back to winton for tonight (so its an easy day today) but 582k for tomorrow to get me to Townsville. I then, it would appear, have 4 nights there so I should be able to do some diving and see all the local attractions as well as have some relax time to read a book or so.</p>
<p>I&#8217;ll take some photos of the QANTAS stuff and post next time.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D214" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D214" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D214" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D214" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;headline=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;headline=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;t=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;t=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;t=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;t=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach&amp;link=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach&amp;link=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/&amp;title=Leaving+Mt+Isa+%E2%80%93+Arriving+at+Longreach" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F22%2Fleaving-mt-isa-arriving-at-longreach%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/22/leaving-mt-isa-arriving-at-longreach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mt Isa</title>
		<link>http://kevin.withnall.com/2008/07/20/mt-isa/</link>
		<comments>http://kevin.withnall.com/2008/07/20/mt-isa/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 07:31:23 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=208</guid>
		<description><![CDATA[This morning, I rode the 189km to mt isa and went to the information centre. There, I purchased a ticket for the Riversleigh Fossil exhibit and the Outback Experience and Mine Tour. Firstly the outback experience, its a small museum with some videos and rock samples. Quite interesting watching the videos but they don&#8217;t sell [...]]]></description>
			<content:encoded><![CDATA[<p>This morning, I rode the 189km to mt isa and went to the information centre.</p>
<p>There, I purchased a ticket for the Riversleigh Fossil exhibit and the Outback Experience and Mine Tour.</p>
<p>Firstly the outback experience, its a small museum with some videos and rock samples. Quite interesting watching the videos but they don&#8217;t sell the DVD so I don&#8217;t remember most of it.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2684846446/"><img src="http://farm4.static.flickr.com/3204/2684846446_e90b19e2cb.jpg" border="0" alt="Outback Adventure" width="500" height="375" /></a></p>
<p>Then onto the Riverleigh Fossil museum. This was a typical museum with fossils on display and some re-creations of animals from 10 thousand to 50 million years ago. Its done quite well and the video at the start was also quite interesting explaining the situation that allowed so many animals to be fossilised.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2684826864/"><img src="http://farm4.static.flickr.com/3077/2684826864_a188ff7538.jpg" border="0" alt="Big Furry Thing" width="375" height="500" /></a></p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2684003075/"><img src="http://farm4.static.flickr.com/3015/2684003075_f3e2b40a87.jpg" border="0" alt="Riversleigh Fossils" width="500" height="375" /></a></p>
<p>The mine tour was next and although I was 25 mins early, they were waiting for me. I then updated my watch to Queensland time and apologised accordingly. This tour, which was something I was really looking forward to was what has become of the old underground tour. you see, in the olden days when I spent some time at Mt Isa, the underground tour was for older people (18 or over) and I was not old enough. I did the surface tour many times and really wanted to go underground. Well, apparently in the years between, someone got lost on a tour and sued MIM for damages after falling down a hole and breaking a leg. Now, the underground mine tour is in a disused section of the mine and is like an underground museum.</p>
<p>I was very disapointed when I found out about the change but went along anyway. The tour was very informative and really entertaining. I&#8217;m so glad I did it and would recommend it to anyone. It was also interesting to see equipment that was in use in the &#8216;olden days&#8217; as well as some of the stuff they used when I was here 20 years ago.</p>
<p>I also went for a ride to where I used to live when here (My mothers house). Its had some work done although by the look of the yard,not for a long time.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2684812854/"><img src="http://farm4.static.flickr.com/3064/2684812854_b7229e258e.jpg" border="0" alt="Old House" width="500" height="375" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Mt+Isa+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D208" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Mt+Isa+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D208" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Mt+Isa+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D208" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Mt+Isa+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D208" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;headline=Mt+Isa...." title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;headline=Mt+Isa...." title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;title=Mt+Isa" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;title=Mt+Isa" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;title=Mt+Isa" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;title=Mt+Isa" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;t=Mt+Isa" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;t=Mt+Isa" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;t=Mt+Isa" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;t=Mt+Isa" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Mt+Isa&amp;link=http://kevin.withnall.com/2008/07/20/mt-isa/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Mt+Isa&amp;link=http://kevin.withnall.com/2008/07/20/mt-isa/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;title=Mt+Isa" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;title=Mt+Isa" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;title=Mt+Isa" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/20/mt-isa/&amp;title=Mt+Isa" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F20%2Fmt-isa%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/20/mt-isa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The longest day so far</title>
		<link>http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/</link>
		<comments>http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 07:30:40 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=205</guid>
		<description><![CDATA[This morning I left Alice at about 8:30 ready for a 500km ish ride. I wasn&#8217;t looking forward to a longish ride after quite a few days off but I didn&#8217;t really have an option. The ride passed pretty smoothly. Crossing the tropic of capricorn shortly after leaving alice it was all going quite quickly [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I left Alice at about 8:30 ready for a 500km ish ride. I wasn&#8217;t looking forward to a longish ride after quite a few days off but I didn&#8217;t really have an option. The ride passed pretty smoothly. Crossing the tropic of capricorn shortly after leaving alice it was all going quite quickly and smoothly.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2684769052/"><img src="http://farm4.static.flickr.com/3227/2684769052_078fe79ddf.jpg" border="0" alt="Into the Tropics" width="500" height="375" /></a></p>
<p>Not much interesting to report until passing the Devils Marbles. This was quite interesting and just to make my fears of missing them seem silly, you basically drive right through them. I could spend lots of time there taking photos, it would be gret at sunset and sunrise, but I had to get moving on.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2683968283/"><img src="http://farm4.static.flickr.com/3149/2683968283_13a0db018a.jpg" border="0" alt="Devils Marbels" width="500" height="375" /></a><br />
<a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2684775286/"><img src="http://farm4.static.flickr.com/3003/2684775286_9eca937afe.jpg" border="0" alt="Devils Marbels" width="500" height="375" /></a></p>
<p>When I got to tennant creek, I got some fuel (3rd fuel for the day) and decided to get to Threeways for the night.<br />
On arriving there, I was told there was no more rooms. I wasn&#8217;t that happy as it was either back tracking 25k to Tennant creek or heading on 187km to Barkley Homestead Roadhouse. Its the only roadhouse mentioned on my map so I assumed it was going to be substantial.<br />
So, counting down the k&#8217;s (the last 50 always seems to take ages) I finally arrived, filled up and went inside to get a room (and pay for fuel, 4th fill up).<br />
I was a little disappointed when they told me that there were no rooms left and I need a tent (which I left in the caravan in Alice this morning).<br />
Bugger again.<br />
The options I had were 187 + 25k back to Tennant creek or 280km to camooweal. I chose to proceed rather than going back. My shadow was getting long and I really really didn&#8217;t want to be riding at night. I had visions of starting all over again and needing to go the extra 200kmish to Mt Isa.<br />
On entering camooweal (again with the last 50km taking ages) I found a room. The last 50k was even worse this time because the last 13 of it were in Qld where theres a 110 limit. IT seems so slow now that I&#8217;m used to a tad faster than that.<br />
Anyway, the room they offered me was $28 with shared everything. I opted for the only other available room at $70 with its own shower, toilet, kettle and TV.<br />
So, from me worring about a 500km ride, i ended up doing 990km.<br />
I have tried to make some calls on the sat phone (no Optus here) and its not working either. The internet connection (Telstra) says theres signal only until you start to connect, then it goes away.</p>
<p>Its 189km to Mt Isa tomorrow so theres no reason to leave too early (but I probably will anyway).</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=The+longest+day+so+far+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D205" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=The+longest+day+so+far+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D205" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=The+longest+day+so+far+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D205" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=The+longest+day+so+far+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D205" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;headline=The+longest+day+so+far" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;headline=The+longest+day+so+far" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;title=The+longest+day+so+far" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;title=The+longest+day+so+far" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;title=The+longest+day+so+far" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;title=The+longest+day+so+far" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;t=The+longest+day+so+far" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;t=The+longest+day+so+far" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;t=The+longest+day+so+far" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;t=The+longest+day+so+far" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+longest+day+so+far&amp;link=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+longest+day+so+far&amp;link=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;title=The+longest+day+so+far" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;title=The+longest+day+so+far" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;title=The+longest+day+so+far" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/&amp;title=The+longest+day+so+far" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F20%2Fthe-longest-day-so-far%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/20/the-longest-day-so-far/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The last day in Alice</title>
		<link>http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/</link>
		<comments>http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 07:01:07 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=203</guid>
		<description><![CDATA[Well, today, being my last day in Alice Springs, I was fortunate enough to get to a dentist. I called at opening time and begged. I was told they would squeeze me in at 1pm so, at 1pm, I was on their door step. I had to fill in forms, use HICAPS, pay the gap, [...]]]></description>
			<content:encoded><![CDATA[<p>Well, today, being my last day in Alice Springs, I was fortunate enough to get to a dentist. I called at opening time and begged. I was told they would squeeze me in at 1pm so, at 1pm, I was on their door step.</p>
<p>I had to fill in forms, use HICAPS, pay the gap, get treated (they just ground down the sharp bits and told me to see my normal dentist when I got back.</p>
<p>At 1:15 I was back on the bike leaving there. Apart from the speed of the &#8216;service&#8217;, I&#8217;m not used to professionals running on time like that.</p>
<p>Anyway, this morning we went to the Telegraph Museum, then over to the Royal Flying Doctor Sercice museum. Both were great and very interesting. I&#8217;ll probably visit the RFDS again in Mt Isa as its their head office and may have more on display. I got to impress my family by taking off and landing in their simulator.</p>
<p>In the afternoon, we went to the &#8216;Cultural centre&#8217; and It was very dissapointing. I&#8217;ve bene to other similar places before and all have been great. The only things about this one I liked were the natural history section. There didn&#8217;t seem</p>
<p>to be any Aboriginal information that I was looking for, just Beanies(for sale) art (for sale) and a cafe (that was not selling anything as they were closing). We did manage to get in just under the gates and get something to drink but I was afraid to get coffee from somewhere that doesn&#8217;t have an espresso machine. Yes, I know I&#8217;m a coffee snob.</p>
<p>This afternoon, I got into the van and got out the backpack with all the stuff I thought I might need plus the bags of &#8216;spares&#8217; for this trip. I&#8217;ve sorted out what I think I actually will need (plus a shovel thing if I leave the bitumen again) and put it all in the mostly empty backpack. Without the camping gear, its quite light and should serve me well as space to put any extras I might buy.</p>
<p>I have decided to leave the boots/crocs here and buy some normal shoes in Mt Isa.</p>
<p>I also took no photos today so theres nothing to post here.</p>
<p>Tomorrow morning, I have about 550km to the Tree Ways then the next day, a similar distance to Mt Isa. Two reasonably big days but then theres a day off in Mt Isa to rest and see local attractions. When I was staying there many many years ago, I was too young to do the underground mine tour so thats something I plan to do this time. So, its the RFDS, Underground tour, new shoes and anything else the local tourist information place has to recommend.</p>
<p>I&#8217;ll post more probably from Mt Isa as Tennant Creek (near the Three Ways) won&#8217;t have much to offer in the way of internet access from what I&#8217;m told. I&#8217;ll also try to stop and get photos of the Devils Marbles (which are on the way)</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=The+last+day+in+Alice+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D203" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=The+last+day+in+Alice+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D203" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=The+last+day+in+Alice+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D203" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=The+last+day+in+Alice+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D203" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;headline=The+last+day+in+Alice" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;headline=The+last+day+in+Alice" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;title=The+last+day+in+Alice" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;title=The+last+day+in+Alice" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;title=The+last+day+in+Alice" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;title=The+last+day+in+Alice" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;t=The+last+day+in+Alice" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;t=The+last+day+in+Alice" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;t=The+last+day+in+Alice" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;t=The+last+day+in+Alice" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+last+day+in+Alice&amp;link=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+last+day+in+Alice&amp;link=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;title=The+last+day+in+Alice" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;title=The+last+day+in+Alice" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;title=The+last+day+in+Alice" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/&amp;title=The+last+day+in+Alice" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F18%2Fthe-last-day-in-alice%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/18/the-last-day-in-alice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plans &#8211; the second half</title>
		<link>http://kevin.withnall.com/2008/07/17/plans-the-second-half/</link>
		<comments>http://kevin.withnall.com/2008/07/17/plans-the-second-half/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 07:06:21 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=201</guid>
		<description><![CDATA[I have just made some plans (in order to get the bike serviced etc) and heres what seems to be the go so far. 19th Tennant Creek 20th Mt Isa 21st Mt Isa 22nd Longreach 23rd Longreach 24th Hugenden 25th Townsville 26th Townsville 27th Mackay 28th Rockhampton 29th Bundaburg 30th Noosa (Staying with my brother [...]]]></description>
			<content:encoded><![CDATA[<p>I have just made some plans (in order to get the bike serviced etc) and heres what seems to be the go so far.</p>
<p>19th Tennant Creek<br />
20th Mt Isa<br />
21st Mt Isa<br />
22nd Longreach<br />
23rd Longreach<br />
24th Hugenden<br />
25th Townsville<br />
26th Townsville<br />
27th Mackay<br />
28th Rockhampton<br />
29th Bundaburg<br />
30th Noosa (Staying with my brother Marc)</p>
<p>From there I will be heading south but knowing me, I will probably put in some big days and get back early or find something locally to do and take longer. I really don&#8217;t know what will happen.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Plans+%E2%80%93+the+second+half+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D201" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Plans+%E2%80%93+the+second+half+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D201" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Plans+%E2%80%93+the+second+half+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D201" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Plans+%E2%80%93+the+second+half+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D201" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;headline=Plans+%E2%80%93+the+second+half" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;headline=Plans+%E2%80%93+the+second+half" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;title=Plans+%E2%80%93+the+second+half" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;title=Plans+%E2%80%93+the+second+half" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;title=Plans+%E2%80%93+the+second+half" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;title=Plans+%E2%80%93+the+second+half" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;t=Plans+%E2%80%93+the+second+half" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;t=Plans+%E2%80%93+the+second+half" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;t=Plans+%E2%80%93+the+second+half" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;t=Plans+%E2%80%93+the+second+half" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Plans+%E2%80%93+the+second+half&amp;link=http://kevin.withnall.com/2008/07/17/plans-the-second-half/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Plans+%E2%80%93+the+second+half&amp;link=http://kevin.withnall.com/2008/07/17/plans-the-second-half/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;title=Plans+%E2%80%93+the+second+half" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;title=Plans+%E2%80%93+the+second+half" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;title=Plans+%E2%80%93+the+second+half" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/17/plans-the-second-half/&amp;title=Plans+%E2%80%93+the+second+half" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F17%2Fplans-the-second-half%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/17/plans-the-second-half/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Western ranges and Quad Bikes</title>
		<link>http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/</link>
		<comments>http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 07:01:12 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=199</guid>
		<description><![CDATA[This morning, after trying to find a dentist as I chipped a tooth last night, we ( Libby and I ) went on some quad bikes on a cattle station for some fun. The quad bikes were more successful than the dentist finding as, aparently, if you need emergency dental treatment, you need to wait [...]]]></description>
			<content:encoded><![CDATA[<p>This morning, after trying to find a dentist as I chipped a tooth last night, we ( Libby and I ) went on some quad bikes on a cattle station for some fun. The quad bikes were more successful than the dentist finding as, aparently, if you need emergency dental treatment, you need to wait 4 months for it.</p>
<p>I also spent some time trying to sort out a service for the bike (BTW, the tyre lasted 8400km). Townsville was the place of choice but the Honda dealer that used to service BMW bikes, has shut down and no-one else, including the BMW dealer, has been given the ok to service them yet. So, a quick call to City Coast Motorcycles (Where I purchased my bike) and Martin quickly arranged a service in Mackay for me. When I first went to the bike shop in wollongong I was un-impressed but having got the bike there (and lots of accessories) they are really a good bunch of people.</p>
<p>Anyway, back to the Quad bikes, we spent about 2 hours riding around and looking at the station. It was quite interesting but as they have not had much rain this year, they are down to 3000 head (from the normal 5000) in 4000 square kms. Most of the dams were empty and they are relying on diesel pumping stations for bore water.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2676676662/"><img src="http://farm4.static.flickr.com/3210/2676676662_0ddc86a78a.jpg" border="0" alt="Quad Bike Action" width="375" height="500" /></a></p>
<p>Then, we went west of Alice to look at the Standley Chasm and Simpsons Gap. Both were worth visiting.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2676681926/"><img src="http://farm4.static.flickr.com/3031/2676681926_b92632ce10.jpg" border="0" alt="Standley Chasm" width="500" height="375" /></a></p>
<p>You need to be here at the correct time of day (about 1pm today) to get the sunlight down the gap.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2675870633/"><img src="http://farm4.static.flickr.com/3207/2675870633_d02d8f52d8.jpg" border="0" alt="Simpsons Gap" width="375" height="500" /></a></p>
<p>This is a river bed (with only a little pool of water above the surface) but would be quite impressive when running.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Western+ranges+and+Quad+Bikes+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D199" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Western+ranges+and+Quad+Bikes+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D199" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Western+ranges+and+Quad+Bikes+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D199" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Western+ranges+and+Quad+Bikes+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D199" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;headline=Western+ranges+and+Quad+Bikes" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;headline=Western+ranges+and+Quad+Bikes" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;title=Western+ranges+and+Quad+Bikes" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;title=Western+ranges+and+Quad+Bikes" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;title=Western+ranges+and+Quad+Bikes" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;title=Western+ranges+and+Quad+Bikes" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;t=Western+ranges+and+Quad+Bikes" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;t=Western+ranges+and+Quad+Bikes" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;t=Western+ranges+and+Quad+Bikes" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;t=Western+ranges+and+Quad+Bikes" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Western+ranges+and+Quad+Bikes&amp;link=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Western+ranges+and+Quad+Bikes&amp;link=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;title=Western+ranges+and+Quad+Bikes" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;title=Western+ranges+and+Quad+Bikes" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;title=Western+ranges+and+Quad+Bikes" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/&amp;title=Western+ranges+and+Quad+Bikes" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F17%2Fwestern-ranges-and-quad-bikes%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/17/western-ranges-and-quad-bikes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Alice Springs Desert Park</title>
		<link>http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/</link>
		<comments>http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 06:51:17 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=197</guid>
		<description><![CDATA[This is a local &#8216;theme&#8217; park that has many local environments setup. From sandy desert to semi arid areas it seems to cover what you would expect from central australia. It would be easy for this park to be tacky but its not at all. If you&#8217;re coming out here, you need to go to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a local &#8216;theme&#8217; park that has many local environments setup. From sandy desert to semi arid areas it seems to cover what you would expect from central australia. It would be easy for this park to be tacky but its not at all. If you&#8217;re coming out here, you need to go to this park. The portable MP3 players are great and have track numbers printed on signs around the park so you know what to listen to.</p>
<p>The girls got some stuffed animals (aparently the thousands they already have aren&#8217;t enough) and appeared to have a good time. We also attended a birds of prey show which was very interesting.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2675853823/"><img src="http://farm4.static.flickr.com/3166/2675853823_04ec885bef.jpg" border="0" alt="Desert Park" width="500" height="375" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Alice+Springs+Desert+Park+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D197" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Alice+Springs+Desert+Park+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D197" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Alice+Springs+Desert+Park+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D197" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Alice+Springs+Desert+Park+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D197" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;headline=Alice+Springs+Desert+Park" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;headline=Alice+Springs+Desert+Park" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;title=Alice+Springs+Desert+Park" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;title=Alice+Springs+Desert+Park" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;title=Alice+Springs+Desert+Park" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;title=Alice+Springs+Desert+Park" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;t=Alice+Springs+Desert+Park" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;t=Alice+Springs+Desert+Park" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;t=Alice+Springs+Desert+Park" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;t=Alice+Springs+Desert+Park" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Alice+Springs+Desert+Park&amp;link=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Alice+Springs+Desert+Park&amp;link=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;title=Alice+Springs+Desert+Park" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;title=Alice+Springs+Desert+Park" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;title=Alice+Springs+Desert+Park" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/&amp;title=Alice+Springs+Desert+Park" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F17%2Falice-springs-desert-park%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/17/alice-springs-desert-park/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kings Canyon (and leaving there)</title>
		<link>http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/</link>
		<comments>http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 08:10:40 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=192</guid>
		<description><![CDATA[We did the rim walk at Kings Canyon. Its about 10k from the van park and as I was dressed for walking, and leaving at 8:30am, it was a little cold on the bike (about 4 degrees). Those who know me, know I&#8217;m not a big walker. This however was a fantastic walk. IT took [...]]]></description>
			<content:encoded><![CDATA[<p>We did the rim walk at Kings Canyon. Its about 10k from the van park and as I was dressed for walking, and leaving at 8:30am, it was a little cold on the bike (about 4 degrees).</p>
<p>Those who know me, know I&#8217;m not a big walker. This however was a fantastic walk. IT took about 3.5 hours and after the initial climb up about 300 steps, it was quite easy and had some really interesting areas to walk through. I&#8217;ll attach some photos to this post so you can see what I mean.</p>
<p>After getting back, we had a pretty easy afternoon and then left about 9am to go to erldunda. I was there by about 11am and theres not much to do so I just waited till the van arrived and we then had a place to sit until the hotel room was ready.</p>
<p>That afternoon, we did a drive up to the metiorite craters (I wen&#8217;t in the car as I now knew that the bike was not good on dirt). They were interesting to see as they were my first craters.</p>
<p>This morning we left Erldunda for Alice Springs. I was here about 10:30am and immediatly looked for a bike shop for a new tyre. that took me about 15 mins to find and then about 1.5 hours to get the guy to fit it. IT seems like a good tyre but I cannot really tell. Its a soft compound so that means it will wear out sooner but will also provide better grip so its worth it. $364 well spent.</p>
<p>So, over the next few days we will be doing the attractions around Alice Springs and the West/East macdonald ranges.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2670877354/"><img src="http://farm4.static.flickr.com/3255/2670877354_ac5cfa3622.jpg" border="0" alt="IMG_4993" width="500" height="375" /></a></p>
<p>The bridge across kings canyon at about 1/3 through the walk</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2670871846/"><img src="http://farm4.static.flickr.com/3259/2670871846_ae78d9f445.jpg" border="0" alt="IMG_4987" width="500" height="375" /></a></p>
<p>A Tree</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2670043603/"><img src="http://farm4.static.flickr.com/3159/2670043603_96214d9f07.jpg" border="0" alt="IMG_4986" width="500" height="375" /></a></p>
<p>A view of people looking over the canyon. This was taken about 1/6 through the walk looking at prople about 2/3 through the walk.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2670861768/"><img src="http://farm4.static.flickr.com/3213/2670861768_8d8c2655bb.jpg" border="0" alt="IMG_4973" width="500" height="375" /></a></p>
<p>One of the small gaps you have to walk/climb through</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2670855454/"><img src="http://farm4.static.flickr.com/3228/2670855454_5260c1ff28.jpg" border="0" alt="IMG_4969" width="500" height="375" /></a></p>
<p>Theres lots of life up there.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Kings+Canyon+%28and+leaving+there%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D192" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Kings+Canyon+%28and+leaving+there%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D192" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Kings+Canyon+%28and+leaving+there%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D192" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Kings+Canyon+%28and+leaving+there%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D192" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;headline=Kings+Canyon+%28and+leaving+there%29" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;headline=Kings+Canyon+%28and+leaving+there%29" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;title=Kings+Canyon+%28and+leaving+there%29" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;title=Kings+Canyon+%28and+leaving+there%29" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;title=Kings+Canyon+%28and+leaving+there%29" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;title=Kings+Canyon+%28and+leaving+there%29" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;t=Kings+Canyon+%28and+leaving+there%29" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;t=Kings+Canyon+%28and+leaving+there%29" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;t=Kings+Canyon+%28and+leaving+there%29" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;t=Kings+Canyon+%28and+leaving+there%29" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Kings+Canyon+%28and+leaving+there%29&amp;link=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Kings+Canyon+%28and+leaving+there%29&amp;link=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;title=Kings+Canyon+%28and+leaving+there%29" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;title=Kings+Canyon+%28and+leaving+there%29" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;title=Kings+Canyon+%28and+leaving+there%29" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/&amp;title=Kings+Canyon+%28and+leaving+there%29" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F15%2Fkings-canyon-and-leaving-there%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/15/kings-canyon-and-leaving-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On the way to Kings Canyon</title>
		<link>http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/</link>
		<comments>http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 07:58:07 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=191</guid>
		<description><![CDATA[This morning I left Yulara at about 9:30, Quite an uninteresting trip. Its 304k but only about 120k line of sight, right through a salt lake and through culturally sensitive areas. Theres no mobile service here on any carrier I have for data. I have satellite voice comms but can&#8217;t blog via that. While riding, [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I left Yulara at about 9:30, Quite an uninteresting trip. Its 304k but only about 120k line of sight, right through a salt lake and through culturally sensitive areas.<br />
Theres no mobile service here on any carrier I have for data. I have satellite voice comms but can&#8217;t blog via that.<br />
While riding, the tree webs started taunting me again and, after Doug made me feel bad about not having a photo, I decided to stop to get one. Now, you have to remember what the roads are like here, there is no shoulder at all. It goes from semi nice tarmac to red dirt. So, to make things safe, I left the road for about 2.5 to get away from traffic (theres a car about every 2 mins or so). I stayed on the bike, took a photo of a web that I had seen from the road, and then proceeded to try to move. Immediately when I had stopped, the bike sunk into the dirt about 150mm. This was like really soft sand and when trying to get moving again, I sunk the rear wheel down to the swing arm.<br />
Bugger.<br />
It took me about 10 mins to remove both panier, tank bag and top box, walk then to a part of the road about 100m further on that looked more solid (but still just off the road for safety) and start digging out the bike. I had thought about this sort of thing when preparing for this trip but as I&#8217;m travelling with some others, all of the recovery stuff (eg a shovel) is in the van so I didn&#8217;t have it. I had to use sticks etc, then drag the bike out backwards (its 240kg and annoying to move). The good thing about it was that I managed to keep it upright the whole time and eventually got it back near the road again. Then I could ride up to the paniers, put everything back on and ride off thinking I shouldn&#8217;t have been so silly and hoping no dirt was in anything it shouldn&#8217;t have been. I tested brakes etc and everything looked fine.<br />
So, its now 1:40 and I&#8217;m sitting in the room at Kings Canyon waiting for the others.<br />
Tomorrow, we are going to walk the rim (about 4hrs of hard walking aparently)<a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2670010949/"><img src="http://farm4.static.flickr.com/3146/2670010949_9b1c661c25.jpg" border="0" alt="Tree Web Thingy" width="375" height="500" /></a></p>
<p>a photo of the tree web thingies for Doug.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=On+the+way+to+Kings+Canyon+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D191" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=On+the+way+to+Kings+Canyon+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D191" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=On+the+way+to+Kings+Canyon+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D191" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=On+the+way+to+Kings+Canyon+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D191" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;headline=On+the+way+to+Kings+Canyon" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;headline=On+the+way+to+Kings+Canyon" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;title=On+the+way+to+Kings+Canyon" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;title=On+the+way+to+Kings+Canyon" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;title=On+the+way+to+Kings+Canyon" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;title=On+the+way+to+Kings+Canyon" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;t=On+the+way+to+Kings+Canyon" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;t=On+the+way+to+Kings+Canyon" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;t=On+the+way+to+Kings+Canyon" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;t=On+the+way+to+Kings+Canyon" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=On+the+way+to+Kings+Canyon&amp;link=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=On+the+way+to+Kings+Canyon&amp;link=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;title=On+the+way+to+Kings+Canyon" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;title=On+the+way+to+Kings+Canyon" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;title=On+the+way+to+Kings+Canyon" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/&amp;title=On+the+way+to+Kings+Canyon" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F15%2Fon-the-way-to-kings-canyon%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/15/on-the-way-to-kings-canyon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The last few days</title>
		<link>http://kevin.withnall.com/2008/07/11/the-last-few-days/</link>
		<comments>http://kevin.withnall.com/2008/07/11/the-last-few-days/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 10:29:10 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=190</guid>
		<description><![CDATA[Yesterday we did toe base walk around uluru. It was a difficult decision to climb or not to climb. On the one hand, the local traditional (and now actual) owners, don&#8217;t want you to. That seems like a good reason until you find out that its akin to a religions reason. On the other hand [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday we did toe base walk around uluru. It was a difficult decision to climb or not to climb. On the one hand, the local traditional (and now actual) owners, don&#8217;t want you to. That seems like a good reason until you find out that its akin to a religions reason. On the other hand I have very little respect for religion but regard culture and history as important and worth remembering and learning from. I guess its akin to walking into a cathedral and taking photos or anything else they don&#8217;t like. Again, I would have no hesitation in doing that.</p>
<p>It seems similar to swearing to me. I don&#8217;t think there are any inherantly bad words etc but if a particular word can make someone feel, for want of a better word, bad, then you have to balance your desire to say a particular word with your desire to not make someone feel bad.</p>
<p>So, the decision seemed to come down to me wanting to climb (which would be interesting and have good views) with the owners not wanting me to. I decided,or the reasons outlined above, to not climb.</p>
<p>Anyway, today we went to the Olgas (Kata Titku) and did a canyon walk. It was quite fun and at only an hour long, was quite easy. In the afternoon, we took a helicopter flight over the Olgas and Uluru to get some photos and another perspective. Its quite impressive and its easy to see how a culture focused on animals and the land could make these important places.</p>
<p>I also find it interesting that as a people, they seem to stand alone in creating a &#8216;Sky Pixie&#8217; thats not in their own image. It seems like a wholly more reasonable approach to inventing someone that looks like yourself as other cultures seem to do.</p>
<p>Tomorrow is the ride to Kings Canyon (about 300k ish)</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=The+last+few+days+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D190" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=The+last+few+days+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D190" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=The+last+few+days+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D190" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=The+last+few+days+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D190" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;headline=The+last+few+days" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;headline=The+last+few+days" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;title=The+last+few+days" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;title=The+last+few+days" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;title=The+last+few+days" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;title=The+last+few+days" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;t=The+last+few+days" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;t=The+last+few+days" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;t=The+last+few+days" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;t=The+last+few+days" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+last+few+days&amp;link=http://kevin.withnall.com/2008/07/11/the-last-few-days/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=The+last+few+days&amp;link=http://kevin.withnall.com/2008/07/11/the-last-few-days/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;title=The+last+few+days" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;title=The+last+few+days" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;title=The+last+few+days" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/11/the-last-few-days/&amp;title=The+last+few+days" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F11%2Fthe-last-few-days%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/11/the-last-few-days/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Uluru</title>
		<link>http://kevin.withnall.com/2008/07/09/uluru/</link>
		<comments>http://kevin.withnall.com/2008/07/09/uluru/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 11:08:10 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=189</guid>
		<description><![CDATA[Today we are at Uluru. We left about 9:30 (it was 0.5 degrees at 8am, the bike had ice on the seat). It seemed appropriate that today was the first day I thought the thermal undergarments were optional and went without them. It heats up quite quickly and was 10 degrees by 10am so it [...]]]></description>
			<content:encoded><![CDATA[<p>Today we are at Uluru. We left about 9:30 (it was 0.5 degrees at 8am, the bike had ice on the seat). It seemed appropriate that today was the first day I thought the thermal undergarments were optional and went without them. It heats up quite quickly and was 10 degrees by 10am so it was probably a good decision. Its nice to be able to, lets say, drain fluid without having to undress almost totally.</p>
<p>It was only about 240km to Yullara and was quite an easy ride, even though the road condition is getting worse all the time. In SA, the roads were very good. nice shoulders, nice line marking and when repairs are made, they are made in large sections which makes it smoother to ride on. In the NT, they are really narrow, no sholders at all, and youre lucky to get line markings. They do make up for it by allowing you to go 130kph (although you generally don&#8217;t want to)</p>
<p>We took ages to get into the room as the resort was having issues with cleaning. We decided, as soon as we finally got unpacked, to go and see the rock at sunset. we had a quick lap (well as quick as you can, its a hige rock) and setup in the sunset photo parking lot with about 50 other cars. Some were making dinner, sitting on roofs sitting on chairs, all the sorts of things you wish you had thought of.</p>
<p>After getting some photos as the light changes (its really quite inpressive how quickly it changes colours) I stayes to try to get some shots after the sun went down. I&#8217;ve put some here. Remember, its a D300 and has a max shutter time of 30 seconds. The tripod was on sand and I was a little cold. I haven&#8217;t worked on these yet but the look ok i think (at least on my small screen here)</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2651874297/"><img src="http://farm4.static.flickr.com/3133/2651874297_5d56913c05.jpg" border="0" alt="Uluru" width="500" height="332" /></a></p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2651865295/"><img src="http://farm3.static.flickr.com/2235/2651865295_89f883e129.jpg" border="0" alt="Uluru" width="332" height="500" /></a></p>
<p>Tomorrow we will probably go to the Olgas or the rock for some laps with the family on the bike (everyone wants a go, including the in-laws). Whatever we don&#8217;t do tomorrow, we will do the next day so its a prety easy few days.</p>
<p>After our third night here, we are going to Kings Canyon for 2 nights. My tyre is getting a little thin so that will be first on the list for Alice when I get there.</p>
<p>I probably won&#8217;t blog in the next few days (unless something interesting happens) as its kind of a holiday within the holiday :-)</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Uluru+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D189" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Uluru+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D189" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Uluru+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D189" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Uluru+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D189" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/uluru/&amp;headline=Uluru....." title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/uluru/&amp;headline=Uluru....." title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/uluru/&amp;title=Uluru" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/uluru/&amp;title=Uluru" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/uluru/&amp;title=Uluru" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/uluru/&amp;title=Uluru" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/uluru/&amp;t=Uluru" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/uluru/&amp;t=Uluru" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/uluru/&amp;t=Uluru" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/uluru/&amp;t=Uluru" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Uluru&amp;link=http://kevin.withnall.com/2008/07/09/uluru/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Uluru&amp;link=http://kevin.withnall.com/2008/07/09/uluru/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/uluru/&amp;title=Uluru" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/uluru/&amp;title=Uluru" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/uluru/&amp;title=Uluru" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/uluru/&amp;title=Uluru" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F09%2Fuluru%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/09/uluru/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bike excercises</title>
		<link>http://kevin.withnall.com/2008/07/09/bike-excercises/</link>
		<comments>http://kevin.withnall.com/2008/07/09/bike-excercises/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:45:22 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=188</guid>
		<description><![CDATA[On the bike, I don&#8217;t get a sore arse as expected. I get a sore back and cramps in my legs. Heres what I&#8217;ve learnt on how to stop it. 1. Do stretches in the morning. 2. Don&#8217;t go more than about 200k without getting off the bike 3. When not riding (ie, every 200km [...]]]></description>
			<content:encoded><![CDATA[<p>On the bike, I don&#8217;t get a sore arse as expected. I get a sore back and cramps in my legs. Heres what I&#8217;ve learnt on how to stop it.<br />
1. Do stretches in the morning.<br />
2. Don&#8217;t go more than about 200k without getting off the bike<br />
3. When not riding (ie, every 200km or so) do more stretches. This doesn&#8217;t seem to inspire the strange reactions from other travellers I thought it would.<br />
4. When riding, about every 50km or so, stand up. This helps a little<br />
5. When riding, about every 25km or so, bend the elbows. This heals the elbow stiffness issue i forgot to mention earlier.<br />
6. If require to not stop (gotta make good time), and I still need to stretch, you can stand up, stick you ass out the back of the bike, while  keeping legs straight, put your head/upper body down low (on the tank bag) try to see where you are going and keep control of the bike. This helps a little. Probably best to not do this while trying to pass a truck, considering wind resistance and all that stuff.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Bike+excercises+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D188" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Bike+excercises+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D188" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Bike+excercises+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D188" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Bike+excercises+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D188" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;headline=Bike+excercises" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;headline=Bike+excercises" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;title=Bike+excercises" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;title=Bike+excercises" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;title=Bike+excercises" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;title=Bike+excercises" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;t=Bike+excercises" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;t=Bike+excercises" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;t=Bike+excercises" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;t=Bike+excercises" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Bike+excercises&amp;link=http://kevin.withnall.com/2008/07/09/bike-excercises/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Bike+excercises&amp;link=http://kevin.withnall.com/2008/07/09/bike-excercises/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;title=Bike+excercises" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;title=Bike+excercises" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;title=Bike+excercises" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/bike-excercises/&amp;title=Bike+excercises" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F09%2Fbike-excercises%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/09/bike-excercises/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tree webs (I think)</title>
		<link>http://kevin.withnall.com/2008/07/09/tree-webs-i-think/</link>
		<comments>http://kevin.withnall.com/2008/07/09/tree-webs-i-think/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:45:03 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=187</guid>
		<description><![CDATA[In lots of the bushes on the sides of the road, bearing in mind that thats all there is out here mostly and they are about 1m tall, there are lots of spiders webs or white birds nests. I&#8217;m not sure exactly but they look like spiders webs. I vaguely remember reading/seeing/hearing something about spiders [...]]]></description>
			<content:encoded><![CDATA[<p>In lots of the bushes on the sides of the road, bearing in mind that thats all there is out here mostly and they are about 1m tall, there are lots of spiders webs or white birds nests. I&#8217;m not sure exactly but they look like spiders webs. I vaguely remember reading/seeing/hearing something about spiders that catch small birds, this would explain how these things look. They look like there something in them that is quite heavy in comparason to the branch. Until I learn otherwise, I&#8217;ll believe its spiders catching small birds. I&#8217;ll have to look into it later.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Tree+webs+%28I+think%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D187" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Tree+webs+%28I+think%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D187" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Tree+webs+%28I+think%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D187" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Tree+webs+%28I+think%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D187" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;headline=Tree+webs+%28I+think%29" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;headline=Tree+webs+%28I+think%29" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;title=Tree+webs+%28I+think%29" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;title=Tree+webs+%28I+think%29" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;title=Tree+webs+%28I+think%29" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;title=Tree+webs+%28I+think%29" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;t=Tree+webs+%28I+think%29" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;t=Tree+webs+%28I+think%29" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;t=Tree+webs+%28I+think%29" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;t=Tree+webs+%28I+think%29" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Tree+webs+%28I+think%29&amp;link=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Tree+webs+%28I+think%29&amp;link=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;title=Tree+webs+%28I+think%29" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;title=Tree+webs+%28I+think%29" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;title=Tree+webs+%28I+think%29" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/tree-webs-i-think/&amp;title=Tree+webs+%28I+think%29" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F09%2Ftree-webs-i-think%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/09/tree-webs-i-think/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Erldunda</title>
		<link>http://kevin.withnall.com/2008/07/09/erldunda/</link>
		<comments>http://kevin.withnall.com/2008/07/09/erldunda/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:44:29 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=186</guid>
		<description><![CDATA[This place (check it out on google earth) is quite simple. Its just an intersection off the stuart highway that also has a road to Uluru. Fuel is just over $2/L. While I think about it, I think the days of the explorers were a bit overrated. Aparently he took months to get here (I [...]]]></description>
			<content:encoded><![CDATA[<p>This place (check it out on google earth) is quite simple. Its just an intersection off the stuart highway that also has a road to Uluru. Fuel is just over $2/L.</p>
<p>While I think about it, I think the days of the explorers were a bit overrated. Aparently he took months to get here (I did it in 2 days, including photos of rockets) and had cross winds to deal with. He did it over months and drowned a horse. I&#8217;m not saying I&#8217;m better than they were but the facts are hard to ignore.</p>
<p>Tomorrow we will be goig to uluru (244km according to the sign) and have 3 nights there, then 2 nights ar Kings canyon. All these days are only about 250km/day days between places so its a nice and easy break.<br />
My bike has now gone about 6500k and my rear tyre is wearing a big flat spot. I know bikers say theres some cause for embarasement when the tyre, when removed, stands up by itself. It means you haven&#8217;t done enough corners. Well, there aren&#8217;t enough corners here and the tyre will most definately stand up by itself. Its down to the little rubbery nobbly bits that should tell me to change it (after 6500k !) but I&#8217;ll leave it another 1000 (till I get to Alice next week). I have decided to not go to darwin on this trip so the plan at the moment is<br />
* Three ways<br />
* Mt Isa<br />
* cloncurry<br />
* Mostly the way to Longreach (qantas museum)<br />
* head towards townsville, maybe via Cloncurry if required<br />
* townsville, maybe some diving<br />
* then down the coast road back home</p>
<p>Darwin would have been interesting but 4 days riding to do a 1/2 day tour seems a little disproportionate.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Erldunda+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D186" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Erldunda+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D186" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Erldunda+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D186" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Erldunda+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D186" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/erldunda/&amp;headline=Erldunda.." title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/erldunda/&amp;headline=Erldunda.." title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/erldunda/&amp;title=Erldunda" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/erldunda/&amp;title=Erldunda" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/erldunda/&amp;title=Erldunda" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/erldunda/&amp;title=Erldunda" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/erldunda/&amp;t=Erldunda" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/erldunda/&amp;t=Erldunda" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/erldunda/&amp;t=Erldunda" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/erldunda/&amp;t=Erldunda" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Erldunda&amp;link=http://kevin.withnall.com/2008/07/09/erldunda/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Erldunda&amp;link=http://kevin.withnall.com/2008/07/09/erldunda/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/erldunda/&amp;title=Erldunda" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/erldunda/&amp;title=Erldunda" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/erldunda/&amp;title=Erldunda" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/erldunda/&amp;title=Erldunda" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F09%2Ferldunda%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/09/erldunda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to pass a road train</title>
		<link>http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/</link>
		<comments>http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:43:26 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=185</guid>
		<description><![CDATA[from PA to CP, there was a serious cross wind (from the left) so the technique was refined a bit. As soon as you are within about 30m from any vehicle, of 50m from road trains, the bufetting starts. This is very short bursts of wind from the sides that wabbly youy but don&#8217;t generally [...]]]></description>
			<content:encoded><![CDATA[<p>from PA to CP, there was a serious cross wind (from the left) so the technique was refined a bit.<br />
As soon as you are within about 30m from any vehicle, of 50m from road trains, the bufetting starts. This is very short bursts of wind from the sides that wabbly youy but don&#8217;t generally push you off course. Moving to the right hand lane (the oncoming lane) fixes this immediately. IF theres no one coming the other direction, its even better.<br />
Now, Accellerate past the other vehicle. Normally I sit on about 120kph so this means getting to 130-140 to pass them. This is all fine as by sitting on their RHS, you are protected from the crosswind and its quite peaceful. Any gaps, between trailers for example, the wind hits you again and you have to go back to a 20-30 degree lean to stay heading the the right direction. This is not bad as if you don&#8217;t react fast enough, you just slip to the right and its all fine (theres normally some spare lane available).<br />
Now, When you get to the front of the truck, theres a SERIOUS bow wave of air happening. The first few times I wasn&#8217;t expecting this to be as big as it was and ended up about 100cm too far to the right. Again, this is not bad as theres always spare lane. At the front, you have to prepare for the bow wave and re-lean the bike to the left. This has the effect of turning you, quite sharply, into the front of the truck. Not altogether a good idea BUT then the wave of air comes and you end up going straigit ahead again. When the rest of the wind comes (remember the crosswind) you are probably far enough</p>
<p>in front of the truck to head the right direction and as its less then the bow wave, you end up in the left hand lane again with a sense of a job well done.<br />
The first few times I did this, theres less of a sense of &#8216;making it in the big world of touring bikers&#8217; than a sense of &#8216;making it in your pants&#8217;.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=How+to+pass+a+road+train+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D185" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=How+to+pass+a+road+train+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D185" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=How+to+pass+a+road+train+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D185" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=How+to+pass+a+road+train+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D185" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;headline=How+to+pass+a+road+train" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;headline=How+to+pass+a+road+train" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;title=How+to+pass+a+road+train" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;title=How+to+pass+a+road+train" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;title=How+to+pass+a+road+train" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;title=How+to+pass+a+road+train" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;t=How+to+pass+a+road+train" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;t=How+to+pass+a+road+train" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;t=How+to+pass+a+road+train" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;t=How+to+pass+a+road+train" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=How+to+pass+a+road+train&amp;link=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=How+to+pass+a+road+train&amp;link=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;title=How+to+pass+a+road+train" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;title=How+to+pass+a+road+train" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;title=How+to+pass+a+road+train" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/&amp;title=How+to+pass+a+road+train" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F09%2Fhow-to-pass-a-road-train%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/09/how-to-pass-a-road-train/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coober oeedy -&gt; Erldunda</title>
		<link>http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/</link>
		<comments>http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:41:23 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/</guid>
		<description><![CDATA[I was up and awake about 6am (with everyone else) and was dressed and ready to go by about 7:15. Sitting there dressed there seemed to be little point in continuing to sit there dressed and it was either get undressed or leave. I left. About 210k later, I arrived at Mulba (sp?) It was [...]]]></description>
			<content:encoded><![CDATA[<p>I was up and awake about 6am (with everyone else) and was dressed and ready to go by about 7:15. Sitting there dressed there seemed to be little point in continuing to sit there dressed and it was either get undressed or leave.<br />
I left.</p>
<p>About 210k later, I arrived at Mulba (sp?) It was a standard roadhouse style place and I decided to get the Lighter fluid out of the panier to start the pocket warmer. You see, Leaving CP at 7:30 it was a little chilly. I now know that at 2 degrees, the bike warns of black ice, the hand/seat warmers are not enough, and m little fingers hurt when they freeze in place.</p>
<p>This was also the time I started my obsession with working out once and for all the waving protocol.<br />
You see, Bikers have certain rules you must follow when you see another bike.</p>
<p>Rules are<br />
If Harley (or similar) bike is coming the other direction, make no eye contact, simply pretend they are not there and soon</p>
<p>enough they won&#8217;t be.<br />
If its not a Harley, you can<br />
a) head dip (like a nod)<br />
b) head tilt (sideways tilting) mostly from sports bike riders<br />
c) head raise (like an upwards nod) Not sure if this is valid, I made it up today to see what happens.<br />
If its the same brand bike as yours, you wave.</p>
<p>In cities, it doesn&#8217;t happen often, It seems to happen more the further you are away from populated places.<br />
On these highways, being a long way from town, cars (and mostly people towing vans) seems to get involved also.</p>
<p>If its a long way freom a city, these seem to be the rules.<br />
If its a person with a van<br />
they will &#8211; probably life a few fingers.<br />
you should &#8211; nod you head. I have tried many other options, but this seems to get the best response.<br />
If its a Truck driver<br />
they will &#8211; not even see you<br />
you should &#8211; keep out of the way, try to keep the rubbery bits on the road as their bow wave hits you.<br />
If its another bike<br />
they will &#8211; wave, nod of both<br />
you should &#8211; wave, nod and try not to enter their lane as you lose control of the bike by waving too much<br />
If its another BMW<br />
they will &#8211; wave, sometimes stand up<br />
you should &#8211; wave wildly get ready to stop for a chat.<br />
If its another BMW and they are going your way AND they are doing the same trip as you<br />
they will &#8211; go with you until you stop, and have a chat<br />
you should &#8211; immediatly proceed to chatting, picking out curtains and raising a family.<br />
If its a cop<br />
they will &#8211; either ignore you (hopefully)<br />
you should &#8211; roll off the throttle and look like you weren&#8217;t going fast<br />
If its a cop and they pull you over but don&#8217;t five you a ticket<br />
they will &#8211; tell you that going fast is bad and they used to have a similar bike but not anymore<br />
you should &#8211; feel grateful you are not getting demerit points and offer a polite reach around<br />
If its a cop and you get booked<br />
Dunno really, havent been booked (yet).</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Coober+oeedy+-%3E+Erldunda+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D184" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Coober+oeedy+-%3E+Erldunda+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D184" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Coober+oeedy+-%3E+Erldunda+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D184" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Coober+oeedy+-%3E+Erldunda+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D184" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;headline=Coober+oeedy+-%3E+Erldunda" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;headline=Coober+oeedy+-%3E+Erldunda" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;title=Coober+oeedy+-%3E+Erldunda" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;title=Coober+oeedy+-%3E+Erldunda" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;title=Coober+oeedy+-%3E+Erldunda" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;title=Coober+oeedy+-%3E+Erldunda" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;t=Coober+oeedy+-%3E+Erldunda" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;t=Coober+oeedy+-%3E+Erldunda" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;t=Coober+oeedy+-%3E+Erldunda" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;t=Coober+oeedy+-%3E+Erldunda" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Coober+oeedy+-%3E+Erldunda&amp;link=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Coober+oeedy+-%3E+Erldunda&amp;link=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;title=Coober+oeedy+-%3E+Erldunda" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;title=Coober+oeedy+-%3E+Erldunda" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;title=Coober+oeedy+-%3E+Erldunda" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/&amp;title=Coober+oeedy+-%3E+Erldunda" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F09%2Fcoober-oeedy-erldunda%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/09/coober-oeedy-erldunda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Port Augusta -&gt; Coober Pedy</title>
		<link>http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/</link>
		<comments>http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:38:43 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=183</guid>
		<description><![CDATA[Leaving about 8:30 I arrived without much drama to woomera. On getting there, I quickly did the 2 parks full of missiles and planes. Theres a &#8216;technical&#8217; museum ($3) that seems to be just setup by HAM radio people and is not really that interesting. Across the other side of town (about 50m) theres the [...]]]></description>
			<content:encoded><![CDATA[<p>Leaving about 8:30 I arrived without much drama to woomera. On getting there, I quickly did the 2 parks full of missiles</p>
<p>and planes. Theres a &#8216;technical&#8217; museum ($3) that seems to be just setup by HAM radio people and is not really that</p>
<p>interesting. Across the other side of town (about 50m) theres the information centre and a better museum ($6). This one has</p>
<p>some videos and a coherent set of displays.<br />
Leaving there, I proceeded to Coober peedy. Not much to see there but we did go to the &#8216;old timers mine&#8217; and had a short</p>
<p>walk around. It was an old mine (started about 1916) and parts were converted to a house. I can imagine being an opal miner</p>
<p>and living in the mine. Diring dinner I would probably grab the salad form and start scratching at the walls. You would</p>
<p>either find some opals or make a new cupboard. Aparently I was the only one who had asked them about how they ran the cat 5</p>
<p>throughout the house without making them visible. It would appear that there are some parts of the world without saturation</p>
<p>cabling.</p>
<p>In the morning, I had an interesting discussion while getting some fuel.<br />
Me: Pump 2 and 2 dim sims please.<br />
Grumpy Dude: right. [proceeds to get food slowly]<br />
Me: [notices credit card machine says Ready. Please swipe card]<br />
Me: [swipes card]<br />
GD: Which pump was it ?<br />
Me: Pump 2<br />
GD: [looking at machine] You already swiped!<br />
Me: Yes, It said please swipe card<br />
GD: Well theres nothing on it, you can&#8217;t swipe without something on it<br />
Me: Aparently I can.<br />
GD: But theres nothing on it What will I do now ?<br />
Me: Well, Put something on it?<br />
GD: But theres nothing on it<br />
Me: Can we complete the transation with nothing on it and start again ?<br />
GD: But theres nothing on it<br />
Me: Yes, but the good thing about there being nothing on it, is there&#8217;s nothing on it. When you complete the transaction,</p>
<p>there will be nothing on it.<br />
GD: [stunned silence]<br />
Me: [chances tack, tries staring at him in silence]<br />
&#8230;long pause&#8230;<br />
GD: Maybe I can cancel it<br />
ME: [not knowing weather it would be helpful] Yeah, maybe<br />
GD: Look, pressing the big red cancel button cancels it. You can swipe your card now.<br />
Me: But you haven&#8217;t put anything on it yet<br />
GD: Oh, [ presses buttons ] there you go<br />
Me: [swipes card]<br />
Anyway, you get the idea. I eventually rode away with fuel and 2 free dim sims.<br />
I didn&#8217;t think it would be worth getting into with him.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Port+Augusta+-%3E+Coober+Pedy+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D183" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Port+Augusta+-%3E+Coober+Pedy+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D183" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Port+Augusta+-%3E+Coober+Pedy+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D183" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Port+Augusta+-%3E+Coober+Pedy+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D183" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;headline=Port+Augusta+-%3E+Coober+Pedy" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;headline=Port+Augusta+-%3E+Coober+Pedy" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;title=Port+Augusta+-%3E+Coober+Pedy" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;title=Port+Augusta+-%3E+Coober+Pedy" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;title=Port+Augusta+-%3E+Coober+Pedy" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;title=Port+Augusta+-%3E+Coober+Pedy" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;t=Port+Augusta+-%3E+Coober+Pedy" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;t=Port+Augusta+-%3E+Coober+Pedy" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;t=Port+Augusta+-%3E+Coober+Pedy" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;t=Port+Augusta+-%3E+Coober+Pedy" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Port+Augusta+-%3E+Coober+Pedy&amp;link=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Port+Augusta+-%3E+Coober+Pedy&amp;link=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;title=Port+Augusta+-%3E+Coober+Pedy" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;title=Port+Augusta+-%3E+Coober+Pedy" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;title=Port+Augusta+-%3E+Coober+Pedy" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/&amp;title=Port+Augusta+-%3E+Coober+Pedy" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F09%2Fport-augusta-coober-pedy%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/09/port-augusta-coober-pedy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Port Augusta</title>
		<link>http://kevin.withnall.com/2008/07/06/port-augusta/</link>
		<comments>http://kevin.withnall.com/2008/07/06/port-augusta/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 06:50:40 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=182</guid>
		<description><![CDATA[Ok, maybe its me but Port Augusta seems like a really silly name. This morning, I left about 9am, and rode the 20 mins to adelaide to get some fuel (for me and the bike). After leaving adelaide, I didn&#8217;t put my feet down until port Augusta. I was starting to get a sore back [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, maybe its me but Port Augusta seems like a really silly name.</p>
<p>This morning, I left about 9am, and rode the 20 mins to adelaide to get some fuel (for me and the bike). After leaving adelaide, I didn&#8217;t put my feet down until port Augusta. I was starting to get a sore back and probably should have stopped earlier.</p>
<p>Things to note about todays ride. It reached 17 degrees, quite nice really. It rained again (aparently its also been raining at alice springs). 300km without stopping sucks.</p>
<p>The trains are long here (real trins, not road trains) and again I had very strong cross winds. Theres this pipe thing that started following me along the sire of the road at adelaide and is still here. I guess it sends something somewhere but thers no information available on it telling me what or where.</p>
<p>Anyway, not really much to tell other than the ride along mostly express ways, the terrain seems to have changed a little and we have more dirt along the sides of roads. Ok, we had dirt before but its a lighter colour and looks more like dirt. I still have not hit any animals making them dead and I hope it doesn&#8217;t happen.</p>
<p>Tomorrow is the biggest scheduled day of the trip and is about 550k (I did 650k the first day and thought it was about 100km too long). Hopefully I handle it ok. I will certainly not do it without stopping.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Port+Augusta+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D182" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Port+Augusta+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D182" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Port+Augusta+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D182" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Port+Augusta+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D182" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;headline=Port+Augusta" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;headline=Port+Augusta" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;title=Port+Augusta" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;title=Port+Augusta" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;title=Port+Augusta" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;title=Port+Augusta" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;t=Port+Augusta" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;t=Port+Augusta" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;t=Port+Augusta" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;t=Port+Augusta" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Port+Augusta&amp;link=http://kevin.withnall.com/2008/07/06/port-augusta/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Port+Augusta&amp;link=http://kevin.withnall.com/2008/07/06/port-augusta/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;title=Port+Augusta" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;title=Port+Augusta" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;title=Port+Augusta" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/06/port-augusta/&amp;title=Port+Augusta" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F06%2Fport-augusta%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/06/port-augusta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Some photos for those who care..</title>
		<link>http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/</link>
		<comments>http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 08:30:41 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=181</guid>
		<description><![CDATA[the sunset and my lovely, lovely bike. It may be unnatural but who can stand between me and my motorcycle. The tractor museum. This disturbed me more than it should have. The Big Lobster (ok, Larry) The blue lake. Ok, it looks blueish here but looks grey in real life. Honest. What we like to [...]]]></description>
			<content:encoded><![CDATA[<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2638719356/"><img src="http://farm4.static.flickr.com/3185/2638719356_a062fa7d86.jpg" border="0" alt="IMG_4850" width="500" height="375" /></a></p>
<p>the sunset and my lovely, lovely bike. It may be unnatural but who can stand between me and my motorcycle.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2638716090/"><img src="http://farm4.static.flickr.com/3186/2638716090_20b05e1dba.jpg" border="0" alt="IMG_4831" width="500" height="375" /></a></p>
<p>The tractor museum. This disturbed me more than it should have.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2637883255/"><img src="http://farm4.static.flickr.com/3092/2637883255_5270e777b9.jpg" border="0" alt="IMG_4828" width="500" height="375" /></a></p>
<p>The Big Lobster (ok, Larry)</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2637881383/"><img src="http://farm4.static.flickr.com/3019/2637881383_28d038da2c.jpg" border="0" alt="IMG_4823" width="500" height="375" /></a></p>
<p>The blue lake. Ok, it looks blueish here but looks grey in real life. Honest.</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2638708136/"><img src="http://farm4.static.flickr.com/3019/2638708136_2aa07972fb.jpg" border="0" alt="IMG_4821" width="500" height="375" /></a></p>
<p>What we like to call in the trade &#8220;Hot Windfarm Action&#8221;</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/kevinwithnall/2637876893/"><img src="http://farm4.static.flickr.com/3108/2637876893_721b4b1e21.jpg" border="0" alt="IMG_4804" width="375" height="500" /></a></p>
<p>The girls at the flagstaff hill school in their &#8216;oldish&#8217; school uniforms.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Some+photos+for+those+who+care..+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D181" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Some+photos+for+those+who+care..+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D181" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Some+photos+for+those+who+care..+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D181" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Some+photos+for+those+who+care..+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D181" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;headline=Some+photos+for+those+who+care.." title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;headline=Some+photos+for+those+who+care.." title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;title=Some+photos+for+those+who+care.." title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;title=Some+photos+for+those+who+care.." title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;title=Some+photos+for+those+who+care.." title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;title=Some+photos+for+those+who+care.." title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;t=Some+photos+for+those+who+care.." title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;t=Some+photos+for+those+who+care.." title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;t=Some+photos+for+those+who+care.." title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;t=Some+photos+for+those+who+care.." title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Some+photos+for+those+who+care..&amp;link=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Some+photos+for+those+who+care..&amp;link=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;title=Some+photos+for+those+who+care.." title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;title=Some+photos+for+those+who+care.." title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;title=Some+photos+for+those+who+care.." title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/&amp;title=Some+photos+for+those+who+care.." title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F05%2Fsome-photos-for-those-who-care%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/05/some-photos-for-those-who-care/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mt Barker (and the cold trip there)</title>
		<link>http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/</link>
		<comments>http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 08:22:04 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=180</guid>
		<description><![CDATA[I&#8217;m sitting in Mt Barker at the moment. We were up about 6am and I decided to leave earlyish. I was on the road by 7:15 and it was about 7 degrees (but mostly dry). In about 30 mins of riding, I had seen many foxes, rabbits (both dead and alive), heaps of birds (eating [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sitting in Mt Barker at the moment. We were up about 6am and I decided to leave earlyish. I was on the road by 7:15 and it was about 7 degrees (but mostly dry).</p>
<p>In about 30 mins of riding, I had seen many foxes, rabbits (both dead and alive), heaps of birds (eating the aforementioned dead bunnies) and no roos. There were sign everywhere telling me to watch out for the roos but I saw none (well, at least none still interested in breathing).</p>
<p>The temp dropped to 3 degrees. That really sucks as I hadn&#8217;t started the jacket heater yet. I stopped to get some fuel after about 90 mins riding (and get some instant coffee, raisin toast) and lit the pocket warmer. I had previously discussed said lighting with the owner of the petrol station/diner where I was and explained that there will be some flames while it heated up. When the flames happened, He looked concerned but, probably do to the previous discussion, didn&#8217;t try to put it out.</p>
<p>From then on, it warmed up a little, mostly going from about 6 degrees to actually hitting 12 at one point.</p>
<p>I arrived in Mt Barker and as the room wasn&#8217;t ready yet, went to the local shopping centre and looked around. Hoping for some decent coffee to wash the taste of instant ferom my delicate mouth, I discovered not much to help. There was however a computer game shop (I could get some NDS charges for the girls) and a phone shop (so i could get a USB charger for my archos). Then a K-Mart for some more time wasting and finally back to the caravan park where telstra service is ok enough to do some writing.</p>
<p>later&#8230;.</p>
<p>We just got back from Adelaide where we visited the Haigh chocolate factory and went to see Kung Fu Panda. Both were quite fun.</p>
<p>Tomorrow we will head to port Augusta. Hopefully it will be warmer.</p>
<p>There&#8217;s one more thing that needs to be said. I believe everyone let me down greatly by not telling me it was going to be cold doing the south a week after the winter solstice.</p>
<p>Also, people have been dying to ask but no-one has yet the courage to bring it up. I know you are all dying to know what a well dressed bike traveller wears so, to save you the embarrassment of asking, here&#8217;s the soop.</p>
<p>1. BMW long thermal pants (these go over the underwear which is changed at least once per week)<br />
2. Draggin Cargo pants<br />
3. Long socks (knee length) that go over the thermals, under the cargos.<br />
4. BMW boots, mid calf high.<br />
5. Marino wool thermal long sleeve top (Kathmandu)<br />
6. sometimes a tee shirt over it<br />
7. Wooly neck warmer thingy<br />
8. outdoor research wind proof jacket over the thermals<br />
9. BMW jacket (although last years colour) goes over the lot to prevent ingress of road when I hit it at some speed.<br />
10. BMW gloves<br />
11. Nolan N102 Helmet with Autocom headset</p>
<p>So, you can see theres a bit to getting dressed in the mornings. And yes, I know the jacket (9) is in the girlie section of the BMW apparrel book and modelled by a girl. What are you trying to say?</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Mt+Barker+%28and+the+cold+trip+there%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D180" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Mt+Barker+%28and+the+cold+trip+there%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D180" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Mt+Barker+%28and+the+cold+trip+there%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D180" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Mt+Barker+%28and+the+cold+trip+there%29+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D180" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;headline=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;headline=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;title=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;title=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;title=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;title=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;t=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;t=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;t=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;t=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Mt+Barker+%28and+the+cold+trip+there%29&amp;link=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Mt+Barker+%28and+the+cold+trip+there%29&amp;link=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;title=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;title=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;title=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/&amp;title=Mt+Barker+%28and+the+cold+trip+there%29" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F05%2Fmt-barker-and-the-cold-trip-there%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/05/mt-barker-and-the-cold-trip-there/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Friday</title>
		<link>http://kevin.withnall.com/2008/07/05/friday/</link>
		<comments>http://kevin.withnall.com/2008/07/05/friday/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 08:21:44 +0000</pubDate>
		<dc:creator>Kevin Withnall</dc:creator>
				<category><![CDATA[Bike Trip 2008]]></category>

		<guid isPermaLink="false">http://kevin.withnall.com/?p=179</guid>
		<description><![CDATA[Well, Friday, the day after flagstaff hill visit is the first day of heading north. Leaving around 9am, I travelled about 10k in the wrong direction waiting for the satnav to tell me when to turn (the sun was in the wrong part of the sky so I know somethng was not right). I then [...]]]></description>
			<content:encoded><![CDATA[<p>Well, Friday, the day after flagstaff hill visit is the first day of heading north. Leaving around 9am, I travelled about 10k in the wrong direction waiting for the satnav to tell me when to turn (the sun was in the wrong part of the sky so I know somethng was not right). I then zoomed out and discovered that when I was pre-setting all the way points in the sat nav, i had missed the Kingston SE stop and it was pointing back at Alglesea. 10 mins later, I was back on course, the sun knew its place and all was right again.</p>
<p>Not much to tell really about this part of the trip. It was only about 350k to the next stop. I passed a wind farm (back in 2001 is was the largest in australia) but the photos are pretty crappy.</p>
<p>Then it was on to Mt Gambier and its blue (actually grey) lake. It was nice to sit in a macdonalds, get some rason toast and drink a decent coffee. After getting warm again, I went back to the bike and headed to kingston.</p>
<p>I arrived about 1hr ahead of the others and decided to see some parts of the town and of course the big lobster.</p>
<p>I rode into town (about 90 seconds riding) and saw the big lobster (about 3 mins) then went to the Big Lobster (ok, they want me to call it Larry the Big Lobster) tourist section. It was an empty room with a single touch screen information system which was off and parked against the wall with a sign on it saying it wasn&#8217;t working.</p>
<p>So, I was no about 5 mins into the hour I had to wait and needed something to do. I walked up the street to the, aparently, famous garden sun dial. The sun had by now however decided to hide behind clouds so the sundial was not quite working. I couldn&#8217;t even see a vague shadow. I then walked to the service station (with another tourist information section. Theres only so long you can look at chocolates, crappy magazines and fishing tackle.</p>
<p>So, 30 mins down and I finally had to go to the last resort. &#8220;Kev&#8217;s tractor Museum&#8221; was the name of it but please don&#8217;t get the wrong idea. Its not a museum.</p>
<p>When I was growing up, my grandfather had a factory and lots of stuff spread everywhere. My grandmother had things like pedal sowing machines in the shed etc. Aparently, this &#8216;museum&#8217; was just people like that, just not throwing things out for a long time.</p>
<p>Where were all sorts of things that I consider junk that shouldn&#8217;t be anywhere, espescially a museum. I do however have to give it something, it does have a higher tractor co-efficient than most places i&#8217;ve been to.</p>
<p>So, still having 20 mins to kill, I went back to the park (via a long 5 mins drive to make sure nothing was missed) and met the others entering the park.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Friday+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D179" title="Post to Twitter"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Friday+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D179" title="Post to Twitter">Tweet This Post</a> <a class="tt" href="http://plurk.com/?status=Friday+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D179" title="Post to Plurk"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/plurk/tt-plurk.png" alt="Post to Plurk" /></a> <a class="tt" href="http://plurk.com/?status=Friday+http%3A%2F%2Fkevin.withnall.com%2F%3Fp%3D179" title="Post to Plurk">Plurk This Post</a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/05/friday/&amp;headline=Friday...." title="Post to Yahoo Buzz"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://kevin.withnall.com/2008/07/05/friday/&amp;headline=Friday...." title="Post to Yahoo Buzz">Buzz This Post</a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/05/friday/&amp;title=Friday" title="Post to Delicious"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://kevin.withnall.com/2008/07/05/friday/&amp;title=Friday" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/05/friday/&amp;title=Friday" title="Post to Digg"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://kevin.withnall.com/2008/07/05/friday/&amp;title=Friday" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/05/friday/&amp;t=Friday" title="Post to Facebook"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://kevin.withnall.com/2008/07/05/friday/&amp;t=Friday" title="Post to Facebook">Post to Facebook</a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/05/friday/&amp;t=Friday" title="Post to MySpace"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://kevin.withnall.com/2008/07/05/friday/&amp;t=Friday" title="Post to MySpace">Post to MySpace</a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Friday&amp;link=http://kevin.withnall.com/2008/07/05/friday/" title="Post to Ping.fm"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/ping/tt-ping.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Friday&amp;link=http://kevin.withnall.com/2008/07/05/friday/" title="Post to Ping.fm">Ping This Post</a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/05/friday/&amp;title=Friday" title="Post to Reddit"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://kevin.withnall.com/2008/07/05/friday/&amp;title=Friday" title="Post to Reddit">Post to Reddit</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/05/friday/&amp;title=Friday" title="Post to StumbleUpon"><img class="nothumb" src="http://kevin.withnall.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://kevin.withnall.com/2008/07/05/friday/&amp;title=Friday" title="Post to StumbleUpon">Stumble This Post</a></p></div><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkevin.withnall.com%2F2008%2F07%2F05%2Ffriday%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://kevin.withnall.com/2008/07/05/friday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

