<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Ross Goodman</title>
	
	<link>http://www.rossgoodman.com</link>
	<description>Me; What I Do; What I Like !</description>
	<lastBuildDate>Tue, 29 Jan 2013 13:24:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/RossGoodman" /><feedburner:info uri="rossgoodman" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Contacts – Keep In Touch or Update Details</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/ghR6p5dIrcQ/</link>
		<comments>http://www.rossgoodman.com/2013/01/29/contacts-keep-in-touch-or-update-details/#comments</comments>
		<pubDate>Tue, 29 Jan 2013 13:24:57 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Contacts]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=609</guid>
		<description><![CDATA[One of my New Year resolutions was to keep in touch with more people. I also need to clear out my contact list as there are lots of &#8220;old&#8221; and incomplete entries in my Google contacts list. Ever the productivity &#8230; <a href="http://www.rossgoodman.com/2013/01/29/contacts-keep-in-touch-or-update-details/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of my New Year resolutions was to keep in touch with more people.</p>
<p>I also need to clear out my contact list as there are lots of &#8220;old&#8221; and incomplete entries in my Google contacts list.</p>
<p>Ever the productivity geek I wanted to automate this. I ended up writing the following Google Apps Script:</p>
<p><span id="more-609"></span></p>
<p>Select a random contact and then send myself an email prompting me to contact the person, edit their details and look them up on LinkedIn. This is then scheduled to run once a day:</p>
<blockquote><p>function reviewContacts() {<br />
var contacts=ContactsApp.getContacts()<br />
var contactCount=contacts.length<br />
var randID=Math.ceil(Math.random()*contactCount)<br />
var aContact=contacts[randID]<br />
var contactArray = aContact.getId().split(&#8216;/&#8217;)<br />
var contactID = contactArray[contactArray.length - 1]<br />
Logger.log(contactID)<br />
var contactName = aContact.getFullName()<br />
Logger.log(contactName)<br />
if (aContact.getCompanies().length &gt; 0) {<br />
var companyName = aContact.getCompanies()[0].getCompanyName()<br />
}<br />
else {<br />
var companyName = &#8220;&#8221;<br />
}<br />
Logger.log(companyName)<br />
if (aContact.getEmails().length &gt; 0){<br />
var emailAddress = aContact.getEmails()[0].getAddress()<br />
}<br />
else {<br />
var emailAddress = &#8220;&#8221;<br />
}<br />
Logger.log(emailAddress)<br />
var strMessage = &#8216;Please review the contact information for &#8216; + contactName + &#8216; from &#8216; +companyName +&#8217;.\n&#8217;<br />
strMessage += &#8216;Send an email to: &#8216; + emailAddress + &#8216;.\n&#8217;<br />
strMessage += &#8216;Edit the contact https://www.google.com/contacts/#contact/&#8217; + contactID + &#8216; &#8216; + contactName + &#8216;.\n&#8217;<br />
strMessage += &#8216;Search LinkedIn http://www.linkedin.com/search/fpsearch?type=people&amp;keywords=&#8217; + encodeURI(contactName) + &#8216;.&#8217;</p>
<p>Logger.log(strMessage);<br />
GmailApp.sendEmail(&#8216;Me@MyDomain.com&#8217;, &#8216;Review Contact &#8211; &#8216; + contactName + &#8216; from &#8216; + companyName , strMessage)<br />
};</p></blockquote>
<p>Please NOTE:</p>
<ul>
<li>Any Quotes in the script should be delete and re-typed as the editor replaces them with &#8220;smart&#8221; quotes.</li>
<li>This is not very performant &#8211; I&#8217;m just learning the Google APIs.</li>
<li>This is not very &#8220;good&#8221; &#8211; I have never claimed to be a JavaScript programmer !</li>
</ul>
<p>If you have any suggestions for improvements to this code, let me know in the comments.</p>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/ghR6p5dIrcQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2013/01/29/contacts-keep-in-touch-or-update-details/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2013/01/29/contacts-keep-in-touch-or-update-details/</feedburner:origLink></item>
		<item>
		<title>Add Reminders To Outlook Appointments</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/Metf_NJmafQ/</link>
		<comments>http://www.rossgoodman.com/2012/12/17/add-reminders-to-outlook-appointments/#comments</comments>
		<pubDate>Mon, 17 Dec 2012 17:19:16 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Appointment]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Reminder]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=606</guid>
		<description><![CDATA[photo credit: Andrew Coulter Enright If like me your Outlook calendar can get a bit hectic and others can add meetings to your calendar sometimes you end up simply &#8220;reacting&#8221; to your schedule and jumping from one appointment to the &#8230; <a href="http://www.rossgoodman.com/2012/12/17/add-reminders-to-outlook-appointments/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="A Reminder" href="http://www.flickr.com/photos/61724844@N00/51581403/" target="_blank"><img src="http://farm1.static.flickr.com/28/51581403_44e1a48396_m.jpg" border="0" alt="A Reminder" /></a><br />
<small><a title="Attribution-NonCommercial-ShareAlike License" href="http://creativecommons.org/licenses/by-nc-sa/2.0/" target="_blank"><img src="http://www.rossgoodman.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="Andrew Coulter Enright" href="http://www.flickr.com/photos/61724844@N00/51581403/" target="_blank">Andrew Coulter Enright</a></small></p>
<p>If like me your Outlook calendar can get a bit hectic and others can add meetings to your calendar sometimes you end up simply &#8220;reacting&#8221; to your schedule and jumping from one appointment to the next on &#8220;autopilot&#8221;. It&#8217;s at times like these that Outlook&#8217;s ability to create a reminder can save your dignity.</p>
<p>However, sometimes the meeting organiser does not set a reminder. I have created an Outlook macro that will look for incoming meeting requests, without a reminder set and give you the option to set a reminder.</p>
<p><span id="more-606"></span></p>
<p>Add the following macro code to your &#8220;ThisOutlookSession&#8221; project</p>
<div>
<pre><span style="font-family: Arial; font-size: x-small;">Private WithEvents Items As  Outlook.Items

Private Sub  Application_Startup()
 Dim Ns As  Outlook.NameSpace
 Set Ns =  Application.GetNamespace("MAPI")
 Set Items =  Ns.GetDefaultFolder(olFolderCalendar).Items
</span><span style="font-family: Arial; font-size: x-small;">End Sub

Private Sub Items_ItemAdd(ByVal Item As  Object)
 On Error Resume Next
 Dim  Appt As Outlook.AppointmentItem
 If TypeOf Item Is  Outlook.AppointmentItem Then
  Set  Appt = Item
  If Appt.ReminderSet =  False Then
   If MsgBox("NO REMINDER IS SET! Do you want to add one?", vbYesNo) = vbYes  Then
    Appt.ReminderSet =  True
    Appt.ReminderMinutesBeforeStart =  15
    Appt.Save
   End If
  End  If
 End If
End Sub
</span></pre>
<p><span style="font-size: x-small;"><span style="font-family: Arial;">NOTE: If you copy and paste the code above into your editor, p<span style="font-size: x-small;"><span style="font-family: Arial;">lease re-type <span style="font-size: x-small;"><span style="font-family: Arial;">any quotation characters other<span style="font-size: x-small;"><span style="font-family: Arial;">wise you will get compilation <span style="font-size: x-small;"><span style="font-family: Arial;">errors d<span style="font-size: x-small;"><span style="font-family: Arial;">ue to &#8220;smart quotes&#8221;.</span></span></span></span></span></span></span></span></span></span></span></span></p>
</div>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/Metf_NJmafQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/12/17/add-reminders-to-outlook-appointments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/12/17/add-reminders-to-outlook-appointments/</feedburner:origLink></item>
		<item>
		<title>Dublin Marathon 2012</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/dx4Q-N7LySo/</link>
		<comments>http://www.rossgoodman.com/2012/11/07/dublin-marathon-2012/#comments</comments>
		<pubDate>Wed, 07 Nov 2012 13:23:10 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Fundraising]]></category>
		<category><![CDATA[MND]]></category>
		<category><![CDATA[Marathon]]></category>
		<category><![CDATA[Motor Neuron Disease]]></category>
		<category><![CDATA[Ross]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[marathon]]></category>
		<category><![CDATA[mndscotland]]></category>
		<category><![CDATA[running]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=602</guid>
		<description><![CDATA[Well &#8211; that&#8217;s my final marathon of the year done and what a way to end it. Fantastic location, fantastic people/support, fantastic weather (cold and dry) and a personal best by over 14 minutes! You can review my marathon stats &#8230; <a href="http://www.rossgoodman.com/2012/11/07/dublin-marathon-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a class="tt-flickr tt-flickr-Medium" title="2012-10-29 08.46.45" href="http://www.flickr.com/photos/ross_goodman/8141494849/"><img class="alignnone" src="http://farm9.staticflickr.com/8056/8141494849_2296f87803.jpg" alt="2012-10-29 08.46.45" width="282" height="500" /></a> Well &#8211; that&#8217;s my final marathon of the year done and what a way to end it. Fantastic location, fantastic people/support, fantastic weather (cold and dry) and a personal best by over 14 minutes!</p>
<p>You can review my marathon stats <a href="https://docs.google.com/spreadsheet/ccc?key=0Al-hdWwJhC5LdC1SbWkyczlpTWxPbGZkdHlSSVBPd0E" target="_blank">here</a>.<br />
The stats make interesting reading (if your into stats or are a runner).<br />
It shows how my pace per mile has changed since my first marathon and also how Chester compared with Dublin (4 weeks apart). It also finally drummed it into me that starting slow DOES enable you to hold a more consistent pace for longer.</p>
<p><span id="more-602"></span></p>
<p>Next year I think will just be Edinburgh and Loch Ness but hopefully I&#8217;ll be doing more 10ks and halfs, I think I only did a single 10k this year!</p>
<p><a class="tt-flickr tt-flickr-Medium" title="2012-10-29 15.10.41-2" href="http://www.flickr.com/photos/ross_goodman/8141496399/"><img class="alignnone" src="http://farm9.staticflickr.com/8323/8141496399_ed64a78dbc.jpg" alt="2012-10-29 15.10.41-2" width="282" height="500" /></a></p>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/dx4Q-N7LySo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/11/07/dublin-marathon-2012/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/11/07/dublin-marathon-2012/</feedburner:origLink></item>
		<item>
		<title>InBox Zero And Quantified Self</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/rFYm2KgXYSY/</link>
		<comments>http://www.rossgoodman.com/2012/10/26/inbox-zero-and-quantified-self/#comments</comments>
		<pubDate>Fri, 26 Oct 2012 17:37:52 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[GMail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Inbox Zero]]></category>
		<category><![CDATA[Quantified Self]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Spreadsheet]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=599</guid>
		<description><![CDATA[I&#8217;m a huge fan of keeping my inbox empty, but not very good and keeping it that way. I&#8217;m becoming more interested in the &#8220;Quantified Self&#8221; concept i.e. you can only fix things that you can measure. The obvious answer &#8230; <a href="http://www.rossgoodman.com/2012/10/26/inbox-zero-and-quantified-self/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a huge fan of keeping my inbox empty, but not very good and keeping it that way.</p>
<p>I&#8217;m becoming more interested in the &#8220;Quantified Self&#8221; concept i.e. you can only fix things that you can measure.</p>
<p>The obvious answer is to monitor what my GMail inbox looks like on a daily basis.<span id="more-599"></span></p>
<p>At first I thought this would be a horrendous script but today; whilst eating my lunch I got it to work &#8211; not only that, it&#8217;s blindingly easy. It&#8217;s using my favourite tool of the moment Google Spreadsheets and the script editor:</p>
<blockquote><p>function myFunction() {<br />
var doc = SpreadsheetApp.getActiveSheet()<br />
var firstEmptyRow = doc.getLastRow() + 1;<br />
var gmailUnread = GmailApp.getInboxUnreadCount();<br />
var gmailInbox = GmailApp.search(&#8216;in:inbox&#8217;).length<br />
var gmailStarred = GmailApp.search(&#8216;in:starred&#8217;).length<br />
var gmailSpam = GmailApp.search(&#8216;in:spam&#8217;).length<br />
doc.getRange(firstEmptyRow, 1, 1, 1).setValue(new Date().getYear() +&#8221;-&#8221; + (&#8220;0&#8243; + (new Date().getMonth() +1)).slice(-2)  + &#8220;-&#8221; + (&#8220;0&#8243; + new Date().getDate()).slice(-2));<br />
doc.getRange(firstEmptyRow, 2, 1, 1).setValue(gmailUnread);<br />
doc.getRange(firstEmptyRow, 3, 1, 1).setValue(gmailInbox);<br />
doc.getRange(firstEmptyRow, 4, 1, 1).setValue(gmailStarred);<br />
doc.getRange(firstEmptyRow, 5, 1, 1).setValue(gmailSpam);<br />
}</p></blockquote>
<p>I have scheduled this to run once a day at midnight and record a new row in the spreadsheet capturing the date, unread items, inbox count, starred count and spam items.</p>
<p>In an ideal world, each of these should be 0 (maybe not so at midnight) !</p>
<p>Next, to incorporate the stats on my personal dashboard; which is a blog post for another day!</p>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/rFYm2KgXYSY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/10/26/inbox-zero-and-quantified-self/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/10/26/inbox-zero-and-quantified-self/</feedburner:origLink></item>
		<item>
		<title>Chester Marathon – My Race</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/JVqvtwEb4T0/</link>
		<comments>http://www.rossgoodman.com/2012/10/22/chester-marathon-my-race/#comments</comments>
		<pubDate>Mon, 22 Oct 2012 12:24:28 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Fitness]]></category>
		<category><![CDATA[Fundraising]]></category>
		<category><![CDATA[MND]]></category>
		<category><![CDATA[Marathon]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Motor Neuron Disease]]></category>
		<category><![CDATA[Ross]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[Chester]]></category>
		<category><![CDATA[marathon]]></category>
		<category><![CDATA[mndscotland]]></category>
		<category><![CDATA[running]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=595</guid>
		<description><![CDATA[As you should know by know my plan for the year was to run four marathons, one in each of Wales, Scotland, England and Ireland for MND Scotland. The start of October saw the English leg with the Chester marathon. &#8230; <a href="http://www.rossgoodman.com/2012/10/22/chester-marathon-my-race/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a class="tt-flickr tt-flickr-Medium" title="2012-10-07 08.53.04-2" href="http://www.flickr.com/photos/ross_goodman/8099639144/"><img class="alignnone" src="http://farm9.staticflickr.com/8465/8099639144_694b689fed.jpg" alt="2012-10-07 08.53.04-2" width="500" height="282" /></a></p>
<p>As you should know by know my plan for the year was to run four marathons, one in each of Wales, Scotland, England and Ireland for <a href="http://www.justgiving.com/mndscotland" target="_blank">MND Scotland</a>.</p>
<p>The start of October saw the English leg with the <a href="http://www.activeleisureevents.co.uk/full-marathon.aspx" target="_blank">Chester marathon</a>.</p>
<p><span id="more-595"></span></p>
<p>The start and finish were hosted in the Chester racecourse, easy to find, loads of parking, lots of facilities and close enough to the town centre for Elaine and Connor to simply wander over there without having to worry about public transport or moving the car.</p>
<p>The race started with a lap of the racecourse and then proceeded to run around the Chester town centre, passing through the historic town walls. The day prior to the event the area was very scenic. The day of the race, the cobbles were a killer, however it&#8217;s an effective way to force you to slow down!</p>
<p>For the first 10 miles or so I tucked in with some ladies from <a href="http://www.ware-joggers.co.uk/" target="_blank">Ware Joggers</a> who kept me entertained with their chat &#8211; I&#8217;m <em>still</em> not used to talking when running! It was at this point I got my first niggle, my toes started to throb &#8211; not something I had experienced before so I stopped, whipped my shoes off to re-arrange my socks. The problem was; wet socks! At the start, in the racecourse it is of course grass &#8211; wet grass. My feet had got wet &#8211; I knew this but there was nothing I could do &#8211; I had not brought a spare pair of socks, lesson learned for the next time!</p>
<p>With a blister on a toe on each foot I slipped my shoes on and restarted. I had lost my pacers by this point and I slowed down a little. I got to the half way mark in 2:30, spot on where I wanted to be but the heat was starting to build. By this point we were in the very scenic countryside and the hedgerows were keeping off the gentle breeze. I stopped and ditched by T-Shirt, running the rest of the race in my <a href="http://www.mndscotland.org.uk/" target="_blank">MND Scotland</a> vest. At this point I inadvertently lost my padded fabric plasters which resulted in my other race day injury (see the coming photo for clarification).</p>
<p>My lack of real distance training was starting to be felt now and I resorted to a run/walk strategy for a bit. I had also crossed the border into Wales (does this count as an English AND a Welsh marathon?) I got a nice phone call from my better half around mile 19 and although welcome, the change from run walk to walk on the phone did my legs in! Everything cramped up. When I stretched, somewhere else cramped! I resorted to a couple of minutes of jogging backwards &#8211; what do you know it actually DOES work. I was glad though that by this point I was pretty much running own my own rather than having to explain what I was doing. The run/walk continued for another few miles until mile 23. At this point I hit my wall, I ended up walking for pretty much the whole mile before my brain kicked in &#8211; It&#8217;s &#8220;only&#8221; a <a href="http://www.parkrun.org.uk/strathclyde/Home.aspx" target="_blank">parkrun</a> to go &#8211; get a move on.</p>
<p>By this point we were coming back into Chester and there were road cones to separate the runners from the traffic. Run for 5 cones, walk for 2; then 6 and 2; then 7 and 2; it was not too long before I was running slowly again with no walking.</p>
<p>Just another very scenic but cobbled section along the river, under the bridge before heading back into the racecourse for a nice soft gallop to the finish line. I grabbed a quick chat with <a href="https://twitter.com/bryanb1965" target="_blank">Bryan Burnett</a> who was commentating before meeting up with Elaine and Connor for photos.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="2012-10-07 14.54.23-1" href="http://www.flickr.com/photos/ross_goodman/8099639622/"><img class="alignnone" src="http://farm9.staticflickr.com/8336/8099639622_3e67e666ab.jpg" alt="2012-10-07 14.54.23-1" width="282" height="500" /></a></p>
<p>The Good:<br />
The location, the venue, the people, the support on the route, the organisation, they print your name on your race number (why does no one else do this?), live twitter/facebook updates as you cross a timing mat.</p>
<p>The Bad:<br />
My lack of training, getting my feet wet at the start, the cold showers at the end. (Although getting a shower is unusual, the lack of hot water was probably due to my finishing time).</p>
<p>As I am doing Dublin marathon at the end of October I was &#8220;taking it easy&#8221; with this one but I was gutted when my time came in, 5:44; 27 seconds off my personal best ARGHHH!</p>
<p>If you would like to sponsor me for my final marathon then you can do so at <a href="http://www.justgiving.com/mndscotland" target="_blank">http://www.justgiving.com/mndscotland</a></p>
<p>If you are interested in the stats:</p>
<p>1) &#8211; 1.61km &#8211; 10:33(6:34/km) &#8211; 196cal<br />
2) &#8211; 1.61km &#8211; 10:27(6:30/km) &#8211; 201cal<br />
3) &#8211; 1.61km &#8211; 10:24(6:28/km) &#8211; 199cal<br />
4) &#8211; 1.61km &#8211; 10:35(6:35/km) &#8211; 200cal<br />
5) &#8211; 1.61km &#8211; 10:39(6:37/km) &#8211; 201cal<br />
6) &#8211; 1.61km &#8211; 10:30(6:31/km) &#8211; 200cal<br />
7) &#8211; 1.61km &#8211; 10:57(6:48/km) &#8211; 200cal<br />
 <img src='http://www.rossgoodman.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> &#8211; 1.61km &#8211; 10:57(6:48/km) &#8211; 205cal<br />
9) &#8211; 1.61km &#8211; 10:54(6:47/km) &#8211; 203cal<br />
10) &#8211; 1.61km &#8211; 12:18(7:39/km) &#8211; 196cal<br />
11) &#8211; 1.61km &#8211; 12:21(7:41/km) &#8211; 182cal<br />
12) &#8211; 1.61km &#8211; 12:10(7:34/km) &#8211; 189cal<br />
13) &#8211; 1.61km &#8211; 15:05(9:22/km) &#8211; 163cal<br />
14) &#8211; 1.61km &#8211; 13:51(8:36/km) &#8211; 176cal<br />
15) &#8211; 1.61km &#8211; 12:54(8:01/km) &#8211; 180cal<br />
16) &#8211; 1.61km &#8211; 15:10(9:26/km) &#8211; 154cal<br />
17) &#8211; 1.61km &#8211; 15:22(9:33/km) &#8211; 162cal<br />
18) &#8211; 1.61km &#8211; 15:58(9:55/km) &#8211; 148cal<br />
19) &#8211; 1.61km &#8211; 15:29(9:37/km) &#8211; 158cal<br />
20) &#8211; 1.61km &#8211; 14:01(8:43/km) &#8211; 165cal<br />
21) &#8211; 1.61km &#8211; 14:55(9:16/km) &#8211; 158cal<br />
22) &#8211; 1.61km &#8211; 14:28(8:59/km) &#8211; 160cal<br />
23) &#8211; 1.61km &#8211; 19:19(12:00/km) &#8211; 136cal<br />
24) &#8211; 1.61km &#8211; 14:12(8:50/km) &#8211; 159cal<br />
25) &#8211; 1.61km &#8211; 13:48(8:34/km) &#8211; 170cal<br />
26) &#8211; 1.61km &#8211; 13:50(8:36/km) &#8211; 162cal<br />
27) &#8211; 0.51km &#8211; 5:58(11:41/km) &#8211; 58cal</p>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/JVqvtwEb4T0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/10/22/chester-marathon-my-race/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/10/22/chester-marathon-my-race/</feedburner:origLink></item>
		<item>
		<title>Stay Focussed – Stay OUT of Outlook!</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/ss0AYt2nKcU/</link>
		<comments>http://www.rossgoodman.com/2012/10/18/stay-focussed-stay-out-of-outlook/#comments</comments>
		<pubDate>Thu, 18 Oct 2012 13:48:16 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[AutoHotkey]]></category>
		<category><![CDATA[Focus]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=590</guid>
		<description><![CDATA[One of my main productivity &#8220;sinks&#8221; is continually monitoring Outlook to see if any mails have arrived. I have a rule set up that notifies me if an &#8220;important&#8221; email lands but for this to run, outlook needs to be &#8230; <a href="http://www.rossgoodman.com/2012/10/18/stay-focussed-stay-out-of-outlook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of my main productivity &#8220;sinks&#8221; is continually monitoring Outlook to see if any mails have arrived.</p>
<p>I have a rule set up that notifies me if an &#8220;important&#8221; email lands but for this to run, outlook needs to be running (minimised of course). I can&#8217;t resist the temptation to just &#8220;have a peek&#8221; outside my first thing in the morning, last thing at night email window.</p>
<p>To get around this I want to be &#8220;discouraged&#8221; from opening Outlook.</p>
<p>To implement this I have used <a title="WinTrigger" href="http://www.autohotkey.com/community/viewtopic.php?f=2&amp;t=63673" target="_blank">Antonio Franca&#8217;s fantastic WinTrigger AutoHotkey script</a>.</p>
<p><span id="more-590"></span>My amendment is to make it watch for the main Outlook window and when this becomes active, to get it to ask me to confirm if I really want to be using Outlook. If I hit No or leave it for 5 seconds then Outlook gets minimised again.</p>
<p>Here is my implementation of Antonio&#8217;s code:</p>
<blockquote><p>;========================================================================<br />
;<br />
; Template:     WinTrigger (former OnOpen/OnClose)<br />
; Description:  Act upon (de)activation/(un)existance of programs/windows<br />
; Online Ref.:  http://www.autohotkey.com/forum/viewtopic.php?t=63673<br />
;<br />
; Last Update:  15/Mar/2010 17:30<br />
;<br />
; Created by:   MasterFocus<br />
;               http://www.autohotkey.net/~MasterFocus/AHK/<br />
;<br />
; Thanks to:    Lexikos, for improving it significantly<br />
;               http://www.autohotkey.com/forum/topic43826.html#267338<br />
;<br />
;========================================================================<br />
;<br />
; This template contains two examples by default. You may remove them.<br />
;<br />
; * HOW TO ADD A PROGRAM to be checked upon (de)activation/(un)existance:<br />
;<br />
; 1. Add a variable named ProgWinTitle# (Configuration Section)<br />
; containing the desired title/ahk_class/ahk_id/ahk_group<br />
;<br />
; 2. Add a variable named WinTrigger# (Configuration Section)<br />
; containing the desired trigger (&#8220;Exist&#8221; or &#8220;Active&#8221;)<br />
;<br />
; 3. Add labels named LabelTriggerOn# and/or LabelTriggerOff#<br />
; (Custom Labels Section) containing the desired actions<br />
;<br />
; 4. You may also change CheckPeriod value if desired<br />
;<br />
;========================================================================</p>
<p>#Persistent</p>
<p>; &#8212;&#8212; &#8212;&#8212; CONFIGURATION SECTION &#8212;&#8212; &#8212;&#8212;<br />
SetTitleMatchMode 2<br />
; Program Titles<br />
;ProgWinTitle1 = ahk_class rctrl_renwnd32<br />
ProgWinTitle1 = Microsoft Outlook<br />
WinTrigger1 = Active</p>
<p>; SetTimer Period<br />
CheckPeriod = 200</p>
<p>; &#8212;&#8212; END OF CONFIGURATION SECTION &#8212;&#8212; &#8212;&#8212;</p>
<p>SetTimer, LabelCheckTrigger, %CheckPeriod%<br />
Return</p>
<p>; &#8212;&#8212; &#8212;&#8212; &#8212;&#8212;</p>
<p>LabelCheckTrigger:<br />
While ( ProgWinTitle%A_Index% != &#8220;&#8221; &amp;&amp; WinTrigger := WinTrigger%A_Index% )<br />
if ( !ProgRunning%A_Index% != !Win%WinTrigger%( ProgWinTitle := ProgWinTitle%A_Index% ) )<br />
GoSubSafe( &#8220;LabelTriggerO&#8221; ( (ProgRunning%A_Index% := !ProgRunning%A_Index%) ? &#8220;n&#8221; : &#8220;ff&#8221; ) A_Index )<br />
Return</p>
<p>; &#8212;&#8212; &#8212;&#8212; &#8212;&#8212;</p>
<p>GoSubSafe(mySub)<br />
{<br />
if IsLabel(mySub)<br />
GoSub %mySub%<br />
}</p>
<p>; &#8212;&#8212; &#8212;&#8212; CUSTOM LABEL SECTION &#8212;&#8212; &#8212;&#8212;</p>
<p>LabelTriggerOn1:<br />
;    winget    isMax, MinMax, %ProgWinTitle1%<br />
;    msgbox    %isMax%<br />
msgbox 4, Stay Focussed, Are you sure you want to read your mails?, 5<br />
ifmsgbox    Yes<br />
winmaximize    %ProgWinTitle1%<br />
else<br />
winminimize    %ProgWinTitle1%<br />
return<br />
LabelTriggerOff1:<br />
;  MsgBox % &#8220;A_ThisLabel:`t&#8221; A_ThisLabel &#8220;`nProgWinTitle:`t&#8221; ProgWinTitle &#8220;`nWinTrigger:`t&#8221; WinTrigger<br />
Return</p>
<p>; &#8212;&#8212; END OF CUSTOM LABEL SECTION &#8212;&#8212; &#8212;&#8212;</p></blockquote>
<p>If you are in e-mail processing mode simply pause or stop the script!</p>
<p>You can of course follow the instructions in the script to watch for multiple windows and take action on each of them.</p>
<p>I hope you find it as useful as I do.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 61px; width: 1px; height: 1px; overflow: hidden;"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-GB</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:EnableOpenTypeKerning /> <w:DontFlipMirrorIndents /> <w:OverrideTableStyleHps /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;========================================================================</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; Template:     WinTrigger (former OnOpen/OnClose)</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; Description:  Act upon (de)activation/(un)existance of programs/windows</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; Online Ref.:  <a href="http://www.autohotkey.com/forum/viewtopic.php?t=63673">http://www.autohotkey.com/forum/viewtopic.php?t=63673</a></span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; Last Update:  15/Mar/2010 17:30</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; Created by:   MasterFocus</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;               <a href="http://www.autohotkey.net/~MasterFocus/AHK/">http://www.autohotkey.net/~MasterFocus/AHK/</a></span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; Thanks to:    Lexikos, for improving it significantly</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;               <a href="http://www.autohotkey.com/forum/topic43826.html#267338">http://www.autohotkey.com/forum/topic43826.html#267338</a></span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;========================================================================</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; This template contains two examples by default. You may remove them.</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; * HOW TO ADD A PROGRAM to be checked upon (de)activation/(un)existance:</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; 1. Add a variable named ProgWinTitle# (Configuration Section)</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; containing the desired title/ahk_class/ahk_id/ahk_group</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; 2. Add a variable named WinTrigger# (Configuration Section)</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; containing the desired trigger (&#8220;Exist&#8221; or &#8220;Active&#8221;)</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; 3. Add labels named LabelTriggerOn# and/or LabelTriggerOff#</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; (Custom Labels Section) containing the desired actions</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; 4. You may also change CheckPeriod value if desired</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;========================================================================</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">#Persistent</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; &#8212;&#8212; &#8212;&#8212; CONFIGURATION SECTION &#8212;&#8212; &#8212;&#8212;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">SetTitleMatchMode 2</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; Program Titles</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;ProgWinTitle1 = ahk_class rctrl_renwnd32</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">ProgWinTitle1 = Microsoft Outlook</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">WinTrigger1 = Active</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; SetTimer Period</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">CheckPeriod = 200</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; &#8212;&#8212; END OF CONFIGURATION SECTION &#8212;&#8212; &#8212;&#8212;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">SetTimer, LabelCheckTrigger, %CheckPeriod%</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">Return</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; &#8212;&#8212; &#8212;&#8212; &#8212;&#8212;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">LabelCheckTrigger:</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> While ( ProgWinTitle%A_Index% != &#8220;&#8221; &amp;&amp; WinTrigger := WinTrigger%A_Index% )</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> if ( !ProgRunning%A_Index% != !Win%WinTrigger%( ProgWinTitle := ProgWinTitle%A_Index% ) )</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> GoSubSafe( &#8220;LabelTriggerO&#8221; ( (ProgRunning%A_Index% := !ProgRunning%A_Index%) ? &#8220;n&#8221; : &#8220;ff&#8221; ) A_Index )</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">Return</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; &#8212;&#8212; &#8212;&#8212; &#8212;&#8212;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">GoSubSafe(mySub)</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">{</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> if IsLabel(mySub)</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> GoSub %mySub%</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">}</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; &#8212;&#8212; &#8212;&#8212; CUSTOM LABEL SECTION &#8212;&#8212; &#8212;&#8212;</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">LabelTriggerOn1:</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;           winget   isMax, MinMax, %ProgWinTitle1%</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;           msgbox            %isMax%</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> msgbox 4, Stay Focussed, Are you sure you want to read your mails?, 5</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> ifmsgbox          Yes</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> winmaximize      %ProgWinTitle1%</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> else</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> winminimize       %ProgWinTitle1%</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> return</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">LabelTriggerOff1:</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">;  MsgBox % &#8220;A_ThisLabel:`t&#8221; A_ThisLabel &#8220;`nProgWinTitle:`t&#8221; ProgWinTitle &#8220;`nWinTrigger:`t&#8221; WinTrigger</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">Return</span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size: 10.0pt; font-family: &amp;amp;amp; color: #1f497d;">; &#8212;&#8212; END OF CUSTOM LABEL SECTION &#8212;&#8212; &#8212;&#8212;</span></p>
<p><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman","serif";} --> <!--[endif] --></p>
</div>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/ss0AYt2nKcU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/10/18/stay-focussed-stay-out-of-outlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/10/18/stay-focussed-stay-out-of-outlook/</feedburner:origLink></item>
		<item>
		<title>Multiple Excel Text Boxes With Common Content</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/o0xJAwvsGyY/</link>
		<comments>http://www.rossgoodman.com/2012/06/29/multiple-excel-text-boxes-with-common-content/#comments</comments>
		<pubDate>Fri, 29 Jun 2012 12:52:17 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Formula]]></category>
		<category><![CDATA[TextBox]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=587</guid>
		<description><![CDATA[I have just had to place a textbox object onto 17 worksheets within the same excel workbook, each text box containing the same commentary text. Type it once and then copy the text box and paste, job done. Of course &#8230; <a href="http://www.rossgoodman.com/2012/06/29/multiple-excel-text-boxes-with-common-content/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have just had to place a textbox object onto 17 worksheets within the same excel workbook, each text box containing the same commentary text. Type it once and then copy the text box and paste, job done.<br />
Of course as soon as I have finished it I spot my typo and realise I will have to do it all again.<br />
Only NOW do I slow down and think (OK I Google it) of the proper way to do it.<br />
When you create a text box, rather than typing the text into the text box as I have been doing for years, with the text box selected you can type into the formula bar. In my case I put in the formula &#8220;=Metadata!B2&#8243;. This means that the textbox will display whatever I type into cell B2 on my &#8220;Metadata&#8221; worksheet.<br />
Now I edit the textboxes I have created to reference the formula and in the future if the text needs to change, I change it in Metadata!B2 and the new text appears in all of the textboxes that refer to it!<br />
NOTE: The text displayed in a formula driven text box is limited to 256 characters.</p>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/o0xJAwvsGyY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/06/29/multiple-excel-text-boxes-with-common-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/06/29/multiple-excel-text-boxes-with-common-content/</feedburner:origLink></item>
		<item>
		<title>Edinburgh Marathon 2012 – Did Not Finish</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/zBj5NYMXMvM/</link>
		<comments>http://www.rossgoodman.com/2012/05/28/edinburgh-marathon-2012-did-not-finish/#comments</comments>
		<pubDate>Mon, 28 May 2012 11:57:18 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Fitness]]></category>
		<category><![CDATA[Fundraising]]></category>
		<category><![CDATA[Marathon]]></category>
		<category><![CDATA[Ross]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[marathon]]></category>
		<category><![CDATA[running]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=582</guid>
		<description><![CDATA[My worst race ever. Prior to the 2012 Edinburgh Marathon I have only ever not finished one race before &#8211; a Strathclyde parkrun when I pulled my hamstring. Bearing in mind I did the Great Welsh Marathon last month &#8211; &#8230; <a href="http://www.rossgoodman.com/2012/05/28/edinburgh-marathon-2012-did-not-finish/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>My worst race ever.</strong><br />
Prior to the 2012 Edinburgh Marathon I have only ever not finished one race before &#8211; a Strathclyde parkrun when I pulled my hamstring.<br />
Bearing in mind I did the Great Welsh Marathon last month &#8211; I was just doing some &#8220;easy&#8221; runs as I &#8220;know&#8221; I can &#8220;do&#8221; a marathon so I was just treating this period as an extended taper/recovery period.<br />
On Sunday the day was very sunny and hot.<br />
I had multiple applications of factor 50 sunscreen &#8211; been upping my hydration in the days before, the only thing I did differently was grabbing a tuna sandwich rather than my usual porridge.</p>
<h2>The Plan</h2>
<p>My plan was to run 12:00 miles in the hope of beating my PB of 05:42.<br />
I knew I&#8217;d have to revert to a run walk strategy from about mile 19ish but I should have enough in the tank for about a 05:30 finish.</p>
<h2>What Happened</h2>
<p>I knew I would start way faster than my planned pace so for the first three miles it was a case of forcing myself to slow from 10:00 to 11:00 until I settled at a comfortable 11:30 pace.<br />
I started feeling a bit &#8220;wobbly&#8221; at about 9 1/2 miles so I had a walking break, a gel and some water.<br />
This was fine until mile 10 when I &#8220;lost&#8221; my breakfast &#8211; not exactly lost &#8211; I knew EXACTLY where it was !<br />
More water and gel and I soldiered on with a walk/jog until mile 12 (15:00+ mins per mile) when I knew if at this point I was having to play mental games to force a jog &#8211; there was no way I could continue.<br />
After 20 minutes sitting by the roadside &#8211; thanks to everyone who took the time to check I was OK &#8211; I started the long slow walk back to the start.</p>
<h2>The Future</h2>
<p>I have two more marathons in the plan &#8211; Chester 7th October and Dublin 29th October so hopefully the heat will not be as big a debilitating factor.<br />
I still &#8220;owe&#8221; a Scottish marathon from my 4 marathon plan &#8211; I have an inkling as to how to address this &#8211; stay tuned for more info!</p>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/zBj5NYMXMvM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/05/28/edinburgh-marathon-2012-did-not-finish/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/05/28/edinburgh-marathon-2012-did-not-finish/</feedburner:origLink></item>
		<item>
		<title>Great Welsh Marathon 2012</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/Azd-H_9d5e8/</link>
		<comments>http://www.rossgoodman.com/2012/04/20/great-welsh-marathon-2012/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 23:26:53 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Fitness]]></category>
		<category><![CDATA[Fundraising]]></category>
		<category><![CDATA[MND]]></category>
		<category><![CDATA[Marathon]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Motor Neuron Disease]]></category>
		<category><![CDATA[Ross]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[marathon]]></category>
		<category><![CDATA[mndscotland]]></category>
		<category><![CDATA[running]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=579</guid>
		<description><![CDATA[This year my fund-raising for MND Scotland involves running four marathons in Wales (Llanelli), Scotland (Edinburgh), England (Chester) and Ireland (Dublin). Last weekend saw the first of these. My training had not been going to plan -  illness and work &#8230; <a href="http://www.rossgoodman.com/2012/04/20/great-welsh-marathon-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This year my <a href="http://www.justgiving.com/mndscotland" target="_blank">fund-raising for MND Scotland</a> involves running four marathons in Wales (Llanelli), Scotland (Edinburgh), England (Chester) and Ireland (Dublin).</p>
<p>Last weekend saw the first of these.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG-20120415-00043.jpg" href="http://www.flickr.com/photos/ross_goodman/7094626215/"><img class="alignnone" src="http://farm8.staticflickr.com/7109/7094626215_422626c28a.jpg" alt="IMG-20120415-00043.jpg" width="500" height="375" /></a></p>
<p><span id="more-579"></span>My training had not been going to plan -  illness and work getting in the way but this was the first marathon, and there was no hint of not doing it! My plan &#8211; finish, injury free so that I can still complete Edinburgh next month.</p>
<p>It was kind of weird running so far from home for the first time (8 hour drive) and having to make sure that I had all the kit I needed for all eventualities. I think I&#8217;m going to prepare a checklist for the next time. We spent too much time on a cold and rainy Saturday trailing round the shops looking for porridge!</p>
<p>Come Saturday morning it was a nice bright clear morning and as we had booked a house just 5 minutes drive from the start I even got to stay in bed until sensible oclock! The weather was the first problem, it was still cold, with a fairly stiff breeze (and a coastal course) but the sky was clear! I ended up going with the shorts and the long sleeved top.</p>
<p>The <a href="http://www.humanbeingactive.org/great-welsh-marathon-course" target="_blank">marathon course</a> is &#8220;interesting&#8221;. It&#8217;s almost perfectly flat apart from some short sharp inclines as you navigate the bridges over the railway line. It follows the Millennium coastal path so is paved for the majority of the way apart from a short section on gravel. It consists of a 7 1/2 mile out and back to the west then a 5 and a bit out and back to the east and you do this twice. As it&#8217;s both an out and back <em>and</em> a 2 lapper you have lots of opportunity to see your fellow runners which is good. However, as you have to run &#8220;past&#8221; the finish line three times it is VERY mentally tough.</p>
<p>It was a very small field &#8211; I heard the announcer say there were 500 entrants but I doubt very much if they all turned up. I doubt that 200 runners didn&#8217;t finish! I finished 300 (my highest placing) out of 303 finishers. I was only just lapped by the winner Mark Roberts who smashed the course record in a time of 2:31 just as I was getting to half distance!</p>
<p>I had been running fairly comfortably up until this point but my training runs had only been to the half marathon and 2 /12 hour mark. At around mile 17 was where i hit my &#8220;wall&#8221;, this is the only boring bit of the course as you head around an industrial estate. I took a fairly long walking break at this point and phoned Elaine who confirmed  that she and Connor were at the finish line to cheer me &#8220;through&#8221;. I also sent a quick update to Twitter and Facebook &#8211; it&#8217;s amazing the mental boost you can get just from hearing your phone beep in your bum bag!</p>
<p>From this point onwards it was most definitely a run walk strategy. I was also starting to get twinges of cramp in my left calf as as soon as this started I stopped for a really good stretch. As I passed the finish line again at 21 miles &#8211; if Elaine and Connor had not been there I&#8217;m sure I would have given up &#8211; but then the brain kicked in &#8211; it&#8217;s less than 2 parkruns to go! and each of those miles were the longest I have EVER run! There is also one of those cheeky railway bridges just before mile 26 just to make sure my calf cramped again but there was no stopping me at that point!</p>
<p><img class="alignnone" title="Finish" src="http://www.sportysnaps.com/content/running/llanelli_marathon_2012/finish_03/mje11494_std.jpg" alt="" width="267" height="400" /></p>
<p><a class="tt-flickr tt-flickr-Medium" title="DSCN1340" href="http://www.flickr.com/photos/ross_goodman/7094540551/"><img class="alignnone" src="http://farm8.staticflickr.com/7197/7094540551_bfdc09e6b2.jpg" alt="DSCN1340" width="375" height="500" /></a></p>
<p>I eventually finished in 5hours 53 in position 300 out of 303 finishers. This also included a 5 minute stop to get 2 plasters from the paramedics on the course.</p>
<p>I&#8217;d like to say a huge thank you to all the organisers and fellow runners.</p>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/Azd-H_9d5e8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/04/20/great-welsh-marathon-2012/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/04/20/great-welsh-marathon-2012/</feedburner:origLink></item>
		<item>
		<title>The ‘Tache Is Dead</title>
		<link>http://feedproxy.google.com/~r/RossGoodman/~3/7x1AFj4SB9M/</link>
		<comments>http://www.rossgoodman.com/2012/04/19/the-tache-is-dead/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 21:51:56 +0000</pubDate>
		<dc:creator>Ross (Admin)</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Fundraising]]></category>
		<category><![CDATA[MND]]></category>
		<category><![CDATA[Motor Neuron Disease]]></category>
		<category><![CDATA[Ross]]></category>
		<category><![CDATA[LongLiveTheTache]]></category>
		<category><![CDATA[mndscotland]]></category>

		<guid isPermaLink="false">http://www.rossgoodman.com/?p=575</guid>
		<description><![CDATA[As you will have seen from my previous posts, I was growing a mustache for MND Scotland All it would have taken is £10 / day for me to keep the &#8216;tache. It was fun whilst it lasted, I tried &#8230; <a href="http://www.rossgoodman.com/2012/04/19/the-tache-is-dead/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As you will have seen from my previous posts, I was growing a mustache for <a href="https://www.justgiving.com/LongLiveTheTache" target="_blank">MND Scotland</a></p>
<p><a class="tt-flickr tt-flickr-Medium" title="DSCN1333" href="http://www.flickr.com/photos/ross_goodman/7094409053/"><img class="alignnone" src="http://farm8.staticflickr.com/7123/7094409053_1f60c0a8e3.jpg" alt="DSCN1333" width="500" height="375" /></a></p>
<p>All it would have taken is £10 / day for me to keep the &#8216;tache.</p>
<p><span id="more-575"></span>It was fun whilst it lasted, I tried various styles</p>
<p><a class="tt-flickr tt-flickr-Small" title="DSCN1327" href="http://www.flickr.com/photos/ross_goodman/6948338168/"><img class="alignnone" src="http://farm8.staticflickr.com/7213/6948338168_b4cd827b03_m.jpg" alt="DSCN1327" width="240" height="180" /></a> <a class="tt-flickr tt-flickr-Small" title="DSCN1329" href="http://www.flickr.com/photos/ross_goodman/7094408107/"><img class="alignnone" src="http://farm8.staticflickr.com/7246/7094408107_ffb076bfe1_m.jpg" alt="DSCN1329" width="240" height="180" /></a> <a class="tt-flickr tt-flickr-Small" title="DSCN1331" href="http://www.flickr.com/photos/ross_goodman/7094408675/"><img class="alignnone" src="http://farm8.staticflickr.com/7040/7094408675_e287a203ae_m.jpg" alt="DSCN1331" width="240" height="180" /></a></p>
<p>but I could never get the Salvador Dali no matter how much wax I used!</p>
<p>I&#8217;m sad to say that the cash has dried up so unfortunately the &#8216;tache has to go!</p>
<p><a class="tt-flickr tt-flickr-Medium" title="DSCN1339" href="http://www.flickr.com/photos/ross_goodman/7094409831/"><img class="alignnone" src="http://farm8.staticflickr.com/7231/7094409831_95dd5783e3.jpg" alt="DSCN1339" width="500" height="375" /></a></p>
<p>Watch this space, I have my next fund-raiser planned (it&#8217;s another running one).</p>
<img src="http://feeds.feedburner.com/~r/RossGoodman/~4/7x1AFj4SB9M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rossgoodman.com/2012/04/19/the-tache-is-dead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rossgoodman.com/2012/04/19/the-tache-is-dead/</feedburner:origLink></item>
	</channel>
</rss>
