<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Paceko&#039;s</title>
	<atom:link href="http://pacelachance.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pacelachance.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 21 Oct 2011 01:18:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pacelachance.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/b328d02074e862bf8ad9114b5370460b?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Paceko&#039;s</title>
		<link>http://pacelachance.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pacelachance.wordpress.com/osd.xml" title="Paceko&#039;s" />
	<atom:link rel='hub' href='http://pacelachance.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Tracking Outbound Links in Google Analytics using Events</title>
		<link>http://pacelachance.wordpress.com/2011/10/21/tracking-outbound-links-in-google-analytics-using-events/</link>
		<comments>http://pacelachance.wordpress.com/2011/10/21/tracking-outbound-links-in-google-analytics-using-events/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 01:18:14 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=187</guid>
		<description><![CDATA[How to implement event tracking on outbound links in Google Analytics? Easier than you might think! 1)      Make sure you have the most recent Google tracking code (called Asynchronous Code) in the head of every pages having links you want to track. Should look like this: script type=&#8221;text/javascript&#8221;&#62; var _gaq = _gaq &#124;&#124; []; _gaq.push(['_setAccount', [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=187&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How to implement event tracking on outbound links in Google Analytics? Easier than you might think!</p>
<p>1)      Make sure you have the most recent Google tracking code (called Asynchronous Code) in the head of every pages having links you want to track. Should look like this:</p>
<h6>script type=&#8221;text/javascript&#8221;&gt;<br />
var _gaq = _gaq || [];<br />
_gaq.push(['_setAccount', 'UA-XXXXXX-XX']);<br />
_gaq.push(['_trackPageview']);<br />
(function () {<br />
var ga = document.createElement(&#8216;script&#8217;); ga.type = &#8216;text/javascript&#8217;; ga.async = true;<br />
ga.src = (&#8216;https:&#8217; == document.location.protocol ? &#8216;https://ssl&#8217; : &#8216;http://www&#8217;) + &#8216;.google-analytics.com/ga.js&#8217;;<br />
var s = document.getElementsByTagName(&#8216;script&#8217;)[0]; s.parentNode.insertBefore(ga, s);<br />
})();<br />
&lt;/script&gt;</h6>
<p>2) Right after the above code, insert the following javascript function (the name of the function could be changed to your liking)</p>
<h6>script type=&#8221;text/javascript&#8221;&gt;<br />
function recordOutboundLink(link, category, action) {<br />
try {<br />
_gaq.push(['_trackEvent', category, action])<br />
setTimeout(null, 100)<br />
} catch (err) { }<br />
}<br />
&lt;/script&gt;</h6>
<p>The function has 3 parameters:</p>
<p>-          <strong>link</strong>: the link itself</p>
<p>-          <strong>category</strong>: the category in which the event will be classified in Analytics</p>
<p>-          <strong>action</strong>: the action associated to the link</p>
<p>I used “<strong>push</strong>” method and it worked right away, but “<strong>getTrackerByName()</strong>” may also do the trick but haven&#8217;t investigated it yet&#8230;</p>
<p>The second line delays the click for a fraction of a second to allow the page to fully load the tracking code. I’ve used “<strong>null</strong>” as first parameter, otherwise the page wasn’t opening in a new window.</p>
<p>3) Then on the link you want to track, add the onClick event calling the above function:</p>
<h6>&lt;a href=&#8221;http://www.yoursite.com&#8221; onclick=&#8221;<strong><span style="text-decoration:underline;">recordOutboundLink(this, &#8216;Outbound Links&#8217;, &#8216;www.yoursite.com&#8217;);</span></strong> <strong>window.open(this.href); return false;</strong>&#8220;&gt;www.yoursite.com&lt;/a&gt;</h6>
<p>When the above link gets clicked, <strong>recordOutboundLink</strong> is called with the link (this), the category (This is an outbound link) and the action (I used the URL to which the link points to).</p>
<p>Make sure “<strong>return false;</strong>” is the last statement. If you want the page to open in a new window, add “<strong>window.open(this.href);</strong>” after the function call, just before &#8220;return false;&#8221;</p>
<p>And that’s it! Event tracking in Analytics should start to get some data!</p>
<p>Using this method makes it easy to track all sort of different links across your website. Simply call recordOutboundLink javascript function on the link you wish to track and pass a different category and action to it. Whether it is a video, a mailto or an image, you can now have a better idea of what your users are up to when visiting your website!</p>
<p>References:</p>
<p><a href="http://www.google.com/support/analytics/bin/answer.py?hl=en-GB&amp;answer=55527">http://www.google.com/support/analytics/bin/answer.py?hl=en-GB&amp;answer=55527</a></p>
<p><a href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html">http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html</a></p>
<p><a href="http://www.stepforth.com/blog/2010/outbound-link-tracking-event-tracking-google-analytics/">http://www.stepforth.com/blog/2010/outbound-link-tracking-event-tracking-google-analytics/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=187&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2011/10/21/tracking-outbound-links-in-google-analytics-using-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>
	</item>
		<item>
		<title>Christchurch &#8211; Queenstown bike ride &#8211; preparation</title>
		<link>http://pacelachance.wordpress.com/2011/04/17/christchurch-queenstown-bike-ride-preparation/</link>
		<comments>http://pacelachance.wordpress.com/2011/04/17/christchurch-queenstown-bike-ride-preparation/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 08:05:30 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[New Zealand Bike Trip]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=180</guid>
		<description><![CDATA[This time, the weather will be different. Colder, weter, more winds and more rain. This is what I am expecting at least. On the morale boosting side, breathtaking landscape for amazing photographs, low uphill gradiants (from what I&#8217;ve heard) and great food. New Zealand is supposed to be a great country to cycle around, probably [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=180&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This time, the weather will be different. Colder, weter, more winds and more rain. This is what I am expecting at least. On the morale boosting side, breathtaking landscape for amazing photographs, low uphill gradiants (from what I&#8217;ve heard) and great food. New Zealand is supposed to be a great country to cycle around, probably the best way of transport to discover and fully enjoy the experience. Let&#8217;s experience it now.</p>
<p>The plan is simple: push my way from Christchurch to Queewstown and have fun in the process! Christchurch &#8211; Geraldine &#8211; Lake Tekapo &#8211; Omarama &#8211; Wanaka &#8211; Queenstown is the itenerary. Because I am going for such a short period, I&#8217;ve decided to rent a bike rather than going through the pain of boxing, dealing with the box at the airport, unboxing, assembling and doing the same process all over again before coming back. I gearer up on clothing though, bringing all I need to stay warm and dry.</p>
<p>Something I missed in my previous bike trip was video. So this time, I won&#8217;t be empty handed on that side. I just got a GoPro Hero which I will mount on the front of the bike or my helmet. Can&#8217;t wait to see the results!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=180&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2011/04/17/christchurch-queenstown-bike-ride-preparation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>
	</item>
		<item>
		<title>Ride 2 &#8211; Chuncheon to somewhere close to Jangpyeong</title>
		<link>http://pacelachance.wordpress.com/2010/09/16/ride-2-chuncheon-to-somewhere-close-to-jangpyeong/</link>
		<comments>http://pacelachance.wordpress.com/2010/09/16/ride-2-chuncheon-to-somewhere-close-to-jangpyeong/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 12:39:55 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[South Korea Bike Trip]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=175</guid>
		<description><![CDATA[Pretty hard riding for a second ride&#8230; It started with a few climbs and downhill then followed a river downstream which was great riding. Amazing scenery again with the mountains surrounding me in every directions. But where there are mountains, there are climbs. Often, there&#8217;s a tunnel at the top of the climb so the sight of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=175&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Pretty hard riding for a second ride&#8230; It started with a few climbs and downhill then followed a river downstream which was great riding. Amazing scenery again with the mountains surrounding me in every directions. But where there are mountains, there are climbs. Often, there&#8217;s a tunnel at the top of the climb so the sight of the tunnel road sign is a warm welcome and helps mentally. The way down is unfortunately too short! I came across 2 Korean guys also cycling in the area which seems to be quite popular.</p>
<p>Passed the junction of road 44, the river is still there but now goes upstream which basically means an incline terrain. Even an inclination of 0.5% is enough to slow the pace down from 27-30 km/h to 17-20 km/h. And mentally it is very hard because I really wanted to make it to Gangnueng and I wasn&#8217;t doing the necessary mileage to get there. To stay positive, many times I told myself there was no wind and the scenery was fantastic, looking down the road looking at the litter (I spotted a green mantis!) and trying to learn Korea&#8230; I should know the numbers by now! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>After about 4h30 of riding and pushing pretty hard by moments, my bike computer gives up on me: no more battery. That really pissed me off as I needed to know the speed I was doing to work out where I&#8217;ll end up sleeping tonight. By then, it showed 72 kms with a total ascent of 1310 m. That was about 2 hours before I got the hardest climb of the day: a 1089 meters climb of which I already probably did 300 meters. The incline was also pretty sleep with a constant degree of 10%. I could smash that at the start of the day, but after about 6 hours of riding, that wasn&#8217;t very much welcomed. Right at the start, my heart rate monitor gives up on me for some reason&#8230; Not great for motivation purposes! I stopped 3 times to catch my breath and give a short rest to my burning and tired legs. The second time I stopped, I could feel my heart ready to explode off my chest. Just before the last turn, a young guy on his motor bike passed me and stopped at the top. He had a very basic english but enough to have a conversation. This surprised me a bit as Korea are very shy and rarely reply to my annyeong asseyo! went I come across them. When I told him I started my day at Chuncheon, he didn&#8217;t believe me: he mentioned it was 150 kms away! He was also coming from Chuncheon and he was heading to Gangneung&#8230; I might come across him tomorrow as I am heading there!</p>
<p>Stats of the day are approximate:</p>
<p>160kms, 5000 cals, ascent 2300 meters, avg speed 14km/h</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=175&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2010/09/16/ride-2-chuncheon-to-somewhere-close-to-jangpyeong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>
	</item>
		<item>
		<title>First ride: Seoul to Chuncheon</title>
		<link>http://pacelachance.wordpress.com/2010/09/15/first-ride-seoul-to-chuncheon/</link>
		<comments>http://pacelachance.wordpress.com/2010/09/15/first-ride-seoul-to-chuncheon/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 13:12:24 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[South Korea Bike Trip]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=170</guid>
		<description><![CDATA[Let me start by saying that shouldn&#8217;t be my first post. I tried twice to post an interesting article about Seoul but WordPress fuck it up both times for some reason&#8230;. So from now on, I&#8217;ll kept articles to a minimum as I am not here to write articles but discover Korea. Anyway, back to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=170&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Let me start by saying that shouldn&#8217;t be my first post. I tried twice to post an interesting article about Seoul but WordPress fuck it up both times for some reason&#8230;. So from now on, I&#8217;ll kept articles to a minimum as I am not here to write articles but discover Korea.</p>
<p>Anyway, back to business. I arrived in Chuncheon last night at around 19h after a first moderate day of riding. That included beautiful stretches along a river surrounded by mountain forming an amazing scenery, some climbs and downhill streches and a police arrest because of my crazyness&#8230; From Seoul, I followed the bike track along the Han river (which is abolutely beautiful) until I could jump on the highway leading to Chuncheon. It turned out to be a good idea as it was fast until I got pulled over by the police! They excorted me to the next exit where I could jump on road 391 to catch road 46, a secondary road leading directly to Chuncheon. They didn&#8217;t gave ne a fine but stringly insisted I never get on highway anymore&#8230; Tha lady at the exit gate was yelling &#8220;you will die!! you will die!!!&#8221; which I found amuzing. After about an hour of riding on the 391, I stopped at a tiny little shop where I could eat a piece of pastry, drink a nice cold gatorate, fill in my water bottle and ask a bunch of ladies what direction is Chuncheon. That&#8217;s when I realized the map I had wasn&#8217;t detailed enough. I have very good orientation skills and I rarely get lost, but I can&#8217;t get around Korea with that map especially because I need to use secondary and country roads. That was confirmed when the road signs didn&#8217;t match my map: road 46 is shown as a primary road or highway on my map which means no bike riding or get arrested again while the road sign was showing it was the same type of road I was actually on. I decided to keep going on the road I was instead of making a right and jump on the 46&#8230; After about 20km of beautiful scenery and easy cruising riding, I stopped at a petrol station and &#8220;ask&#8221; around if I could take route 46 instead of my the originally planned road 75. By the reaction of the couple working at the station, it was abvious that using 75 was out of question&#8230; So I turned around to use road 46 and from there, all went smoothly. But first thing I did in Chuncheon is to get a detailed map. Of course, no english here; only korea maps but as long as the road number are shown, no worries.</p>
<p>Stats for the first ride:</p>
<p>120km, 7h00 of riding, 3400 calories spent, 2 road kills (1 small snake and a moth or a cricket, not sure), pulled over by 3 cops (2 cars), sunburn on my forearms.</p>
<p>Tomorrow is Chuncheon to Gangneung which I expect to be a long and hard ride, but let&#8217;s see how it goes&#8230;&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=170&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2010/09/15/first-ride-seoul-to-chuncheon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>
	</item>
		<item>
		<title>Initial gear</title>
		<link>http://pacelachance.wordpress.com/2010/09/10/initial-gear/</link>
		<comments>http://pacelachance.wordpress.com/2010/09/10/initial-gear/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 07:21:54 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[South Korea Bike Trip]]></category>
		<category><![CDATA[asia]]></category>
		<category><![CDATA[bicycle]]></category>
		<category><![CDATA[Bike]]></category>
		<category><![CDATA[Cycling]]></category>
		<category><![CDATA[gear]]></category>
		<category><![CDATA[South Korea]]></category>
		<category><![CDATA[trip]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=141</guid>
		<description><![CDATA[That&#8217;s it! I am leaving tomorrow! I sorted the bike gear I am carrying over there which I tried to keep to a minimum. South Korea is a modern country where a wide range of quality bicycle gear is easily available and accessible apart from the language barrier&#8230; Things like tire, chain, wire, and the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=141&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s it! I am leaving tomorrow! I sorted the bike gear I am carrying over there which I tried to keep to a minimum. South Korea is a modern country where a wide range of quality bicycle gear is easily available and accessible apart from the language barrier&#8230; Things like tire, chain, wire, and the like are relatively easy to find so I didn&#8217;t bother bringing that over. And based on my previous trip in Vietnam, I shouldn&#8217;t be needing those. So here&#8217;s what I believe to be the essential gear:</p>
<p>- Front (white) and rear (red) lights</p>
<p>- 1 tube</p>
<p>- Puncture kit + Tyre lever</p>
<p>- Repair toolkit</p>
<p>- Lube</p>
<p>- Swiss knife</p>
<p>- Cable wraps</p>
<p>- Heavy duty tape</p>
<p>- 15mm cone spanner</p>
<p>- Small pump</p>
<p>- Lock</p>
<p>- 2 saddle bag mounted on each side of the back rack</p>
<p>- 1 bag mounted on the top of the rack</p>
<p>- 1 bag mounted on the front handle bar</p>
<p>- 1 water bottle</p>
<p>- Bike computer (Garmin Edge 500)</p>
<p>- Helmet</p>
<p>- Gloves</p>
<p>- 1 (or 2?) pair of cycling pants</p>
<p>- Rain coat</p>
<p>- Compression pants, mainly for recovery</p>
<p>I didn&#8217;t include all the clothing gear I&#8217;ll carry, but the cycling pants are a must while the compression pants is good to help recover after a hard day pushing and the rain coat can be nice to have.</p>
<p>I&#8217;ll be packing this into a bike box picked up at a bike shop, wrapping this baby up and off I go!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=141&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2010/09/10/initial-gear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>
	</item>
		<item>
		<title>South Korea it is!</title>
		<link>http://pacelachance.wordpress.com/2010/07/26/preparation/</link>
		<comments>http://pacelachance.wordpress.com/2010/07/26/preparation/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 12:03:24 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[South Korea Bike Trip]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=124</guid>
		<description><![CDATA[Back in March 2009, I made my second visit in Vietnam but after realizing the country was relatively flat, I wanted to use my own legs to push my way through this country. I decided to bring my mountain bike and make my own way through 900km in one of the most spectacular and breathtaking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=124&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Back in March 2009, I made my second visit in Vietnam but after realizing the country was relatively flat, I wanted to use my own legs to push my way through this country. I decided to bring my mountain bike and make my own way through 900km in one of the most spectacular and breathtaking landscape on this planet. I also realized it was one if not the best way to travel and discover a country, meet the locals and have the most amazing travel experiences and stories.</p>
<p>Time has come to do this again, this time in South Korea. Seoul to Busan through the east coast sounds like a plan. If anyone has any advice on what the best roads are or if you ever did this trip, drop a comment!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=124&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2010/07/26/preparation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating database structure to support countries and their states</title>
		<link>http://pacelachance.wordpress.com/2009/01/05/creating-database-structure-to-support-countries-and-their-states/</link>
		<comments>http://pacelachance.wordpress.com/2009/01/05/creating-database-structure-to-support-countries-and-their-states/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 06:55:08 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[country]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[SQL server]]></category>
		<category><![CDATA[states]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=49</guid>
		<description><![CDATA[As part of the project I am working on right now I need to implement a database structure to maintain countries with their corresponding states. I found a few websites/blogs that helped a little, but nothing really suited my needs, although the country and states/provinces codes are based on the ISO format: http://www.maxmind.com/app/iso3166. I though [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=49&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As part of the project I am working on right now I need to implement a database structure to maintain countries with their corresponding states. I found a few websites/blogs that helped a little, but nothing really suited my needs, although the country and states/provinces codes are based on the ISO format: <span style="color:#ff6600;"><a href="http://www.maxmind.com/app/iso3166" target="_blank">http://www.maxmind.com/app/iso3166</a></span>. I though posting on this as it might help someone else out there!</p>
<p>After creating your database, open a new query window in SQL Server Management Studio and create a table for the countries&#8230;</p>
<h5><span style="color:#00ff00;">USE YOUR_DATABASE_NAME; GO</span></h5>
<h5><span style="color:#00ff00;">CREATE TABLE Countries(<br />
CountryID            INT             NOT NULL IDENTITY (1,1),<br />
CountryName            VARCHAR(256) NOT NULL,<br />
CountryCode            VARCHAR(256) NULL,<br />
CountryDescription    VARCHAR(256) NULL<br />
CONSTRAINT CountryPK PRIMARY KEY (CountryID));<br />
GO</span></h5>
<p><span style="color:#888888;"><br />
</span></p>
<p>then a second table containing the states.</p>
<h5><span style="color:#0000ff;"><span style="color:#00ff00;">CREATE TABLE Country_States(<br />
StateID                INT             NOT NULL IDENTITY (1,1),<br />
CountryID            INT             NOT NULL,<br />
StateName            VARCHAR(256) NOT NULL,<br />
StateCode            VARCHAR(256) NULL,<br />
StateDescription    VARCHAR(256) NULL<br />
CONSTRAINT StatePK PRIMARY KEY (StateID),<br />
CONSTRAINT Country_StatesCountryFK FOREIGN KEY (CountryID) REFERENCES Countries (CountryID));<br />
GO</span><br />
</span></h5>
<p>Once the tables are created, stored procedures are used to fill in the tables. I left the country description blank.</p>
<h5><span style="color:#00ff00;"></span></h5>
<p><a href="http://pacelachance.files.wordpress.com/2009/01/populate_countries.doc">Populate Countries Script</a></p>
<p>Then populate the country_states table&#8230;</p>
<p><a href="http://pacelachance.files.wordpress.com/2009/01/populate_countrystates.doc"></a><a href="http://pacelachance.files.wordpress.com/2009/01/populate_countrystates.doc">Populate Country_States Script</a></p>
<p>There are some drawbacks with this structure.; There can be states in different countries having the same state code. For example, WA stands for Washington state in the US but is also used to denote WesternAustralia state in Australia. When building your application or importing data from that needs to compare the statecode, make to consider the country in which the state is or simply change the state code.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=49&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2009/01/05/creating-database-structure-to-support-countries-and-their-states/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL injection + IIS logfiles parsing</title>
		<link>http://pacelachance.wordpress.com/2008/08/12/sql-injection-iis-logfiles-parsing/</link>
		<comments>http://pacelachance.wordpress.com/2008/08/12/sql-injection-iis-logfiles-parsing/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 05:23:23 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=44</guid>
		<description><![CDATA[During the past 2 weeks, we&#8217;ve been hacked at work. SQL injection was the method used and it gave us a little headache at the beginning, but I&#8217;ve written a script removing the extra string added in every fields of affected tables. Luckily, it affected only one database on the server. We are now in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=44&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>During the past 2 weeks, we&#8217;ve been hacked at work. SQL injection was the method used and it gave us a little headache at the beginning, but I&#8217;ve written a script removing the extra string added in every fields of affected tables. Luckily, it affected only one database on the server. We are now in the process of modifying the code in out pages and there&#8217;s heaps to do! Most of the websites are coded in Co ld Fusion few years ago (I am new in the company&#8230;), so it&#8217;s a pain in the bum, let me tell you&#8230;</p>
<p>In the process, I looked through the IIS logfiles using logparser (see at the end for the link) to track down any unusual activities on the website. Log parser is amazingly useful to analyze IIS logfiles.</p>
<p>Once you&#8217;ve downloaded and installed logparser 2.2, you can analyze any logfiles generated by IIS.</p>
<ol>
<li>In IIS, right-click on the website you wish to analyze the logfiles</li>
<li>A new window opens; in the &#8216;Enable Logging&#8217; section, click Properties</li>
<li>Go in the directory shown at the bottom of this window and copy the logfiles you want into logparser root directory (Usually C:\Program Files\Log Parser 2.2)</li>
<li>Execute logparser; a command prompt window will open</li>
<li>It&#8217;s time to run queries to analyze the log files!</li>
</ol>
<p>Log parser commands are just like SQL commands. This</p>
<h4 style="padding-left:30px;"><span style="color:#ff6600;">logparser &#8220;SELECT DISTINCT date, cs-uri-stem, c-ip, Count(*), AS Hits, FROM ex*.log GROUP BY date, c-ip, cs-uri-stem HAVING Hits&gt;50 ORDER BY date, c-ip, Hots DESC&#8221;</span></h4>
<p>will give a list of the how many times an IP address has hit a file on one day. Only hits over 50 will be displayed.</p>
<p>IIS log files are structured by columns with headers. For example, columns c-ip represents the IP address. To know more on what field to display, just open a logfile into notepad and look the headers.</p>
<p>You can then lookup the IP doing a whois or tracert in the command prompt or just visit a website such as <a title="CQ Counter" href="http://cqcounter.com/whois" target="_blank">http://cqcounter.com/whois</a> or <a title="Domain Tools" href="http://whois.domaintools.com" target="_blank">http://whois.domaintools.com</a></p>
<p><strong>Log Parser 2.2</strong></p>
<p><a class="alignleft" title="LogParser 2.2" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pacelachance.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pacelachance.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=44&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2008/08/12/sql-injection-iis-logfiles-parsing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>
	</item>
		<item>
		<title>Karloo Pool Bush Walk</title>
		<link>http://pacelachance.wordpress.com/2008/08/10/karloo-pool-bush-walk/</link>
		<comments>http://pacelachance.wordpress.com/2008/08/10/karloo-pool-bush-walk/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 11:53:03 +0000</pubDate>
		<dc:creator>pacelachance</dc:creator>
				<category><![CDATA[Bush Walking]]></category>

		<guid isPermaLink="false">http://pacelachance.wordpress.com/?p=26</guid>
		<description><![CDATA[Today, I woke up early and looked at the weather forecasts; fine, late afternoon showers or two. I decided to go for a bush walk in the southern suburbs as trackworks were underway in the northen suburbs. I bought the Syndey Morning Herald bush, park and city walks acouple weeks ago as it seemed to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=26&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_31" class="wp-caption alignleft" style="width: 150px"><img class="size-medium wp-image-31" src="http://pacelachance.files.wordpress.com/2008/08/img_2497_small.jpg?w=140&#038;h=210" alt="Karloo Pool" width="140" height="210" /><p class="wp-caption-text">Karloo Pool</p></div>
<p>Today, I woke up early and looked at the weather forecasts; fine, late afternoon showers or two. I decided to go for a bush walk in the southern suburbs as trackworks were underway in the northen suburbs. I bought the Syndey Morning Herald bush, park and city walks acouple weeks ago as it seemed to be well written. Karloo Pool through the Bottlebrush Forest looked nice, so I decided to go at 10h30ish.</p>
<p>I got the train to Heathcote station and followed the instructions in the book&#8230; It says to go over the tracks and make a right on Wilson Parade. There&#8217;s no indication to tell the name of the street I am walking on, so I keep going and going and going way passed 100 metres without any &#8220;supposed to be there&#8221; sign indicating the start of the track. After walking in circle for about an hour, 20 of which was raining, I saw a sign saying &#8220;Wilson Parade&#8221;, which is on the other side of the train track!!! The book I have is not very clear on exactly where to go when you get off the train and I lost an hour walking around like a moron. To anyone doing this walk, if your coming from the city, <strong>DO NOT</strong> cross over the train tracks, go right instead, heading to the fire station. This is Wilson Parade. If your coming from Waterfall, cross over the tracks. Make a right on Wilson Parade and you will see the sign making the start on the track.</p>
<p>The walk is great and not that difficult. The landscape is superb and Karloo pool is great! It&#8217;s winter time, so noboby was swimming having dip, though I can imagine that&#8217;ll be awesome in the summer. I&#8217;ve met 5 people</p>
<div id="attachment_32" class="wp-caption alignright" style="width: 250px"><img class="size-medium wp-image-32" src="http://pacelachance.files.wordpress.com/2008/08/img_2498_small.jpg?w=240&#038;h=160" alt="Karloo Pool" width="240" height="160" /><p class="wp-caption-text">Karloo Pool</p></div>
<p>during my journey, only one person were sitting on the rocks where the pool were&#8230; After a couple of pictures around I made my way at the pond and he was gone, leaving me alone for the whole time I spent in this lovely area. I sat down a bit, took some pictures and can easily imagine myself swimming around there in summer! The walk back was good and I got back just on time ti catch the train back in the city! That was a sweet day&#8230;</p>
<div id="attachment_33" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-33" src="http://pacelachance.files.wordpress.com/2008/08/img_2501_small.jpg?w=300&#038;h=200" alt="Karloo Pool" width="300" height="200" /><p class="wp-caption-text">Karloo Pool</p></div>
<div id="attachment_34" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-34" src="http://pacelachance.files.wordpress.com/2008/08/img_2562_small.jpg?w=300&#038;h=219" alt="Crow" width="300" height="219" /><p class="wp-caption-text">Crow</p></div>
<div id="attachment_30" class="wp-caption alignnone" style="width: 210px"><img class="size-medium wp-image-30" src="http://pacelachance.files.wordpress.com/2008/08/img_2492_small.jpg?w=200&#038;h=300" alt="Karloo Pool" width="200" height="300" /><p class="wp-caption-text">Karloo Pool</p></div>
<div id="attachment_29" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-29" src="http://pacelachance.files.wordpress.com/2008/08/img_2457_small.jpg?w=300&#038;h=200" alt="Karloo Pool Bush Walk" width="300" height="200" /><p class="wp-caption-text">Karloo Pool Bush Walk</p></div>
<div id="attachment_36" class="wp-caption alignnone" style="width: 210px"><img class="size-medium wp-image-36" src="http://pacelachance.files.wordpress.com/2008/08/img_2634_small.jpg?w=200&#038;h=300" alt="Karloo Pool Bush Walk" width="200" height="300" /><p class="wp-caption-text">Karloo Pool Bush Walk</p></div>
<div id="attachment_35" class="wp-caption alignnone" style="width: 210px"><img class="size-medium wp-image-35" src="http://pacelachance.files.wordpress.com/2008/08/img_2615_small.jpg?w=200&#038;h=300" alt="Karloo Pool" width="200" height="300" /><p class="wp-caption-text">Karloo Pool</p></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pacelachance.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pacelachance.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pacelachance.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pacelachance.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pacelachance.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pacelachance.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pacelachance.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pacelachance.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pacelachance.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pacelachance.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pacelachance.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pacelachance.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pacelachance.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pacelachance.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pacelachance.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pacelachance.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pacelachance.wordpress.com&amp;blog=4457621&amp;post=26&amp;subd=pacelachance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pacelachance.wordpress.com/2008/08/10/karloo-pool-bush-walk/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfb1ac00034730153ac26dc320334b5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pace</media:title>
		</media:content>

		<media:content url="http://pacelachance.files.wordpress.com/2008/08/img_2497_small.jpg?w=200" medium="image">
			<media:title type="html">Karloo Pool</media:title>
		</media:content>

		<media:content url="http://pacelachance.files.wordpress.com/2008/08/img_2498_small.jpg?w=300" medium="image">
			<media:title type="html">Karloo Pool</media:title>
		</media:content>

		<media:content url="http://pacelachance.files.wordpress.com/2008/08/img_2501_small.jpg?w=300" medium="image">
			<media:title type="html">Karloo Pool</media:title>
		</media:content>

		<media:content url="http://pacelachance.files.wordpress.com/2008/08/img_2562_small.jpg?w=300" medium="image">
			<media:title type="html">Crow</media:title>
		</media:content>

		<media:content url="http://pacelachance.files.wordpress.com/2008/08/img_2492_small.jpg?w=200" medium="image">
			<media:title type="html">Karloo Pool</media:title>
		</media:content>

		<media:content url="http://pacelachance.files.wordpress.com/2008/08/img_2457_small.jpg?w=300" medium="image">
			<media:title type="html">Karloo Pool Bush Walk</media:title>
		</media:content>

		<media:content url="http://pacelachance.files.wordpress.com/2008/08/img_2634_small.jpg?w=200" medium="image">
			<media:title type="html">Karloo Pool Bush Walk</media:title>
		</media:content>

		<media:content url="http://pacelachance.files.wordpress.com/2008/08/img_2615_small.jpg?w=200" medium="image">
			<media:title type="html">Karloo Pool</media:title>
		</media:content>
	</item>
	</channel>
</rss>
