<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>timcorrigan.com</title>
	<atom:link href="http://timcorrigan.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://timcorrigan.com</link>
	<description>Tim Corrigan blogs on cycling, travelling and programming...</description>
	<lastBuildDate>Mon, 20 May 2013 12:41:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Raspberry Pi Tracked Robot &#8211; streaming video and text to speech</title>
		<link>http://timcorrigan.com/raspberry-pi-tracked-robot-streaming-video-and-text-to-speech/</link>
		<comments>http://timcorrigan.com/raspberry-pi-tracked-robot-streaming-video-and-text-to-speech/#comments</comments>
		<pubDate>Mon, 20 May 2013 12:41:57 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[robot]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1492</guid>
		<description><![CDATA[For phase two of my Raspberry Pi based robot (now christened &#8216;Roger&#8217;) I decided to add a camera for remote video based control and a speaker so that it can talk. The camera is a Logitech C200 plugged into one of the Pi&#8217;s usb ports and the speaker is the excellent  X-Mi X Mini 2 [...]]]></description>
				<content:encoded><![CDATA[<p>For phase two of my Raspberry Pi based robot (now christened &#8216;Roger&#8217;) I decided to add a camera for remote video based control and a speaker so that it can talk. The camera is a Logitech C200 plugged into one of the Pi&#8217;s usb ports and the speaker is the excellent  X-Mi X Mini 2 plugged into the Pi&#8217;s audio output.</p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/05/IMG_1644.jpg"><img class="alignright  wp-image-1537" style="margin: 20px;" alt="Robot with camera and speaker" src="http://timcorrigan.com/wp-content/uploads/2013/05/IMG_1644-640x480.jpg" width="384" height="288" /></a></p>
<h3>Text to Speech</h3>
<p>Easily handled by the Pi. I came across this article with a <a href="http://elinux.org/RPi_Text_to_Speech_(Speech_Synthesis)">few methods of achieving text to speech on the Pi</a> and went with the Festival option. At the moment I&#8217;m happy with it sounding very robot like! I&#8217;m calling it from Python with something like the following: <em>os.system(&#8216;echo &#8220;&#8216; + text + &#8216;&#8221; | festival &#8211;tts&#8217;) </em>where text is a variable containing the words to speak.</p>
<p>I also added the ability to play a wav file as a way to add solme fun sound effects (like a lorry start up noise when the robot starts up  and a siren for waking people up). This is done with aplay &#8211; full instructions <a href="http://www.raspberrypi-spy.co.uk/2012/06/raspberry-pi-speakers-analog-sound-test/">here</a>. Again called from python with something like: <em>os.system(&#8216;aplay /home/pi/robot/diesel_lorry.wav &amp;&#8217;).</em><br />
<span id="more-1492"></span></p>
<h3>Streaming Video</h3>
<p>For streaming video I&#8217;m using <a href="http://www.lavrsen.dk/foswiki/bin/view/Motion">Motion</a> &#8211; here are some <a href="http://sirlagz.net/2013/02/12/quickie-getting-motion-working-on-the-raspberry-pi/">quick setup instructions</a> for the Pi. The Logitech C200 works well out of the box with the Pi. I did try a C310 first but there was significantly more delay on the video stream (presumably because of the higher source resolution). If choosing a webcam (or any other peripheral) to get for your Pi check out this list of <a href="http://elinux.org/RPi_VerifiedPeripherals">verified peripherals</a> first. Obviously there is tons more I can do with Motion like detecting and responding to actual motion but for a first cut of streaming video to a browser for remote control robot operation this setup works well.</p>
<h3>HTTP API</h3>
<p>To control the robot via web browser I&#8217;m using <a href="https://code.google.com/p/webiopi/">Webiopi</a>. I have a Python script defining my Webiopi &#8216;macros&#8217; and a custom HTML page using their Javascript API to create a page with buttons and a text box for entering speech. Complete code listings for these at the end of the post.</p>
<h3>Demo of the robots capabilities so far</h3>
<p><iframe src="http://www.youtube.com/embed/KmiGuTC3kNE?rel=0" height="315" width="560" allowfullscreen="" frameborder="0"></iframe></p>
<h3>Code Listings</h3>
<pre class="prettyprint"><code class="language-php">
#webrobot.py
 
import webiopi
import time
import sys
import os
import urllib
from raspirobotboard import *

webiopi.setDebug()
robot = RaspiRobot()

def setup():
    webiopi.debug("Setup")
    flash_lights()
    flash_lights()
    os.system('amixer cset numid=3 1')
    os.system('aplay /home/pi/robot/diesel_lorry.wav &amp;amp;')

def destroy():
    webiopi.debug("Destroy")
    flash_lights()
    flash_lights()
    flash_lights()
    flash_lights()

@webiopi.macro
def speak(text):
    # decode url encoded parameters
    text = urllib.parse.unquote(text)
    webiopi.debug("Speaking: %s" % (text))
    os.system('echo "' + text + '" | festival --tts')

@webiopi.macro
def forward():
    robot.reverse()

@webiopi.macro
def reverse():
    robot.forward()

@webiopi.macro
def stop():
    robot.stop()

@webiopi.macro
def left():
	# turning in small increments, helps with slightly delayed response on a mobile
    robot.left(0.15) 

@webiopi.macro
def right():
    robot.right(0.15)

@webiopi.macro
def lights_on():
    robot.set_oc1(1)

@webiopi.macro
def lights_off():
    robot.set_oc1(0)

def flash_lights():
    lights_on()
    webiopi.sleep(0.25)
    lights_off()
    webiopi.sleep(0.25)
</code></pre>
<p><br/></p>
<pre class="prettyprint"><code class="language-php">
&lt;!-- robot.html --&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;
&lt;html&gt;
&lt;head&gt;
        &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt;
        &lt;meta name="viewport" content = "height = device-height, width = 420, user-scalable = no" /&gt;
        
        &lt;script type="text/javascript" src="/webiopi.js"&gt;&lt;/script&gt;
        &lt;script type="text/javascript"&gt;
        webiopi().ready(function() {
                var content, button;
                content = $("#content");

                button = webiopi().createMacroButton("lights", "Lights On", "lights_on");
                content.append(button);

                button = webiopi().createMacroButton("lights", "Lights Off", "lights_off");
                content.append(button);

                button = webiopi().createMacroButton("forward", "Forward", "forward");
                content.append(button);

                button = webiopi().createMacroButton("reverse", "Reverse", "reverse");
                content.append(button);

                button = webiopi().createMacroButton("stop", "Stop", "stop");
                content.append(button);

                button = webiopi().createMacroButton("left", "Left", "left");
                content.append(button);

                button = webiopi().createMacroButton("right", "Right", "right");
                content.append(button);

                button = webiopi().createButton("speak", "Speak", speakText);
                content.append(button);
                });

        function speakText() {
                var text = $('textarea#talk').val();
                webiopi().callMacro("speak", text);
        }

        &lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div id="content" align="center"&gt;
        &lt;textarea rows="5" cols="50" id="talk"&gt;Hello. My name is Roger. Nice to meet you.&lt;/textarea&gt;
    &lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;

</code></pre>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/raspberry-pi-tracked-robot-streaming-video-and-text-to-speech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi Tracked Robot &#8211; LED headlight</title>
		<link>http://timcorrigan.com/raspberry-pi-tracked-robot-led-headlight/</link>
		<comments>http://timcorrigan.com/raspberry-pi-tracked-robot-led-headlight/#comments</comments>
		<pubDate>Fri, 17 May 2013 18:15:23 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[robot]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1494</guid>
		<description><![CDATA[Sorting out some boxes the other day I came across an LED keyring torch given to me by friend Michael. Whilst this was an awesome torch, after a while the button became unusable so it has fallen out of use. So I had the idea to use the LED as a headlight for our Raspberry Pi based [...]]]></description>
				<content:encoded><![CDATA[<p>Sorting out some boxes the other day I came across an LED keyring torch given to me by friend <a href="http://www.michaelfuchs.org/razorsedge/">Michael</a>. Whilst this was an awesome torch, after a while the button became unusable so it has fallen out of use. So I had the idea to use the LED as a headlight for our Raspberry Pi based robot!</p>
<p>Here are the steps:</p>
<p>1. Dismantle LED torch. I was surprised how little there was in this one. Just two 3V batteries stacked on top of one another and the LED mounted in such a way as the switch makes it contact the batteries. No other circuitry or wiring.</p>
<p>2. Cut up protective plastic that often covers a UK mains socket when you get a new appliance. These make great LED bulb holders!</p>
<p>3. Solder the  LED to some hookup wire and connect to an output on your controller. I&#8217;m using one of the OC outputs on the <a href="https://github.com/simonmonk/raspirobotboard/wiki">Raspirobot board</a>. NB: You may need to put a <a href="http://led.linear1.org/1led.wiz">protective resistor</a> in depending on the LED you use.</p>
<p>4. Test. Setting the output to 1 (high) turns the LED on and to 0 turns it off.</p>
<p>5. Turn off the house lights and take your Robot exploring in the dark!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-27-1494">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-388" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/img_1621.jpg" title="Dismantled LED torch" class="shutterset_set_27" >
								<img title="Dismantled LED torch" alt="Dismantled LED torch" src="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/thumbs/thumbs_img_1621.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-389" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/img_1628.jpg" title="LED wiring" class="shutterset_set_27" >
								<img title="LED wiring" alt="LED wiring" src="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/thumbs/thumbs_img_1628.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-390" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/img_1629.jpg" title="LED bulb holder" class="shutterset_set_27" >
								<img title="LED bulb holder" alt="LED bulb holder" src="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/thumbs/thumbs_img_1629.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-391" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/img_1630.jpg" title="Robot healight test" class="shutterset_set_27" >
								<img title="Robot healight test" alt="Robot healight test" src="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/thumbs/thumbs_img_1630.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-392" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/img_1633.jpg" title="Night time robot exploration!" class="shutterset_set_27" >
								<img title="Night time robot exploration!" alt="Night time robot exploration!" src="http://timcorrigan.com/wp-content/gallery/robot-led-headlight/thumbs/thumbs_img_1633.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>Thanks again for the awesome torch Michael &#8211; made a great torch and now make a great robot headlight.</p>
]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/raspberry-pi-tracked-robot-led-headlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Afan MTB 2013</title>
		<link>http://timcorrigan.com/afan-mtb-2013/</link>
		<comments>http://timcorrigan.com/afan-mtb-2013/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 10:11:26 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[afan]]></category>
		<category><![CDATA[mtb]]></category>
		<category><![CDATA[team A]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1443</guid>
		<description><![CDATA[After a year off due to non cycling life getting in the way &#8211; Team A just made a return to the Afan Valley in South Wales and as usual we had a fair share of fun and drama. Arriving Friday night and heading straight to the pub regulars Andy, Mark S and myself welcomed [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1568.jpg"><img class="alignright  wp-image-1448" style="margin: 5px;" alt="Team A (day 2!)" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1568-640x480.jpg" width="384" height="288" /></a></p>
<p>After a year off due to non cycling life getting in the way &#8211; Team A just made a return to the Afan Valley in South Wales and as usual we had a fair share of fun and drama.</p>
<p>Arriving Friday night and heading straight to the pub regulars Andy, Mark S and myself welcomed  Mark F and Tom to the team, sharing stories of breakdowns, accidents and broken riders from <a href="http://timcorrigan.com/index.php/tag/afan/">previous trips</a>.</p>
<p>We predicted Andy having  his usual accident on the first climb and Mark S having his usual mechanical breakdown &#8211; supported by Mark&#8217;s admission that he&#8217;d had his rear suspension &#8216;temporarily fixed&#8217; by a shop with them predicting it would last &#8216;a day of riding if he is lucky&#8217;!</p>
<p>We also decided on doing the full <a href="http://mbwales.com/en/content/cms/centres/afan_forest_park/w2/w2.aspx">W2</a> route on the Saturday. This route is made up by combining the Wall and Whites Level into one big ride (the combination being graded a black route)&#8230;</p>
<p><span id="more-1443"></span></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1567-copy.jpg"><img class="alignright size-thumbnail wp-image-1452" style="margin: 10px;" alt="Tom at Afan MTB" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1567-copy-150x150.jpg" width="150" height="150" /></a></p>
<p>The usual Whites level climb out of the valley was closed and we took the diversion ascending what is normally the final descent. This was very technical climbing indeed but we made it in one piece and after the first section things got easier. After the first descent it was along the high level track over to the Wall, though we did manage to miss a sign and add in a whole extra loop of fire track!</p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1561.jpg"><img class="alignleft size-thumbnail wp-image-1449" style="margin: 10px;" alt="Mark F at Afan MTB" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1561-150x150.jpg" width="150" height="150" /></a></p>
<p>After some more great downhill we came across the new bike park (aka jumps). Riding over for &#8216;just a quick look&#8217; Mark S had a go on some small jumps and looked so comfortable and smooth I though I&#8217;d have a little go as well&#8230; and came flying off on the second jump and landed in a heap! Not as easy as Mark made it look then! (it&#8217;s all his fault obviously) With a very swollen left hand from my fall I could no longer grip the handle bar so any more technical downhill was ruled out for me. After Mark F bandaged my wounds up (from here on the team A medic) I made it down the hill and had to call it a day returning via the flat valley floor. Tom jumped on this chance to tap out as well and joined me while the others went on to complete the full W2 route. Well Andy, I guess I had to take my turn at being the injured one but I&#8217;m sure you&#8217;ll be back on form another year <img src='http://timcorrigan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1562-copy.jpg"><img class="alignright size-thumbnail wp-image-1451" style="margin: 10px;" alt="Mark at Afan MTB" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1562-copy-150x150.jpg" width="150" height="150" /></a></p>
<p>A prominent talking point of this trip were <a href="http://timcorrigan.com/index.php/2013/02/24/training-with-strava/">Strava stats</a>! If you&#8217;ve not heard about Strava it&#8217;s a mobile App that uses your GPS not only to map your rides but also to record your stats including personal records on sections and comparisons with friends and other riders&#8230; and it&#8217;s addictive. With Tom, Andy and I all training for the same road tour in June and all fairly close on distance ridden and elevation gained in 2013 to date, the competitiveness reached a peak for this weekend with most titles up for grabs.</p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1580.jpg"><img class="alignleft size-thumbnail wp-image-1446" style="margin: 10px;" alt="Tim and Tom on Skyline" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1580-150x150.jpg" width="150" height="150" /></a></p>
<p>Sunday had the 2 Mark&#8217;s and Andy head off around Whites again &#8211; they can&#8217;t get enough of that route! Tom and I planned a very sedate &#8216;Team B&#8217; style ride along the valley floor &#8211; however, setting off to explore we ended up climbing out of the valley along some fire track and we were delighted to see from a sign that we&#8217;d actually picked up the route of the <a href="http://mbwales.com/en/content/cms/Centres/Afan_Forest_Park/Skyline/Skyline.aspx">Skyline</a>! The Skyline is less technical (on average) but a much longer route than the others and though we&#8217;ve done it once we tend to avoid it because the others offer riding that differs more from what we can get at home. However it was perfect for me (riding one handed) and Tom (with tired legs) and we made it to the Windmill area at the top of the W2 climb and came down a mixture of more fire track and bridleways. The ride in the end wasn&#8217;t that far off (in the all important Strava stats) from the other groups ride so I&#8217;ve nominated it the <a href="http://app.strava.com/activities/51129792">Team A- Afan route</a> (and I&#8217;ve a feeling it will be ridden again in future!).</p>
<p>So the winner on the Strava stats? Andy is a clear winner on both elevation gained and distance ridden &#8211; but Tom and I managed to keep him well within reach. A great weekend &#8211; and as soon as my hand heals I&#8217;m going to be back on my bike trying to oust Andy from the top of the stats!</p>
<p>UPDATE 04/05/2013: By popular demand a pic of the swollen hand (much improved since then I&#8217;d add!):<br />
<img class="alignright size-medium wp-image-1487" style="margin-top: 10px; margin-bottom: 10px;" alt="Swollen hand injury" src="http://timcorrigan.com/wp-content/uploads/2013/04/photo-640x478.jpg" width="640" height="478" /></p>
]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/afan-mtb-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi Tracked Robot Phase 1</title>
		<link>http://timcorrigan.com/raspberry-pi-tracked-robot-phase-1/</link>
		<comments>http://timcorrigan.com/raspberry-pi-tracked-robot-phase-1/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 20:00:53 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[robot]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1415</guid>
		<description><![CDATA[So I decided it was time to get myself a Raspberry Pi. I have a few ideas for projects I want to do with it but to start I thought my 7 year old step son would both enjoy and learn from helping me build a robot. (ok I just really wanted to make a [...]]]></description>
				<content:encoded><![CDATA[<p>So I decided it was time to get myself a Raspberry Pi. I have a few ideas for projects I want to do with it but to start I thought my 7 year old step son would both enjoy and learn from helping me build a robot. (ok I just really wanted to make a robot &#8211; I don&#8217;t understand why anyone <em>wouldn&#8217;t</em> want to make a robot!)</p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1545.jpg"><img class="alignnone size-medium wp-image-1420" alt="RaspiRobot phase 1" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1545-640x480.jpg" width="640" height="480" /></a></p>
<p><span id="more-1415"></span></p>
<p>So phase 1 is up and running. It consists of:</p>
<p><a href="http://www.raspberrypi.org/">Raspberry Pi</a> +accessories. I got a case, mini keyboard, mouse and  monitor but none of these are essential &#8211; you can setup with any keyboard/tv/monitor and then continue via ssh. I already had SD cards and a suitable power supply.</p>
<p><a href="http://robosavvy.com/store/product_info.php/products_id/3658">RaspiRobot board</a> - I did need to solder this myself but even for someone who hasn&#8217;t soldered since I was a teenager it was pretty easy. And it let me feel like I actually built something rather than just plugged a few parts together <img src='http://timcorrigan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1533.jpg"><img class="alignnone size-medium wp-image-1418" alt="RaspiRobot Board" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1533-e1366917826896-504x480.jpg" width="504" height="480" /></a></p>
<p><a href="http://www.rapidonline.com/Education/Arexx-RP-5-Robot-Tank-Chassis-13-1194/?sid=11e81f65-5ca7-4d98-acf0-aaf5e4cfd071">Arexx RP 5 Chasis</a> - if I&#8217;m going to build a robot it&#8217;s going to be on a tank chassis!</p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1510.jpg"><img class="alignnone size-medium wp-image-1417" alt="Arexx RP 5 Chasis" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1510-e1366917627645-640x471.jpg" width="640" height="471" /></a></p>
<p><a href="http://www.amazon.co.uk/dp/B003MTTJOY/ref=pe_217191_31005151_M3_dp_1">Edimax EW-7811UN Wireless Adapter</a></p>
<p>I&#8217;m currently connecting via ssh over wifi and just issuing movement commands via the Python API written for the RaspiRobot board.</p>
<h3>Here are the steps to get to this point once you have the above items:</h3>
<p>- <a href="http://www.raspberrypi.org/quick-start-guide">Setup SD card and PI</a></p>
<p>- <a href="https://github.com/simonmonk/raspirobotboard/wiki/Building-Your-RaspiRobotBoard">Build RaspiRobot board</a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1530.jpg"><img class="alignnone size-medium wp-image-1422" alt="Building RaspiRobot Board" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1530-e1366918384121-640x428.jpg" width="640" height="428" /></a></p>
<p>-<a href="http://www.adafruit.com/blog/2012/12/20/tutorial-adafruits-raspberry-pi-lesson-6-using-ssh-raspberry_pi-raspberrypi/"> Enable SSH</a></p>
<p>- <a href="http://www.marcomc.com/2012/09/how-to-configure-wireless-lan-on-raspberrypi-with-raspbian-kernel-3-2-27-and-solwise-rtl8188cus-wifi-dongle/">Setup Wifi</a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1537.jpg"><img class="alignnone size-medium wp-image-1419" alt="Raspberry Robot Setup" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1537-e1366917984947-640x452.jpg" width="640" height="452" /></a></p>
<p>- Connect RaspiRobot board to the PI, and fit (ok blue-tack) to the chassis.  I soldered on a power connector I had lying around to connect the battery holder that came with the chassis to the RaspiRobot board. The battery holder slots neatly into the base of the chassis under the Pi. I also added a crocodile clip as a makeshift heat sink on the voltage regulator (I&#8217;m not sure if I really need this but it was getting extremely hot).</p>
<p>- Run through the <a href="https://github.com/simonmonk/raspirobotboard/wiki/Tutorial-01---Getting-Started">tutorial </a>for the RaspiRobot board to start issuing LED and movement commands from Python!</p>
<p>And here is the functioning Robot at the end of Phase 1.</p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1548.jpg"><img class="alignnone size-medium wp-image-1430" alt="RaspiRobot Phase 1" src="http://timcorrigan.com/wp-content/uploads/2013/04/IMG_1548-640x480.jpg" width="640" height="480" /></a></p>
<p>The next step is to write some proper control programs for it and then think about adding remote control by either Mobile App of Wii remote. And there are of course lots of other possibilities like adding sensors, a camera etc. etc.</p>
<p>Very happy with my robot so far &#8211; can&#8217;t wait to add more to it!</p>
]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/raspberry-pi-tracked-robot-phase-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>House renovation phase 1</title>
		<link>http://timcorrigan.com/house-renovation-phase-1/</link>
		<comments>http://timcorrigan.com/house-renovation-phase-1/#comments</comments>
		<pubDate>Sat, 16 Mar 2013 13:54:10 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1386</guid>
		<description><![CDATA[So we moved into our first &#8216;proper house&#8217; at the end of 2012. I&#8217;ve since been bombarding people with photos on my phone of various bits of renovation &#8211; much like someone who turns up with an armful of photo albums of family holiday pics! So to document some of the first phase of renovations we&#8217;ve done, [...]]]></description>
				<content:encoded><![CDATA[<p>So we moved into our first &#8216;proper house&#8217; at the end of 2012.</p>
<p>I&#8217;ve since been bombarding people with photos on my phone of various bits of renovation &#8211; much like someone who turns up with an armful of photo albums of family holiday pics! So to document some of the first phase of renovations we&#8217;ve done, here are some before and after pics. This is very much phase 1, covering the first 2 months of sorting out the worst things and getting everything functional.</p>
<p>Although this is obviously a departure from my normal blogging topics, there is one distinct cycling related advantage to the new place. A garage big enough to store both my bikes (and more) &#8211; so for the first time I&#8217;m able to live somewhere with both my road bike and mountain bike available at the same time. Hooray!</p>
<div id="attachment_1389" class="wp-caption alignnone" style="width: 624px"><a href="http://timcorrigan.com/wp-content/uploads/2013/03/bedroom-before-and-after.jpg"><img class=" wp-image-1389 " title="Bedroom - bye bye gold and pink!" alt="bedroom-before-and-after" src="http://timcorrigan.com/wp-content/uploads/2013/03/bedroom-before-and-after-1024x638.jpg" width="614" height="383" /></a><p class="wp-caption-text">Bedroom &#8211; bye bye gold and pink!</p></div>
<p><span id="more-1386"></span></p>
<p><!--more--></p>
<div id="attachment_1390" class="wp-caption alignnone" style="width: 624px"><a href="http://timcorrigan.com/wp-content/uploads/2013/03/bedroom-door-before-and-aft.jpg"><img class=" wp-image-1390 " title="Bedroom door and wardrobe" alt="bedroom-door-before-and-aft" src="http://timcorrigan.com/wp-content/uploads/2013/03/bedroom-door-before-and-aft-1024x638.jpg" width="614" height="383" /></a><p class="wp-caption-text">Bedroom door and wardrobe</p></div>
<div id="attachment_1393" class="wp-caption alignnone" style="width: 624px"><a href="http://timcorrigan.com/wp-content/uploads/2013/03/kitchen-before-and-after.jpg"><img class=" wp-image-1393" title="Kitchen" alt="kitchen-before-and-after" src="http://timcorrigan.com/wp-content/uploads/2013/03/kitchen-before-and-after-1024x638.jpg" width="614" height="383" /></a><p class="wp-caption-text">Kitchen</p></div>
<div id="attachment_1391" class="wp-caption alignnone" style="width: 624px"><a href="http://timcorrigan.com/wp-content/uploads/2013/03/dining-before-and-after.jpg"><img class=" wp-image-1391" title="Dining room" alt="dining-before-and-after" src="http://timcorrigan.com/wp-content/uploads/2013/03/dining-before-and-after-1024x638.jpg" width="614" height="383" /></a><p class="wp-caption-text">Dining room</p></div>
<div id="attachment_1392" class="wp-caption alignnone" style="width: 624px"><a href="http://timcorrigan.com/wp-content/uploads/2013/03/shower-before-and-after.jpg"><img class=" wp-image-1392" title="Bathroom" alt="shower-before-and-after" src="http://timcorrigan.com/wp-content/uploads/2013/03/shower-before-and-after-1024x638.jpg" width="614" height="383" /></a><p class="wp-caption-text">Bathroom</p></div>
<p>And finally a gallery of images of moving in day and work going on in the early stages:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-26-1386">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-376" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1149.jpg" title="Old Fusebox - now replaced." class="shutterset_set_26" >
								<img title="Old Fusebox - now replaced." alt="Old Fusebox - now replaced." src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1149.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-377" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1281.jpg" title="Drain cover - disintegrated  when driven over" class="shutterset_set_26" >
								<img title="Drain cover - disintegrated  when driven over" alt="Drain cover - disintegrated  when driven over" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1281.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-378" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1285.jpg" title="Bedroom painting" class="shutterset_set_26" >
								<img title="Bedroom painting" alt="Bedroom painting" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1285.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-379" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1309.jpg" title="Move day living room boxes" class="shutterset_set_26" >
								<img title="Move day living room boxes" alt="Move day living room boxes" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1309.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-380" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1310.jpg" title="Old Bathroom" class="shutterset_set_26" >
								<img title="Old Bathroom" alt="Old Bathroom" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1310.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 		
	<div id="ngg-image-381" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1316.jpg" title="Garage on moving in day" class="shutterset_set_26" >
								<img title="Garage on moving in day" alt="Garage on moving in day" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1316.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-382" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1318.jpg" title="Hallway on moving in day" class="shutterset_set_26" >
								<img title="Hallway on moving in day" alt="Hallway on moving in day" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1318.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-383" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1321.jpg" title="One of many tip trips" class="shutterset_set_26" >
								<img title="One of many tip trips" alt="One of many tip trips" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1321.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-384" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1329.jpg" title="Bathroom renovation" class="shutterset_set_26" >
								<img title="Bathroom renovation" alt="Bathroom renovation" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1329.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-385" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1342.jpg" title="Old bathroom remains" class="shutterset_set_26" >
								<img title="Old bathroom remains" alt="Old bathroom remains" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1342.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 		
	<div id="ngg-image-386" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1353.jpg" title="Fixing a leak" class="shutterset_set_26" >
								<img title="Fixing a leak" alt="Fixing a leak" src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1353.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-387" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/house-phase-1/img_1471.jpg" title="Garage light. Condemned and disconnected." class="shutterset_set_26" >
								<img title="Garage light. Condemned and disconnected." alt="Garage light. Condemned and disconnected." src="http://timcorrigan.com/wp-content/gallery/house-phase-1/thumbs/thumbs_img_1471.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/house-renovation-phase-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Training with Strava</title>
		<link>http://timcorrigan.com/training-with-strava/</link>
		<comments>http://timcorrigan.com/training-with-strava/#comments</comments>
		<pubDate>Sun, 24 Feb 2013 08:52:52 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Biking]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1379</guid>
		<description><![CDATA[I&#8217;ve started training for a big cycling trip this year (more on that in a future post!). When one of my fellow riders emailed to say I should get on Strava I thought oh no &#8211; not another GPS mapping app &#8211; quite happy with Everytrail thank you. However &#8211; after a few rides I&#8217;m [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve started training for a big cycling trip this year (more on that in a future post!). When one of my fellow riders emailed to say I should get on <a href="http://www.strava.com">Strava</a> I thought oh no &#8211; not another GPS mapping app &#8211; quite happy with Everytrail thank you. However &#8211; after a few rides I&#8217;m converted. The App is really easy to use and if you have friends that ride you get to see all their rides and compare each others trainers. And I think this is going to be super motivating!</p>
<p>Here&#8217;s the ride I did yesterday courtesy of my new favourite mapping AND social networking App Strava:</p>
<p><iframe height='405' width='590' frameborder='0' allowtransparency='true' scrolling='no' src='http://app.strava.com/activities/41941146/embed/a15fbbdc158b26e77eb8976e84ceb9668fcdb5cc'></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/training-with-strava/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Remote working: the pitfalls of Skype</title>
		<link>http://timcorrigan.com/remote_working_skype_pitfalls/</link>
		<comments>http://timcorrigan.com/remote_working_skype_pitfalls/#comments</comments>
		<pubDate>Wed, 07 Nov 2012 19:45:17 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1362</guid>
		<description><![CDATA[I was searching for something in my Skype history today and caught myself laughing at the bizarre mixture of banalities,  repetitiveness, dreadful spelling and total screw ups. So here are a few choice excerpts &#8211; this is probably only going to interest you if you work remotely or are a programming nerd, preferably both. But if you are &#8211; [...]]]></description>
				<content:encoded><![CDATA[<p>I was searching for something in my Skype history today and caught myself laughing at the bizarre mixture of banalities,  repetitiveness, dreadful spelling and total screw ups. So here are a few choice excerpts &#8211; this is probably only going to interest you if you work remotely or are a programming nerd, preferably both. But if you are &#8211; this might ring a few bells&#8230;</p>
<p><span id="more-1362"></span></p>
<p>I&#8217;ve anonymized as I&#8217;m sure my Skype correspondents don&#8217;t expect their chat to get published &#8211; but other than that it&#8217;s true to the original, spelling mistakes and all.</p>
<h3>Idle status?</h3>
<p>Tim:will put it in email&#8230;<br />
James: Yes &#8211; no probs.<br />
James: Whats happening?<br />
Tim: just sent an email&#8230;<br />
James: LOL OK<br />
&#8230;</p>
<h3>Security breach</h3>
<p>Tim: wwineS02lkl<br />
Rob: wrong window?<br />
Tim: wwinlol<br />
Rob: Security breach<br />
Tim: sorry &#8211; that&#8217;s my Ubuntu VM password <img src='http://timcorrigan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Rob: LOL<br />
Rob: Delete chat history<br />
&#8230;</p>
<h3>Remote server restarts</h3>
<p>Chris: Do you want be to stop the web server now?<br />
Tim: ok yes please<br />
Chris: Ok its stopped<br />
Tim: thanks<br />
Tim: ok &#8211; can you start server again then please?<br />
Chris: Started<br />
Tim: ok. and now stop please<br />
Chris: Stopped<br />
Tim : thanks<br />
Tim: k can you restart the server please?<br />
Chris: Ok, started<br />
Tim : thanks<br />
Tim: ok and stop again<br />
Chris: Stopped<br />
Tim: cool fixed<br />
&#8230;</p>
<h3>Crystal Ball</h3>
<p>steve: Powering up my crystal ball<br />
Tim: I think the check box is clear &#8211; the downside is that it will be hard to fit a descriptive label in (applies to button as well)<br />
Tim: you should go to the crystal maze<br />
steve: lots of crystals there<br />
Tim: ok &#8211; more changes pushed to github. I think I&#8217;ve addressed everything at least in some way.<br />
steve: checbox thing is pretty good!<br />
&#8230;</p>
<h3>Coding/Life mashup</h3>
<p>duncan: ok laundry + coffee + js scolling &#8212; will ping before 11!<br />
&#8230;</p>
<h3>Responsive Design</h3>
<p>dave: but ZOMG narrow the browser<br />
dave: responsive design!<br />
Tim: yeah already done<br />
Tim: very nice<br />
dave: wait are you the kind of SAD NERD who automatically narrows browser windows just to see? o_O<br />
Tim: yeah wonder where I got that from<br />
&#8230;</p>
<h3>Home working environment</h3>
<p>scott: I am experimenting with standing rather than sitting at work cos my back has been bad recently<br />
Tim: wow<br />
Tim: sounds bad<br />
scott: yeah I am such a hipster &#8212; standing desk<br />
scott: all the web 3.0 startups have them<br />
scott: get with the programme<br />
Tim: web 3.0? I&#8217;m web 4.0<br />
&#8230;</p>
<h3>Browser compatibility</h3>
<p>Tim: The IE error could be because of the embed?&amp; (shouldn&#8217;t have the &amp; in this case) or perhaps so other problem with encoding of that url<br />
Ben: we&#8217;ll work on the IE 8 problem.<br />
Tim: to be clear &#8211; I&#8217;ve tested in latest Firefox, latest Chrome and IE9 (sorry not 8) &#8211; they should test in other as well &#8211; especially older IE versions<br />
Ben: So it&#8217;s IE9, not 8, that you tested?<br />
Ben: Thanks, Tim.<br />
Tim: yes. IE9 for sure.<br />
&#8230;</p>
<h3>Nerd Hipness</h3>
<p>scott: I am off to Bletchley for Over the Air tomorrow<br />
Tim: oo nice<br />
scott: now who&#8217;s the loser schmooser not-so-hipster?<br />
Tim: I&#8217;m launching an Android app tomorrow!<br />
dave: ooh<br />
scott: I have been working with PHP CodeIgniter framework (2 weeks ago) and now PHP Cake framework<br />
Tim: hmm I&#8217;n not sure that gets you any points<br />
&#8230;</p>
<p>Your own Skype (or GChat) excerpts are welcome in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/remote_working_skype_pitfalls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SW Coast Path Sidmouth to Abbotsbury</title>
		<link>http://timcorrigan.com/sw-coast-path-sidmouth-to-abbotsbury/</link>
		<comments>http://timcorrigan.com/sw-coast-path-sidmouth-to-abbotsbury/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 21:10:13 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Walks]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1343</guid>
		<description><![CDATA[This year I&#8217;ve managed to add a new leg to my South West Coast Path record with my friend Mike. Over the course of two separate weekends we managed to cover the path from Sidmouth in Devon to Abbotsbury in Dorset. This section features some challenging hills including Golden Cap, the highest point on the [...]]]></description>
				<content:encoded><![CDATA[<p>This year I&#8217;ve managed to add a new leg to my South West Coast Path record with my friend Mike. Over the course of two separate weekends we managed to cover the path from Sidmouth in Devon to Abbotsbury in Dorset. This section features some challenging hills including Golden Cap, the highest point on the whole trail.</p>
<p>This being Devon and Dorset and England though it would have been rude not to have sampled a fair few English breakfasts, ice creams, pub meals, cream teas and beers along the way! Two very enjoyable weekends indeed!</p>
<p>Some pictures and a rough route map follow (map isn&#8217;t true GPS data this time &#8211; but it&#8217;s enough to give you an idea). For more on my previous excursion onto the SW Coast path you probably want to check out <em>the other </em><a title="Michael Fuchs on the South West Coast Path" href="http://www.michaelfuchs.org/razorsedge/index.php?story=2006-09-08">Michael&#8217;s account</a></p>
<p><a href="http://www.everytrail.com/view_trip.php?trip_id=1846023">SW Coast Path Sidmouth to Abbotsbury at EveryTrail</a><br />
<iframe src="http://www.everytrail.com/iframe2.php?trip_id=1846023&amp;width=400&amp;height=300" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="400" height="300"></iframe></p>

<div class="ngg-galleryoverview" id="ngg-gallery-25-1343">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-370" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/img_0456.jpg" title="Mike scaling stone heights" class="shutterset_set_25" >
								<img title="Mike scaling stone heights" alt="Mike scaling stone heights" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_img_0456.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-369" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/img_0437.jpg" title="Mike on steps" class="shutterset_set_25" >
								<img title="Mike on steps" alt="Mike on steps" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_img_0437.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-368" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/img_0423.jpg" title="Coast path Habour" class="shutterset_set_25" >
								<img title="Coast path Habour" alt="Coast path Habour" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_img_0423.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-367" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/dscf2660.jpg" title="Tim on crumbling cliff" class="shutterset_set_25" >
								<img title="Tim on crumbling cliff" alt="Tim on crumbling cliff" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_dscf2660.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-366" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/dscf2653.jpg" title="Tim on beach" class="shutterset_set_25" >
								<img title="Tim on beach" alt="Tim on beach" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_dscf2653.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 		
	<div id="ngg-image-371" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/dscf3479.jpg" title="Tim and Mike arriving at Westbay" class="shutterset_set_25" >
								<img title="Tim and Mike arriving at Westbay" alt="Tim and Mike arriving at Westbay" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_dscf3479.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-372" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/img_1240.jpg" title="Westbay harbour at sunset" class="shutterset_set_25" >
								<img title="Westbay harbour at sunset" alt="Westbay harbour at sunset" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_img_1240.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-373" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/img_1241.jpg" title="Boats in Westbay" class="shutterset_set_25" >
								<img title="Boats in Westbay" alt="Boats in Westbay" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_img_1241.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-374" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/img_1245.jpg" title="Seagulls perching" class="shutterset_set_25" >
								<img title="Seagulls perching" alt="Seagulls perching" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_img_1245.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-375" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/img_1246.jpg" title="Mike in Westbay" class="shutterset_set_25" >
								<img title="Mike in Westbay" alt="Mike in Westbay" src="http://timcorrigan.com/wp-content/gallery/sw-coast-path-sidmouth-abbotsbury/thumbs/thumbs_img_1246.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/sw-coast-path-sidmouth-to-abbotsbury/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tour du Mont Blanc 2012</title>
		<link>http://timcorrigan.com/tour-du-mont-blanc-2012/</link>
		<comments>http://timcorrigan.com/tour-du-mont-blanc-2012/#comments</comments>
		<pubDate>Sun, 01 Jul 2012 13:16:17 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Trips]]></category>
		<category><![CDATA[Walks]]></category>
		<category><![CDATA[Alps]]></category>
		<category><![CDATA[France]]></category>
		<category><![CDATA[Hiking]]></category>
		<category><![CDATA[Italy]]></category>
		<category><![CDATA[Mont Blanc]]></category>
		<category><![CDATA[Switzerland]]></category>
		<category><![CDATA[TMB]]></category>
		<category><![CDATA[Tour du Mont Blanc]]></category>
		<category><![CDATA[Trekking]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1313</guid>
		<description><![CDATA[Michael, Alex, Mark and I set out to walk the TMB &#8211; a 170km long route circumnavigating Mont Blanc in the Alps with around 10,000m of ascent and descent over 10 days. We were at the very beginning of the season, staying in several refuges the day they opened for the first time in the [...]]]></description>
				<content:encoded><![CDATA[<p>Michael, Alex, Mark and I set out to walk the TMB &#8211; a 170km long route circumnavigating Mont Blanc in the Alps with around 10,000m of ascent and descent over 10 days.</p>
<p>We were at the very beginning of the season, staying in several refuges the day they opened for the first time in the year. Being so early, the trail was relatively quiet but we still met several others doing the same trip or some portion of it.</p>
<p>We stayed in a combination of B&amp;Bs, hotels and refuge accomodation &#8211; the refuges including the absolutely delightful <a href="http://www.rifugiobonatti.it/">Refugio Bonatti</a> (nicer than many hotels I&#8217;ve stayed in) and the  <a href="http://it.wikipedia.org/wiki/Rifugio_Elisabetta_Soldini_Montanaro">Refugio Elisabetta</a>. The later would have probably been pretty nice except that&#8230; Michael lept to take the first shower which he managed&#8230; just! After that no more running water in the entire refuge for the duration of our stay (one 15cmx15cm wipe was my entire showering experience that night!)</p>
<p>Other highlights:</p>
<ul>
<li>Sliding down the snow slopes in the passes (see video below)</li>
<li>Eating as much as we liked (and then some) for 10 days</li>
<li>Some challenging river crossings (I removed boots for just 1 to wade)</li>
<li>in 10 days of walking only 2 hours of rain and many glorious sunny days</li>
<li>The variety of views as we changed altitude and country (France -&gt; Italy -&gt; Switzerland -&gt; France)</li>
</ul>
<p>Sadly, Alex didn&#8217;t make it the whole way round due to a lot of knee pain. I believe that descending presents a bigger challenge to those not used to this kind of walking for exactly this reason. Alex was the only one who&#8217;d not done a long distance trail before (though we all felt knee pain during the first few days) so I guess the moral of the story is &#8211; the TMB probably isn&#8217;t an ideal <em>first</em> multi day hike. Nonetheless hopefully he&#8217;ll have got a taste of the truly stunning views and sense of achievement and will keep up the hiking!</p>
<p>Here are a selection of photos from the trip:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-24-1313">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-333" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_02.jpg" title="TMB Bridge" class="shutterset_set_24" >
								<img title="TMB Bridge" alt="TMB Bridge" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_02.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-334" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_03.jpg" title="TMB Valley" class="shutterset_set_24" >
								<img title="TMB Valley" alt="TMB Valley" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_03.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-335" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_04.jpg" title="TMB first snow" class="shutterset_set_24" >
								<img title="TMB first snow" alt="TMB first snow" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_04.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-336" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_05.jpg" title="TMB first snow" class="shutterset_set_24" >
								<img title="TMB first snow" alt="TMB first snow" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_05.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-338" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_07.jpg" title="Melting snow" class="shutterset_set_24" >
								<img title="Melting snow" alt="Melting snow" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_07.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 		
	<div id="ngg-image-339" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_08.jpg" title="Snowy valley" class="shutterset_set_24" >
								<img title="Snowy valley" alt="Snowy valley" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_08.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-340" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_09.jpg" title="Tim on TMB" class="shutterset_set_24" >
								<img title="Tim on TMB" alt="Tim on TMB" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_09.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-341" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_10.jpg" title="Snow slopes" class="shutterset_set_24" >
								<img title="Snow slopes" alt="Snow slopes" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_10.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-343" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_12.jpg" title="Wall of snow" class="shutterset_set_24" >
								<img title="Wall of snow" alt="Wall of snow" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_12.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-344" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_13.jpg" title="Dodgy river crossing" class="shutterset_set_24" >
								<img title="Dodgy river crossing" alt="Dodgy river crossing" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_13.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 		
	<div id="ngg-image-345" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_15.jpg" title="High lake" class="shutterset_set_24" >
								<img title="High lake" alt="High lake" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_15.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-346" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_16.jpg" title="Green descent" class="shutterset_set_24" >
								<img title="Green descent" alt="Green descent" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_16.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-347" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_17.jpg" title="Michael on TMB" class="shutterset_set_24" >
								<img title="Michael on TMB" alt="Michael on TMB" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_17.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-348" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_18.jpg" title="Michael on ridge" class="shutterset_set_24" >
								<img title="Michael on ridge" alt="Michael on ridge" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_18.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-349" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_19.jpg" title="Muddy ascent" class="shutterset_set_24" >
								<img title="Muddy ascent" alt="Muddy ascent" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_19.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 		
	<div id="ngg-image-350" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_20.jpg" title="Highest beer" class="shutterset_set_24" >
								<img title="Highest beer" alt="Highest beer" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_20.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-351" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_21.jpg" title="The TMB team" class="shutterset_set_24" >
								<img title="The TMB team" alt="The TMB team" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_21.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-352" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_22.jpg" title="Glacier view" class="shutterset_set_24" >
								<img title="Glacier view" alt="Glacier view" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_22.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-353" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_23.jpg" title="The knee savers" class="shutterset_set_24" >
								<img title="The knee savers" alt="The knee savers" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_23.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-354" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_24.jpg" title="Mark on Bridge" class="shutterset_set_24" >
								<img title="Mark on Bridge" alt="Mark on Bridge" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_24.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 		
	<div id="ngg-image-355" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_25.jpg" title="Compass Michael" class="shutterset_set_24" >
								<img title="Compass Michael" alt="Compass Michael" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_25.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-356" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_26.jpg" title="Compass Tim" class="shutterset_set_24" >
								<img title="Compass Tim" alt="Compass Tim" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_26.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-358" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_28.jpg" title="Snow field" class="shutterset_set_24" >
								<img title="Snow field" alt="Snow field" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_28.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-359" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_29.jpg" title="TMB ladders and ropes" class="shutterset_set_24" >
								<img title="TMB ladders and ropes" alt="TMB ladders and ropes" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_29.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-360" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_30.jpg" title="Compass Mark" class="shutterset_set_24" >
								<img title="Compass Mark" alt="Compass Mark" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_30.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 		
	<div id="ngg-image-361" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_31.jpg" title="Climbing pillars" class="shutterset_set_24" >
								<img title="Climbing pillars" alt="Climbing pillars" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_31.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-362" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_32.jpg" title="Tim's hat" class="shutterset_set_24" >
								<img title="Tim's hat" alt="Tim's hat" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_32.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-363" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_33.jpg" title="Friendly Ibex" class="shutterset_set_24" >
								<img title="Friendly Ibex" alt="Friendly Ibex" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_33.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-364" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_34.jpg" title="Mountain lake" class="shutterset_set_24" >
								<img title="Mountain lake" alt="Mountain lake" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_34.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-365" class="ngg-gallery-thumbnail-box" style="width:20%;" >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/tour_du_mont_blanc_2012_35.jpg" title="Mont Blanc in the evening" class="shutterset_set_24" >
								<img title="Mont Blanc in the evening" alt="Mont Blanc in the evening" src="http://timcorrigan.com/wp-content/gallery/tour-du-mont-blanc/thumbs/thumbs_tour_du_mont_blanc_2012_35.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
				<br style="clear: both" />
	
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>&nbsp;</p>
<p>&#8230; and a  2 minute video, giving a small glimpse into what it was like on our Tour du Mont Blanc. I think Mark&#8217;s line &#8220;STOP taking pictures and walk&#8230; oh God&#8221; will be one I&#8217;ll remember for some time!</p>
<p><iframe src="http://www.youtube.com/embed/EV4DcgHrRrY?rel=0" frameborder="0" width="640" height="360"></iframe></p>
<p>In summary &#8211; the views were stunning, the walking challenging but satisfying and the company fantastic so all in all it was certainly the best walking trip I&#8217;ve ever been on and right up there in the top handful of trips of any kind. Highly recommended once you have 1 or 2  <em>slightly flatter</em> long distance walking trails under your belt!</p>
]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/tour-du-mont-blanc-2012/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Tour du Mont Blanc day 10 update</title>
		<link>http://timcorrigan.com/tour-du-mont-blanc-day-10-update/</link>
		<comments>http://timcorrigan.com/tour-du-mont-blanc-day-10-update/#comments</comments>
		<pubDate>Sat, 23 Jun 2012 13:46:17 +0000</pubDate>
		<dc:creator>Tim Corrigan</dc:creator>
				<category><![CDATA[Trips]]></category>
		<category><![CDATA[Walks]]></category>
		<category><![CDATA[Hiking]]></category>
		<category><![CDATA[Mont Blanc]]></category>

		<guid isPermaLink="false">http://timcorrigan.com/?p=1285</guid>
		<description><![CDATA[We have finally completed our Tour du Mont Blanc and have arrived in Chamonix. Over the last few days we&#8217;ve done a huge amount of ascending and descending, have seen many ibex and enjoyed the part of the route with many ladders. Some more photos before a full write up when I get home&#8230;]]></description>
				<content:encoded><![CDATA[<p>We have finally completed our Tour du Mont Blanc and have arrived in Chamonix.</p>
<p>Over the last few days we&#8217;ve done a huge amount of ascending and descending, have seen many ibex and enjoyed the part of the route with many ladders. Some more photos before a full write up when I get home&#8230;</p>
<p><span id="more-1285"></span></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154628.jpg"><img class="alignnone size-full" src="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154628.jpg" alt="20120623-154628.jpg" /></a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154700.jpg"><img class="alignnone size-full" src="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154700.jpg" alt="20120623-154700.jpg" /></a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154818.jpg"><img class="alignnone size-full" src="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154818.jpg" alt="20120623-154818.jpg" /></a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154850.jpg"><img class="alignnone size-full" src="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154850.jpg" alt="20120623-154850.jpg" /></a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154922.jpg"><img class="alignnone size-full" src="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154922.jpg" alt="20120623-154922.jpg" /></a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154950.jpg"><img class="alignnone size-full" src="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-154950.jpg" alt="20120623-154950.jpg" /></a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-155025.jpg"><img class="alignnone size-full" src="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-155025.jpg" alt="20120623-155025.jpg" /></a></p>
<p><a href="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-155042.jpg"><img class="alignnone size-full" src="http://timcorrigan.com/wp-content/uploads/2012/06/20120623-155042.jpg" alt="20120623-155042.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://timcorrigan.com/tour-du-mont-blanc-day-10-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

 Served from: timcorrigan.com @ 2013-05-20 16:19:57 by W3 Total Cache -->