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

<channel>
	<title>unitstep.net &#187; asides</title>
	<atom:link href="http://unitstep.net/blog/category/asides/feed/" rel="self" type="application/rss+xml" />
	<link>http://unitstep.net</link>
	<description>the home of peter chng</description>
	<lastBuildDate>Mon, 19 Mar 2012 01:49:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>The Game of Life and emergence</title>
		<link>http://unitstep.net/blog/2012/02/12/the-game-of-life-and-emergence/</link>
		<comments>http://unitstep.net/blog/2012/02/12/the-game-of-life-and-emergence/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 01:37:54 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[algorithms]]></category>
		<category><![CDATA[asides]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[emergence]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=1326</guid>
		<description><![CDATA[I have had a side interest in emergent behaviour ever since reading about various forms in nature, so when a co-worker sent me a link to Conway&#8217;s Game of Life, I was immediately intrigued. Long story short, I just had to implement it (albeit a simple version) in JavaScript. The result is available on my [...]]]></description>
			<content:encoded><![CDATA[<p>I have had a side interest in emergent behaviour ever since reading about various forms in nature, so when a co-worker sent me a link to <a href="http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life">Conway&#8217;s Game of Life</a>, I was immediately intrigued.</p>
<p>Long story short, I just had to implement it (albeit a simple version) in JavaScript. The <a href="http://unitstep.net/projects/game-of-life/">result is available</a> on my website and I suggest you give it a try; a good pattern to start out with is the <a href="http://en.wikipedia.org/wiki/File:Game_of_life_fpento.svg">F-pentomino</a>.</p>
<p>The reason I find emergence so interesting is that it provides a possible framework or explanation for the complexity and order seen in our universe, based on a fairly simple or rudimentary set of rules.</p>
<h2>One to rule them all</h2>
<p>The interactions seen in <em>Conway&#8217;s Game of Life</em> can be fairly complex and are not straightforward to predict. However, they all result from a simple set of rules:</p>
<ul>
<li>Each square is labeled as a cell, and has eight neighbours.</li>
<li>A cell can either be &#8220;dead&#8221; or &#8220;alive&#8221;.</li>
<li>A dead cell turns alive on the next turn if it has exactly three alive neighbours.</li>
<li>A live cell continues to live on the next turn if it has 2 or 3 alive neighbours.</li>
</ul>
<p>Thus, during each iteration, the state of a cell (alive or dead) is determined from the state of its neighbours on the previous turn.</p>
<h2>Complexity from simplicity</h2>
<p>Despite this limited ruleset, complex behaviour can be seen in the interaction between cells. In fact, quite a lot of study has been put into understanding the interactions and categorizing the various &#8220;structures&#8221; that have emerged in game. </p>
<p>Simulating the game on a large scale can take a lot of CPU power, so some interesting dynamic programming techniques have been utilized to increase the iteration speed. One of them is <a href="http://en.wikipedia.org/wiki/Hashlife">Hashlife</a>, which exploits the repeatability and determinism in the game.</p>
<p>For example, if a pattern shows up an in an early stage of the simulation, it&#8217;s &#8220;evolution&#8221; can be tracked and stored so that if the same pattern ever shows up again, it&#8217;s long(er) term fate will already be known, since it was already computed earlier. This prevents unnecessary iterations in the simulation. This sort of technique is called <em>memoization</em>.</p>
<h2>In Real Life</h2>
<p>Obviously, our universe is probably more complex than the <em>Game of Life</em>. (It would likely have to be, since the simulation exists within our universe) But it&#8217;s also likely that all the complex interactions and structures observed in our universe boil down to some set of rudimentary rules.  The point of science, in many respects, is connecting the dots that allow us to understand how these higher-level properties emerged from lower-level interactions. I&#8217;m not saying that it will provide all the answers or explain things like self-awareness, but to me, that sort of emergence is the real beauty of our universe. </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2012/02/12/the-game-of-life-and-emergence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye, old friend&#8230;</title>
		<link>http://unitstep.net/blog/2011/12/15/goodbye-old-friend/</link>
		<comments>http://unitstep.net/blog/2011/12/15/goodbye-old-friend/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 23:25:09 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[glasses]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=1304</guid>
		<description><![CDATA[I&#8217;ve had the same pair of prescription glasses since about 2004, having changed the lens more than once. I just got so used to them that whenever the opportunity arose to replace them, I couldn&#8217;t find a pair that felt or looked right. So, I just continued with the same old dependable pair. They&#8217;ve fallen [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had the same pair of prescription glasses since about 2004, having changed the lens more than once. I just got so used to them that whenever the opportunity arose to replace them, I couldn&#8217;t find a pair that felt or looked right. So, I just continued with the same old dependable pair.</p>
<p>They&#8217;ve fallen off of my face more than once, have tumbled many times to the hardwood floor from my nightstand while I fumbled for them in the dark, been lost in my bed covers and rolled onto during numerous occasions, and of course I&#8217;ve fallen asleep with them on more times than I can remember. Despite all of this, they not only held together, but retained much of the original lustre and remain in excellent condition.</p>
<p>Only one of the earpieces is starting to look worn, the nose pads are looking a little old and one of the lens screws had to be replaced when it fell out and got lost, but other than that, they&#8217;re as good as new. This was the first &#8220;thin&#8221; pair of glasses I had ever worn and I initially had some reservations about durability, so I&#8217;m more than pleased with how well they&#8217;ve held up. (I think the frames are made up of some titanium, but I can&#8217;t remember)</p>
<p>But this past weekend, I decided it was time to finally replace them. </p>
<p class="image">
<a href="http://unitstep.net/wordpress/wp-content/uploads/2011/12/eyeglasses.jpg"><img src="http://unitstep.net/wordpress/wp-content/uploads/2011/12/eyeglasses-300x225.jpg" alt="" title="Old eyeglasses" width="300" height="225" class="alignnone size-medium wp-image-1318" /></a>
</p>
<p>We&#8217;ve had a good run, old friend, but I&#8217;m afraid it&#8217;s time to part ways.</p>
<p>I went down to the local Pearle Vision since it was close and seemed to have a decent selection of frames. In fact, I found there was just too many options. Many of them were easily ruled out, but I still ended up spending over an hour trying on frames with fingerprints and smudges all over the lenses in an effort to find the right pair. Or, rather, the right <em>pairs</em>, since they had this screwed up pricing that basically forced you to buy two pairs at once since you hardly saved anything by buying a single pair.</p>
<p>The problem with selecting glasses (besides my indecisiveness, aggravated by the multitude of options) is that it&#8217;s hard to know how well they&#8217;ll do or look over the long run. Durability is important to me, and certainly some frames &#8220;felt&#8221; more durable than others, but that&#8217;s not really a sound way of assessing things. I guess I&#8217;m just expecting these new frames to last as long as the previous ones did, because I find it hard to change &#8220;styles&#8221;.</p>
<p>The other problem is that it&#8217;s hard to tell what you look like in them if you don&#8217;t wear contacts &#8211; thankfully this isn&#8217;t a problem for me; I&#8217;d be nearly blind without corrective vision.</p>
<p>Eventually, if you try on enough frames and stay in the store for long enough, almost all glasses start to look acceptable. This is because style and attractiveness are both subjective and tend to be swayed one way or another by overexposure. It&#8217;s almost as if your subconscious is overriding your critical thinking in an effort to get you out of the store and on your way. </p>
<p>You need to know when this effect is taking a hold of you, so I suggest the following: Within five minutes of entering the store, identify and try on a pair of frames that look utterly ridiculous on you. Then, put these back; don&#8217;t worry, you definitely won&#8217;t be getting these. After you&#8217;ve been in the store for an hour or so, and you&#8217;re noticing that most frames you&#8217;re trying on are looking good, go back and try on the hideous pair.</p>
<p>If the hideous pair now look attractive or even slightly better than before, your judgment has already been compromised. Either leave and come back another day or take your chances with a pair that you found attractive <em>early on</em> during your search. This is what I did.</p>
<p>I should be getting the new frames within a few days. Hopefully I wasn&#8217;t judgment-impaired when I made my choice.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2011/12/15/goodbye-old-friend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boston reflection and updates</title>
		<link>http://unitstep.net/blog/2011/06/19/boston-reflection-and-updates/</link>
		<comments>http://unitstep.net/blog/2011/06/19/boston-reflection-and-updates/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 18:05:00 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[marathon]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[boston marathon]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=1280</guid>
		<description><![CDATA[It&#8217;s been two months since the 2011 Boston Marathon, which was my first attempt at this historic race. As some of you may know, it had been one of the focal points of my life for the past several months, ever since I qualified by 13 seconds back in September of 2010. I took a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been two months since the <a href="http://www.baa.org/races/boston-marathon.aspx">2011 Boston Marathon</a>, which was my first attempt at this historic race. As some of you may know, it had been one of the focal points of my life for the past several months, <a href="/blog/2010/10/09/qualified-for-the-boston-marathon/">ever since I qualified by 13 seconds</a> back in September of 2010.</p>
<p>I took a <a href="/blog/2011/01/16/what-ive-been-up-to/">new approach to training</a> and really dedicated myself to it. There were many mid-week 4 AM mornings, followed by 1.5-2 hour runs in the dark, snow/rain and wind. I arrived at the starting line being as prepared for any race as I&#8217;d ever been.</p>
<p>However, I failed to meet my goal time of a sub-3:03 marathon, finishing in only 3:07:20. I made several mistakes early on and fell behind the pace within the first 10 km. However, I was most disappointed in myself for not pushing harder. I felt that I had mentally &#8220;checked out&#8221; after the first half, and consciously or not, believed that meeting my goal was now impossible due to the early mistakes. Because of that, I felt that I didn&#8217;t try as hard as I could and that I did not give 100% for fear of failure. It was almost as if I had sabotaged myself into thinking, &#8220;If I don&#8217;t give 100% and miss my goal, well at least then I will have an excuse.&#8221;</p>
<p>I fell into a pretty big slump after Boston and didn&#8217;t/couldn&#8217;t run for almost a week after. Even when I did start again, things just weren&#8217;t the same &#8211; my confidence had been shattered. I knew I had to break out of this slump, so I signed up for the <a href="http://www.mississaugamarathon.com/default.shtml">Mississauga Half Marathon</a>, which was about a month after Boston, to give me something to shoot for.</p>
<p>Why the half? Simply put, I didn&#8217;t think I&#8217;d be ready for another full so soon &#8211; not just physically, but mentally as well. If I were to run the full, I would have wanted to aim for a sub-3:05, in order to get in on the <a href="http://www.baa.org/races/boston-marathon/participant-information/register.aspx">first week of registration for 2012</a>. However, I didn&#8217;t feel that I would have the mental toughness required to meet that time and couldn&#8217;t deal with the heartbreak of another missed goal. So, I decided on the half, a distance I felt comfortable with.</p>
<p>Things turned out great &#8211; though the conditions were looking windy/rainy, things actually were not that bad, and I was able to pull of a huge PR, finishing in a time of 1:24:02 in the Mississauga Half Marathon, well ahead of any goal I&#8217;d had. This was good enough for 4th in my age group. Suffice to say, this was a huge confidence booster, something I sorely needed. </p>
<h2>Edmonton Marathon</h2>
<p>Coming off my performance at the Mississauga Half, I felt elated and immediately signed up for the Edmonton Marathon, which takes place on August 21st of this year. This would give me two weeks of downtime before I would have to start a 12-week training schedule for it. 12 weeks might seem a little short, but I actually think it&#8217;s pretty close to optimal considering my present situation. I felt that the 18-week program I used for Boston was perhaps a little long, and something between 14-16 weeks would have been better. </p>
<p>Given that I&#8217;m coming off a good base established by my Boston training (though not reflected in my performance there, but instead at the Mississauga Half), I feel that 12 weeks is more than enough to be ready for Edmonton, provided I stick to the plan, rest/recovery well and not over do things.</p>
<p>Edmonton will be my last chance to qualify for Boston 2012, since registration starts in early September. Technically, I&#8217;m already &#8220;qualified&#8221; for Boston 2012, but I don&#8217;t believe my time will be fast enough to actually allow my entry accepted. Complicated story aside, most runners I&#8217;ve talked to have thought that you&#8217;ll need to have at least BQ-5 (that is, your Boston Qualification time minus 5 minutes) in order to have a chance to get in, so I&#8217;ll be aiming for a sub-3:05 finish.</p>
<p>Running a marathon is no easy task. You train for months and basically have once chance to prove yourself. I don&#8217;t deal well with pressure, and I choked at Boston this year. I&#8217;m trying to avoid that this time in Edmonton.</p>
<p>Edmonton has the advantage of being a flat course, and the climate is not known for its hot summers. When I ran it back in 2009, the starting line temperature was only around 8C with a finishing temperature of 16C. This is pretty close to ideal. However, there are only so many things one can control.</p>
<p>Training doesn&#8217;t guarantee any performance; it can only increase the chances of reaching your desired goal. I have accepted the fact that I may give 100% this time and again fail to meet my goal &#8211; that is just part of the game. You can&#8217;t be afraid to fail if you want to achieve something.</p>
<h2>Site updates</h2>
<p>Yet again, I&#8217;ve fallen behind with keeping this site up to date with articles and guides. It&#8217;s not that I don&#8217;t have any ideas, it&#8217;s just that I&#8217;ve been lazy to make the time to put them together. A combination of work, training and life has yet again provided me with the excuse to not further this site with articles that may be of importance to readers. </p>
<p>Writing tutorials and other informational articles is as much a help to me as it is to those who read them, so I will be putting more effort towards this. I hope that you have enjoyed the few that I have written this year.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2011/06/19/boston-reflection-and-updates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Excess packaging</title>
		<link>http://unitstep.net/blog/2011/05/28/excess-packaging/</link>
		<comments>http://unitstep.net/blog/2011/05/28/excess-packaging/#comments</comments>
		<pubDate>Sat, 28 May 2011 14:12:49 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[batteries]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[packaging]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=1270</guid>
		<description><![CDATA[I recently ordered some extra Sanyo eneloop batteries when they were on sale at Dell. They&#8217;re great rechargeables, but I don&#8217;t know why most packages always come with a charger &#8211; I now have three of them from previous purchases. However, when I received the package from Dell, I was surprised at the size. It [...]]]></description>
			<content:encoded><![CDATA[<p>I recently ordered some extra Sanyo eneloop batteries when they were on sale at Dell. They&#8217;re great rechargeables, but I don&#8217;t know why most packages always come with a charger &#8211; I now have three of them from previous purchases.</p>
<p>However, when I received the package from Dell, I was surprised at the size. It came in a huge 18&#8243;x13&#8243; bubble envelope:</p>
<p class="image">
<a href="http://www.zooomr.com/photos/stygiansonic/9947217/" title="Photo Sharing"><img src="http://static.zooomr.com/images/9947217_eefd83418b_m.jpg" width="240" height="180" alt="Dell packaging" /></a></p>
<p>I thought it was just excess shipping packaging, but opening the enveloped made it clear that the packaging was only just big enough to hold the actual item:</p>
<p class="image"><a href="http://www.zooomr.com/photos/stygiansonic/9947222/" title="Photo Sharing"><img src="http://static.zooomr.com/images/9947222_75aaefa95e_m.jpg" width="240" height="180" alt="Huge eneloop package" /></a></p>
<p class="image"><a href="http://www.zooomr.com/photos/stygiansonic/9947226/" title="Photo Sharing"><img src="http://static.zooomr.com/images/9947226_b2fa56a4f3_m.jpg" width="240" height="180" alt="Green packaging?" /></a></p>
<p>For batteries with packaging that seems to imply they&#8217;re good for the environment, you think they would have made the packaging a little less excessive. The packaging is still 100% recyclable, but it still costs energy to make it.</p>
<p>At least Dell didn&#8217;t put the already-large item in a huge shipping box.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2011/05/28/excess-packaging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been up to</title>
		<link>http://unitstep.net/blog/2011/01/16/what-ive-been-up-to/</link>
		<comments>http://unitstep.net/blog/2011/01/16/what-ive-been-up-to/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 19:46:09 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=1194</guid>
		<description><![CDATA[I&#8217;ve had a serious lapse in updating this blog with useful information, and for that I apologize. I would have liked to continue to provide helpful guides and other tutorials, but I continually found excuses to be lazy. Writing these guides is as helpful for readers as it is for me, so it&#8217;s something that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a serious lapse in updating this blog with useful information, and for that I apologize.  I would have liked to continue to provide helpful <a href="/blog/category/guides/">guides</a> and other <a href="/blog/category/tutorials/">tutorials</a>, but I continually found excuses to be lazy.  Writing these guides is as helpful for readers as it is for me, so it&#8217;s something that I need to engage in more often if I am to continue with personal development.</p>
<p>With that in mind, I thought it&#8217;d be useful to provide an update on what I&#8217;ve been up to for the past few months, to keep things in perspective.</p>
<h2>Changing roles</h2>
<p>During the summer, I started a new job. As with any new job, there is an adjustment period and during that time I wanted to stay focused on getting up to speed and being able to deliver in the role I was hired for.  I&#8217;m always apprehensive about new environments, so I wanted to take the time to properly learn the ropes and not be too assertive, while at the same time not being too withdrawn.</p>
<p>I&#8217;m glad to report that things are going quite well.  The new position suits me well, and most importantly, the people there are great to work with.  My new team lead, and indeed many of my other team members have also been recently hired, so I was a little less intimidated as I was by no means the only &#8220;new guy&#8221;. Since then, we have all had to opportunity to learn, grow and adjust to the environment, so it&#8217;s been a great team-building exercise of sorts. (As you can tell, the company is very much in a growth phase at this point)</p>
<p>About the only thing I don&#8217;t like is having to drive to work, as the new workplace is out is Mississauga.  It&#8217;s not a horrible commute (~30 minutes one-way), but it&#8217;s just that I don&#8217;t like driving. </p>
<h2>Boston 2011 Training</h2>
<p>The other big event in my life has been <a href="/blog/2010/10/09/qualified-for-the-boston-marathon/">qualifying for the Boston Marathon</a>, which I did last year in <a href="http://torontowaterfrontmarathon.com/en/index.htm">STWM 2010</a>.</p>
<p>Luckily, I managed to get in the day registration opened, as all the spots for the <a href="http://rwdaily.runnersworld.com/2010/10/boston-is-closed.html">2011 Boston Marathon filled within 8 hours</a>! The fast fill-up time can probably be attributed to a self-fulfilling prophesy, as the people who were locked out last year (when registration filled in &#8220;only&#8221; 2 months) vowed not to miss it again. This created rumours that things would fill up even faster, and likely created a &#8220;bank run&#8221; type scenario. </p>
<p>I quickly booked my hotel and flight down to Beantown for April this year, as I didn&#8217;t want to miss out because of something logistical.  But my planning for Boston hasn&#8217;t been limited to administrative items though, as there is of course the training required.</p>
<p>For this next marathon, which will be my sixth, I decided that I need a new approach, one that involved following a proper training plan.  Before this, my training had always been self-developed &#8211; that is, lacking structure and reason. I would basically run four times a week: One long run on the weekend, followed by three ~10 km runs during the week.  All of these would be run at the fastest pace that I could sustain over the distance.</p>
<p>This seemed to work, at least for a while, as I managed at 3:02:50 performance in the 2009 Edmonton marathon.  However, this was followed by a disastrous 3:27 finish in the 2009 Toronto GoodLife marathon, and a qualifying near-miss in the 2010 Mississauga marathon where I finished in 3:13.  Having just barely qualified during the 2010 STWM with a time of 3:10:46 (and that was only due to sheer willpower during the last 2.2 km), I knew a different approach was required, one that was more regimented.</p>
<h2>A new approach to training</h2>
<p>So I bought a few books and began reading up online about exercise physiology.  I quickly learned that I had simply been running all my training runs <em>too fast</em>, which seems contradictory to the goals of training. After all, to run a race fast, shouldn&#8217;t you train fast? It turns out, the truth is not so simple.</p>
<p>Basically, by running everything as fast as I could during training, I wasn&#8217;t giving my body time to properly recover.  Strictly speaking, it isn&#8217;t the workout that improves your fitness &#8211; as after a workout, you are tired and your performance is actually decreased.  It&#8217;s actually the <em>supercompensation</em> that happens during the recovery phase that improves your fitness.  Without recovery, hard training will simply break down your body and leave you less capable.</p>
<p>That&#8217;s what was happening to me &#8211; I was &#8220;leaving my best race on the track&#8221;, as famed distance running coach <a href="http://www.amazon.com/Daniels-Running-Formula-2nd-Jack/dp/0736054928">Daniels</a> would say.  With all that hard running, each workout began to seem tougher and tougher &#8211; though the actual intensity was not getting harder.  Soon, it got to the point where I could not complete my four runs per week, and had to switch to cross-training in a vain attempt to preserve my fitness. It turns out, this is a common pitfall of amateur runners as they attempt to devise their own &#8220;training plan.&#8221;</p>
<h2>Rest and recovery</h2>
<p>After all of this, I needed a recovery period. I took some downtime after my fall marathon, and when to physiotherapy for some issues I was having with my right knee.  It turns out I had PFPS (Patello femoral pain syndrome), which is basically a kneecap-tracking problem caused by muscle imbalances and likely aggravated by all the hard running I was doing.  I was given some exercises to do and also began some strength training for my quads, and during the past three months the pain progressively decreased and is now almost completely gone. During this time, I was never prevented from running.</p>
<p>But I also began to change how I ran. I no longer ran everything at the fastest pace possible.  In fact, for two months, I reverted to a &#8220;base training&#8221; phase, where all my runs were done at < 70% HRR (Heart Rate Reserve). At first, it was painful to run this slow. But I stuck to the ideas that <a href="http://www.markallenonline.com/maoArticles.aspx?AID=4">others had proven</a> effective, and I was able to increase my weekly distance up to levels I&#8217;d never touched before, all while remaining injury free.  </p>
<p>During this time, I also worked on shortening my stride and increasing my cadence, thus moving away from a heel-striking gait to more of a midfoot strike.  I believe this has prevented my plantar fasciitis from returning, something I struggled with for over a year.  At the end of this phase, I did a time trial on the treadmill, and I was no slower at 10 km than before.  In fact, physically, I felt much more stronger and refreshed.</p>
<h2>Marathon training</h2>
<p>With recovery out of the way, the question of which training plan to follow came up.  After consulting with the folks over at the <a href="http://www.runnersworld.com/community/forums/races-places/boston-marathon">RWOL Boston forums</a>, it became clear that many of them were following the plan from <a href="http://www.amazon.com/Advanced-Marathoning-2nd-Peter-Pfitzinger/dp/0736074600">Advanced Marathoning</a>, by Pete Pfitzinger.  Pftizinger and Daniels have very similar ideas &#8211; specific runs at specific paces to train different parts of your physiology necessary for the marathon &#8211; but Pfitzinger is a more specific with his training schedule, something I desired.</p>
<p>At first, things were a bit daunting &#8211; after all, the lowest-mileage plan (which I planned on following) has a maximum week of 88 km, something I&#8217;ve never done before.  But the beauty of the plans is that while there&#8217;s a lot of mileage, there&#8217;s a selective use of hard running.  Pfitz always places sufficient time between hard runs, filling them with slower-paced runs that keep your cardiovascular system in shape while allowing your legs to recover from the harder efforts. It&#8217;s a much more sane approach.</p>
<p>I&#8217;m following the 18-week plan that peaks at 88 km, (commonly referred to as &#8220;18/55&#8243; since 55 miles is about 88 km) and have just finished the 5th week. I feel great &#8211; a lot stronger and most importantly, remain injury free.  Hopefully things will remain that way.</p>
<h2>Summing it up</h2>
<p>Besides updates on my marathon training progress, I will aim to add a few more development/programming related guides.  I have the beginnings of a few, but just need the motivation to put them together. Hopefully that will not be interrupted by laziness.  But <a href="http://www.quotationspage.com/quote/571.html">Lennon once said</a>, <em>&#8220;Life is what happens to you while you&#8217;re busy making other plans.&#8221;</em>.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2011/01/16/what-ive-been-up-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome Note for the iPhone is awesome!</title>
		<link>http://unitstep.net/blog/2010/02/28/awesome-note-for-the-iphone-is-awesome/</link>
		<comments>http://unitstep.net/blog/2010/02/28/awesome-note-for-the-iphone-is-awesome/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 02:28:39 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[asides]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[iphone apps awesome-note]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=1081</guid>
		<description><![CDATA[I&#8217;m a bit of an information pack rat. When I have an idea or something I need to keep track of, I have an immediate need to write it down or record it. In the past this has resulted in an assortment of post-it notes, notebooks or even loose papers lying around my desk, all [...]]]></description>
			<content:encoded><![CDATA[<p class="image align-right"><a href="http://bridworks.com/"><img src="http://unitstep.net/wordpress/wp-content/uploads/2010/02/awesome-note.jpg" alt="" title="awesome-note" width="175" height="175" class="alignnone size-full wp-image-1095" /></a></p>
<p>I&#8217;m a bit of an information pack rat.  When I have an idea or something I need to keep track of, I have an immediate need to write it down or record it.  In the past this has resulted in an assortment of post-it notes, notebooks or even loose papers lying around my desk, all used to document my thoughts.  Eventually, I tried to move my note-taking over to the PC in an attempt to make it easier to manage, but over time the notes became spread over a variety of formats and storage mediums, from text files on my local PC to online services such as <a href="https://www.google.com/calendar">Google Calendar</a> and <a href="https://www.dropbox.com/">Dropbox</a>.</p>
<p>This sort of digital storage Balkanization was becoming a nightmare to manage and effectively neutralizing any benefit from taking notes, since finding and keeping track of what I&#8217;d written down was becoming a chore by itself.  Clearly, a unified solution was needed.  Ever since I got my iPhone last year, I&#8217;d been looking for an app or service that would allow me to easily keep track of todo and shopping lists (what most of my notes amounted to), while storing the the data online so that it could be synced or updated from my PC as well.</p>
<p>I think I&#8217;ve finally found that with <a href="http://bridworks.com/">Awesome Note</a>.</p>
<h2>What I was looking for</h2>
<p>As mentioned, I love keeping lists.  So what I needed was an app that could allow me to easily keep track of lists as well as allow me to backup or sync the underlying data in such a way that I could also work with the lists on my PC or online.  The built-in Notes app didn&#8217;t meet my needs because you could only sync it with certain supported software, such as Outlook, which I didn&#8217;t use or care to use at home.</p>
<p>Browsing through the App Store was almost an exercise in futility.  Trying to find a decent note-taking app (or any app, for that matter) is a time-consuming activity; I didn&#8217;t want to shell out any money without being able to first try the app out, so many apps were immediately ruled out.  </p>
<p>The first one I tried was one aptly named <a href="http://www.mobilityware.com/iApps/Lists.htm">Lists</a>.  While it was functional and had support for lists and lists-within-lists, it was buggy and the UI left a lot to be desired.  The next one I tried was <a href="http://www.evernote.com/">Evernote&#8217;s</a> app; while Evernote is a nice service, the iPhone app left a lot to be desired.  While the web application or the PC software allowed you to take all sorts of notes, only basic editing functionality was available on the app, and it was suited for a more general note-taking approach rather than one for lists and the like.</p>
<p>I stumbled upon the free version of Awesome Note soon after, which thankfully was fully-featured but limited you to only a few notes.  Nonetheless, I was immediately impressed.</p>
<h2>Just felt right</h2>
<p>Right off the bat, I was impressed by how easy it was to create a list and add items.  When creating an item, you can use the &#8220;quick-add&#8221; functionality that allows you to nicely add a new item while staying on the same screen; if necessary you can later add a longer description on a separate screen.  Furthermore, it&#8217;s easy to sort items by date, name or priority; more importantly, there&#8217;s a robust search function as well.  Swipe-to-delete functionality is also nicely handled.</p>
<p>You can create multiple folders, each to store separate items, for example, a shopping list and a todo list.  Each folder has its own view options, either thumbnail, lists or todo view, store separately so you can sort through different lists in different ways, each remembered by the app.  Furthermore, it&#8217;s easy to convert an item to a todo item; you simply tap a box next to an item to change its state from done/not done and there&#8217;s no need to navigate complicated setup screens to change this.</p>
<p>There&#8217;s also a &#8220;Quick Memo&#8221; feature, which gives you a notepad to quickly jot down ideas that you can later convert into a fully-fledged note or item.  It basically replicates the functionality of the built-in Notes app, all while providing some other nice features such as adjustable fonts, just like the rest of the app.</p>
<p>Furthermore, the UI was very polished; each folder can be identified by colour and an icon of your choosing.  A nice assortment of these icons/backgrounds is provided, all of them looking great.  In short, everything looks very well refined and well thought out, making list and note management very easy.</p>
<p>But most importantly, the sync worked great out of the box.  I tied it to my Evernote account, and as a result I now have the unified access to my notes that I so badly wanted.  I&#8217;d previously used Dropbox or even my own SVN server to get some semblance of cloud-based storage and access to my notes, but but neither was sufficient to properly work with my iPhone.  Awesome Note now provides that functionality, with a great UI/front-end making list/note management a breeze.</p>
<p>I strongly recommend <a href="http://bridworks.com/">giving it a try</a> if you find yourself using your iPhone/iPod Touch to take notes.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2010/02/28/awesome-note-for-the-iphone-is-awesome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Joining the iPhone cult</title>
		<link>http://unitstep.net/blog/2009/09/28/joining-the-iphone-cult/</link>
		<comments>http://unitstep.net/blog/2009/09/28/joining-the-iphone-cult/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 02:53:00 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[asides]]></category>
		<category><![CDATA[cellphones]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile phones]]></category>
		<category><![CDATA[toys]]></category>
		<category><![CDATA[unboxing]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=1008</guid>
		<description><![CDATA[Well, I finally gave in and joined the cult of iPhone. At the beginning of this month, I decided to splurge and get an iPhone through Fido, Rogers discount brand. Why? I suppose it had something to do with the extension of the 6GB/$30 &#8220;promotion&#8221; or the fact that I was able to find a [...]]]></description>
			<content:encoded><![CDATA[<p class="image align-right"><a href="http://www.zooomr.com/photos/stygiansonic/8248512/" title="Photo Sharing"><img src="http://static.zooomr.com/images/8248512_a50bbf2f26_t.jpg" width="100" height="75" alt="iPhone 3GS vs. iPod Touch 2nd Gen." /></a></p>
<p>Well, I finally gave in and joined the cult of iPhone.  At the beginning of this month, I decided to splurge and get an iPhone through Fido, Rogers discount brand.  Why? I suppose it had something to do with the <a href="http://www.theiphoneblog.com/2009/08/03/rogersfido-canada-extend-6gb30-data-promotion-september-15/">extension of the 6GB/$30 &#8220;promotion&#8221;</a> or the fact that I was able to find a 3GS for sale locally, but mostly it had to do with the fact that I needed a new toy. (Note that the iPhone is hardly a novelty item, with >21 million of them out there)</p>
<p>Keep in mind that I didn&#8217;t have a mobile phone <a href="http://unitstep.net/blog/2007/11/14/going-mobile/">until late 2007</a>, and even then I decided to only go with a prepaid provider (Virgin Mobile) because I didn&#8217;t have much of a need for a phone, but really just wanted Internet access.  However, this past summer my phone got more use than usual, especially with regard to Internet access.  With Internet browsing being anemic on most non-smartphones, I decided it was time to upgrade.</p>
<p>I narrowed my choices down to two: Either the Palm Pre or the iPhone 3GS.  However, I wasn&#8217;t very pleased with what plans Bell had to offer and wasn&#8217;t sure if the Pre developer ecosystem (and thus the applications available) would turn out to be as varied as the iPhone.  So, I decided to join the cult.</p>
<p class="image"><a href="http://www.zooomr.com/photos/stygiansonic/8248482/" title="Photo Sharing"><img src="http://static.zooomr.com/images/8248482_1f0b89b457_m.jpg" width="240" height="180" alt="iPhone 3GS vs. iPod Touch 2nd Gen." /></a></p>
<p>Another reason that led me down this path was the fact that I already had an <a href="http://unitstep.net/blog/2009/02/07/ipod-touch/">iPod Touch from earlier in the year</a>, and so I was already used to the iPhone interface. (I&#8217;ve since sold the Touch)  And yes, I do realize in that very article I berated the monthly cost of the iPhone only to now end up doing a complete 180 on the situation.  It&#8217;s not that I&#8217;m <em>happy</em> with what I&#8217;m paying, but rather that I&#8217;m willing to suck it up.  Such is the power of the cult, and perhaps one of the reasons for the iPod Touch&#8217;s existence &#8211; to suck users into getting an iPhone.  After all, <a href="http://www.independent.co.uk/news/business/news/iphone-finally-arrives-but-its-neither-cheap-nor-g3-402835.html">Steve Jobs did describe it as &#8220;training wheels for the iPhone&#8221;</a>, but perhaps &#8220;gateway drug to the iPhone&#8221; would be more accurate.</p>
<p>Fido actually had some okay plans; okay for Canada that is.  In the end, I&#8217;m paying just about $80 CAD a month. (including taxes) It&#8217;s about $50 more than I was paying for my old phone, which is quite a bit, but the iPhone has been invaluable in the intervening period after moving where I didn&#8217;t have Internet access at home.  We&#8217;ll see if it doesn&#8217;t lose its appeal in the coming months.</p>
<p>In the meantime, however, it&#8217;s been a blast.  There are literally too many apps out there to try, so I&#8217;ve only had a chance to play with the more popular ones.  Some of my favourites include the <a href="http://allrecipes.com/">AllRecipies dinner spinner</a>, <a href="http://www.wikipanion.net/">Wikipanion</a>, <a href="http://www.restaurantica.com/">Restaurantica</a> (which I&#8217;m surprised isn&#8217;t <a href="http://www.restaurantica.com/blog/restaurantica-iphone-app-coming-soon/157/">promoted more</a> on their website), and of course, <a href="http://www.shazam.com/">Shazam</a>, the accuracy of which continues to amaze me!</p>
<p>But the most useful features for me have been the always-available easy-to-use Internet access and the access to Google Maps overlaid with GPS.  It&#8217;s been invaluable, especially after moving to a new city.  Without it, I&#8217;d literally have been lost more than once.</p>
<p>Despite all the positive features, there are still some sore points.  Firstly, battery life on the 3GS is atrocious, as <a href="http://www.wired.com/gadgetlab/2009/07/iphone3gs-battery-test/">reports</a> have <a href="http://gizmodo.com/5025150/how-to-maximize-your-iphone-3gs-questionably-adequate-battery-life">indicated</a>.  On a full charge, I can barely last two days with moderate data usage, some music playback and hardly any YouTube/video usage.  Be prepared for the daily recharge should you get this phone.</p>
<p>Additionally, being an Apple product the iPhone looks very attractive but is a dirt/dust/fingerprint magnet.  Even with the new oleophobic coating (fancy word for anti-fingerprint) you&#8217;ll still probably want to get a screen protector and case for this device.  I&#8217;ve opted for the <a href="http://www.speckproducts.com/products/pixelskin/iphone-3g/143">Speck PixelSkin</a>, which I believe is one of the better cases out there, as it&#8217;s tough, rigid and adds a nice grip to the iPhone.</p>
<p>Lastly, there are <strong>no good default ringtones</strong> supplied with the iPhone! I don&#8217;t need some fancy pop-music ringtone, I just want something that sounds normal.  Thankfully, a coworker directed me to <a href="http://helderluis.net/297">the perfect iPhone ringtone</a>, and I&#8217;ve since been happy with it.</p>
<p>I&#8217;ll leave you with some comparison pictures of the iPhone 3GS and the iPod Touch 2nd generation.</p>
<p class="image"><a href="http://www.zooomr.com/photos/stygiansonic/8248466/" title="Photo Sharing"><img src="http://static.zooomr.com/images/8248466_b9fd37588a_m.jpg" width="240" height="180" alt="iPhone 3GS vs. iPod Touch 2nd Gen." /></a><a href="http://www.zooomr.com/photos/stygiansonic/8248493/" title="Photo Sharing"><img src="http://static.zooomr.com/images/8248493_a7a0a9ed15_m.jpg" width="240" height="180" alt="iPhone 3GS vs. iPod Touch 2nd Gen." /></a><a href="http://www.zooomr.com/photos/stygiansonic/8248506/" title="Photo Sharing"><img src="http://static.zooomr.com/images/8248506_82f1d2e580_m.jpg" width="240" height="180" alt="iPhone 3GS vs. iPod Touch 2nd Gen." /></a></p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2009/09/28/joining-the-iphone-cult/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting a new pair of shoes &#8211; the Adidas Supernova Glide and Mizuno Wave Alchemy</title>
		<link>http://unitstep.net/blog/2009/04/14/getting-a-new-pair-of-shoes-the-adidas-supernova-glide-and-mizuno-wave-alchemy/</link>
		<comments>http://unitstep.net/blog/2009/04/14/getting-a-new-pair-of-shoes-the-adidas-supernova-glide-and-mizuno-wave-alchemy/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 00:00:37 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[exercise]]></category>
		<category><![CDATA[marathon]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[fitness]]></category>
		<category><![CDATA[shoes]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=859</guid>
		<description><![CDATA[I have had the greatest difficulty in finding a pair of shoes that fit and feel right. I think I can remember back to a time in grade school, bugging my Mom to buy me a pair of shoes that I so badly wanted, only to rarely wear them because they just didn&#8217;t feel right. [...]]]></description>
			<content:encoded><![CDATA[<p class="image align-right"><img src="http://unitstep.net/wordpress/wp-content/uploads/2009/04/adidas-supernova-glide.jpg" alt="adidas-supernova-glide" title="adidas-supernova-glide" width="175" height="141" class="alignnone size-full wp-image-861" /></p>
<p>I have had the greatest difficulty in finding a pair of shoes that fit and feel right.  I think I can remember back to a time in grade school, bugging my Mom to buy me a pair of shoes that I so badly wanted, only to rarely wear them because they just didn&#8217;t feel right.  All in all, I probably have accumulated a closet&#8217;s worth of shoes during my lifetime that just didn&#8217;t get much usage because they didn&#8217;t work for me.</p>
<p>Thus, for me, trying on a pair of shoes at the store and walking around for few minutes just doesn&#8217;t cut it.  I won&#8217;t feel comfortable until the shoes have been &#8220;battle-tested&#8221; for hours&#8230; unfortunately this sort of intense &#8220;try before you buy&#8221; approach doesn&#8217;t work for most types of footwear, because it&#8217;s not fair to the store especially if you&#8217;ve worn the shoes outside.</p>
<h2>Shoe shopping panic</h2>
<p>So you can understand my apprehension when searching for a new pair of shoes.  However, wear and tear on my New Balance 846 shoes was literally reaching the breaking point; the shoes are long since past their prime, having served me well in the <a href="http://unitstep.net/blog/2008/10/05/completed-my-first-marathon/">PEC Marathon last year</a> and through to the training I&#8217;ve been doing this year.  I estimate I&#8217;ve put about 1000 km on them, far more than one should; this put my urgently at need for finding a new pair of shoes.</p>
<p>I first went to <a href="http://www.triandrunsports.com/">Tri &#038; Run Sports</a>, a local store, to find the help I needed.  They first recommended a pair of ASICS shoes that felt good on the treadmill there, but I was skeptical, but their return policy was quite liberal; so as long as you didn&#8217;t run outside with them, you were free to try them out on the treadmill and return them if they didn&#8217;t work for you.  Knowing this, I felt a little more secure.  It usually takes me a run of at least 10 km or so to tell whether I&#8217;ll like a shoe; unfortunately this is obviously not possible nor practical during the buying process, so I was grateful that the store would allow me a grace period to try them out for myself.</p>
<p>However, they turned out to be a disappointment, as they almost immediately caused soreness and pain in my feet after a few minutes of running on the treadmill; I had flashbacks of previous bad shoes I&#8217;d bought. Dismayed, I returned them within the week.  However, the staff at Tri &#038; Run was more than helpful in assisting me to find another pair that would work.  We eventually settled on the <a href="http://www.runnersworld.com/cda/shoefinder_detail/1,,s6-240-325-329-0-0-0-0-1225,00.html">Mizuno Wave Alchemy 7</a>, a stability shoe that would be ideal for an overpronator like myself.  (I use orthotics to deal with this, and without them I wouldn&#8217;t have been able to complete the marathon)</p>
<p>The Mizuno&#8217;s turned out to be much better, and I&#8217;m now running in them every week and feeling fine! I can wholeheartedly recommend Tri &#038; Run sports if you live in the Belleville or Trenton area and need to find a good pair of running shoes, or anything else related to running!</p>
<h2>The need for another pair</h2>
<p>I typically like to have two pairs of running shoes: One for indoor running on the treadmill and one for outdoor running.  Up until now, my old New Balance 846&#8242;s had been serving the role of outdoor running shoe, but as they were beginning to show their age I knew I&#8217;d need to get another pair.  This weekend, SportChek was having a sale, so on a bit of a splurge I decided to pick up a pair of <a href="http://www.shopadidas.com/product/index.jsp?productId=3209236&#038;shopGroup=R&#038;cp=2019627.2039609.2012801.2006445&#038;colorId=">Adidas Supernova Glides</a>, mainly because they looked and felt nice.  I was also sure to ask of the return policy, which was thankfully also very liberal, before I committed to buying. (Also, the New Balance 769&#8242;s that I wanted, weren&#8217;t available in my size!)</p>
<p>I had a chance to try them out on the treadmill this morning, going for a decent 10 km run.  To my surprise, they felt great and I had no initial adjustment problems! This was one of the rare times a shoe has felt this good on the first try; even the Mizuno&#8217;s took a run or two to feel &#8220;great&#8221;.  What surprised me even more is that the Supernova Glide is a &#8220;neutral&#8221; cushioned shoe, not a stability or motion-control one that would be better-suited to my overpronating feet.  However, I believe my orthotics help compensate for this and may be enough, but in the long term this may not be a good idea as the shoes may not offer enough stability or rigidness for my <a href="http://en.wikipedia.org/wiki/Foot_type">foot type</a>.  Only time will tell.</p>
<p>Also unique to this shoe was the <em>FORMOTION</em>-dubbed heel shape of the Supernova Glides.  Basically, the shape of the heel is not flat, it is slightly slanted on the outside part of the heel.  This was interesting because when I look at the <a href="http://www.runnersworld.com/article/0,7120,s6-240-319--12069-0,00.html">wear pattern</a> on the heels of my old shoes, they show the same shape, that is, the outside part of the heel is worn more than the rest.  With the Supernova Glides, the heel already has this shape, so I&#8217;m guessing this will help reduce wear or extend the life of the shoes.</p>
<p>Anyways, I highly recommend you buy your running shoes from a place that will allow you to test them out on the treadmill for a reasonable period of time, anywhere from 2-3 weeks at least.  Battle-testing or trial-by-fire is the only way to go.  However, the true test of these shoes will come when I am forced to take them outside for a 20+ km run&#8230;</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2009/04/14/getting-a-new-pair-of-shoes-the-adidas-supernova-glide-and-mizuno-wave-alchemy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sunset after a Spring shower</title>
		<link>http://unitstep.net/blog/2009/03/30/sunset-after-a-spring-shower/</link>
		<comments>http://unitstep.net/blog/2009/03/30/sunset-after-a-spring-shower/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 04:55:24 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=820</guid>
		<description><![CDATA[Just thought this was an amazing view from my balcony this past Sunday. See more at my Zooomr Photostream Copyright &#169; 2012 unitstep.net. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact [...]]]></description>
			<content:encoded><![CDATA[<p>Just thought this was an amazing view from my balcony this past Sunday.</p>
<p class="image"><a href="http://www.zooomr.com/photos/stygiansonic/7163715/" title="Photo Sharing"><img src="http://static.zooomr.com/images/7163715_b35e21065d.jpg" width="500" height="375" alt="Belleville Sunset after Spring Shower (Vivid)" /></a></p>
<p>See more at my <a href="http://www.zooomr.com/photos/stygiansonic/">Zooomr Photostream</a></p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2009/03/30/sunset-after-a-spring-shower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPod Touch</title>
		<link>http://unitstep.net/blog/2009/02/07/ipod-touch/</link>
		<comments>http://unitstep.net/blog/2009/02/07/ipod-touch/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 23:24:00 +0000</pubDate>
		<dc:creator>Peter Chng</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[asides]]></category>
		<category><![CDATA[toys]]></category>
		<category><![CDATA[unboxing]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[ipod touch]]></category>

		<guid isPermaLink="false">http://unitstep.net/?p=702</guid>
		<description><![CDATA[I finally bit the bullet and got an iPod Touch 16 GB, after months of telling myself I shouldn&#8217;t. And yes, I&#8217;m thoroughly enjoying my new toy. So why did I get an iPod Touch when I could have just got an iPhone for the same upfront cost? A few reasons: I don&#8217;t use my [...]]]></description>
			<content:encoded><![CDATA[<p class="image align-right"><a href="http://www.zooomr.com/photos/stygiansonic/6853340/" title="Photo Sharing"><img src="http://static.zooomr.com/images/6853340_37423bda4a_t.jpg" width="100" height="75" alt="Turned on!" /></a></p>
<p>I finally bit the bullet and got an iPod Touch 16 GB, after months of telling myself I shouldn&#8217;t.  And yes, I&#8217;m thoroughly enjoying my new toy. <img src='http://unitstep.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   So why did I get an iPod Touch when I could have just got an iPhone for the same upfront cost?  A few reasons:</p>
<ul>
<li>I don&#8217;t use my cellphone a lot.  In fact, I&#8217;m on a <a href="/blog/2007/11/14/going-mobile/">pay-as-you-go plan with Virgin Mobile</a> since my cellphone is basically for emergency situations.  I still don&#8217;t like cellphones all that much.</li>
<li>I don&#8217;t want to pay the <a href="http://angryrobot.ca/2008/06/28/iphone-in-canada-the-math-the-outrage">exorbitant monthly fees that carriers in Canada charge</a> to use the iPhone.  Basically, the minimum monthly cost is $60, but this <strong>does not include</strong> the &#8220;System Access Fee&#8221; or essentials such as Caller ID, and adding those brings the total to over $80/month without taxes</li>
</ul>
<p>I don&#8217;t want to turn this into a huge iPhone vs. iPod Touch debate, so let&#8217;s just say I don&#8217;t have the cash for an iPhone subscription at present.  Anyway, here&#8217;s a <a href="http://www.zooomr.com/photos/stygiansonic/sets/43467/">few pictures from the unboxing</a>.  Enjoy!</p>
<p class="image">
<a href="http://www.zooomr.com/photos/stygiansonic/6853326/" title="Photo Sharing"><img src="http://static.zooomr.com/images/6853326_510aa8f7f2_m.jpg" width="240" height="180" alt="iPod Touch 16 GB" /></a><br />
<a href="http://www.zooomr.com/photos/stygiansonic/6853331/" title="Photo Sharing"><img src="http://static.zooomr.com/images/6853331_001d4f076c_m.jpg" width="240" height="180" alt="iPod Touch 16 GB" /></a><br />
<a href="http://www.zooomr.com/photos/stygiansonic/6853334/" title="Photo Sharing"><img src="http://static.zooomr.com/images/6853334_80190e20d5_m.jpg" width="240" height="180" alt="iPod Touch 16 GB" /></a><br />
<a href="http://www.zooomr.com/photos/stygiansonic/6853339/" title="Photo Sharing"><img src="http://static.zooomr.com/images/6853339_z835870778_m.jpg" width="240" height="180" alt="What's included" /></a><br />
<a href="http://www.zooomr.com/photos/stygiansonic/6853340/" title="Photo Sharing"><img src="http://static.zooomr.com/images/6853340_37423bda4a_m.jpg" width="240" height="180" alt="Turned on!" /></a><br />
<a href="http://www.zooomr.com/photos/stygiansonic/6853345/" title="Photo Sharing"><img src="http://static.zooomr.com/images/6853345_a414e7310f_m.jpg" width="240" height="180" alt="Turned on!" /></a><br />
<a href="http://www.zooomr.com/photos/stygiansonic/6853347/" title="Photo Sharing"><img src="http://static.zooomr.com/images/6853347_1a3740c4ed_m.jpg" width="240" height="180" alt="Shiny!" /></a></p>
<hr/>Copyright &copy; 2012 <strong><a href="http://unitstep.net">unitstep.net</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact <strong><a href="mailto:webmaster@unitstep.net">webmaster@unitstep.net</a></strong> for more information.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://unitstep.net/blog/2009/02/07/ipod-touch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

