<?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>Going The Wong Way &#187; Personal</title>
	<atom:link href="http://www.goingthewongway.com/tag/personal/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.goingthewongway.com</link>
	<description>I&#039;m ALWAYS going the Wong way</description>
	<lastBuildDate>Wed, 28 Jul 2010 07:19:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Wavering Importance</title>
		<link>http://www.goingthewongway.com/815/wavering-importance/</link>
		<comments>http://www.goingthewongway.com/815/wavering-importance/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 07:45:11 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[House]]></category>
		<category><![CDATA[Wedding]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=815</guid>
		<description><![CDATA[If it&#8217;s true that the importance that things have wavers according to what else is happening then I guess it just goes to show that this blog didn&#8217;t have a really high place in my heart. While I have been making sure that it&#8217;s still running and checking on it every now and then, I [...]]]></description>
			<content:encoded><![CDATA[<p>If it&#8217;s true that the importance that things have wavers according to what else is happening then I guess it just goes to show that this blog didn&#8217;t have a really high place in my heart.  While I have been making sure that it&#8217;s still running and checking on it every now and then, I have not written a new post in quite awhile.  But now that I am sitting here in my very own house with this ring on my finger I guess that the blog is rising back up.</p>
<p>I sure am glad because I have not had a public place to air my thoughts.  And that means that either I have been keeping it in or even worse I have not been having any interesting thoughts.  I enjoy writing posts that act as a running commentary on interesting thoughts that I have rather than those of a personal nature, but I figured that I needed to break back into this whole blog thing with something easy.  And what is easier than spilling about what has already happened to you?</p>
<p>So that was my way of saying sorry for not writing, but I was busy buying a house and getting married!  But I&#8217;m back!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/815/wavering-importance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Public Restrooms Are Scary</title>
		<link>http://www.goingthewongway.com/736/public-restrooms-are-scary/</link>
		<comments>http://www.goingthewongway.com/736/public-restrooms-are-scary/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 19:16:24 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Nerd]]></category>
		<category><![CDATA[Amusing]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[life in code]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Useful]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=736</guid>
		<description><![CDATA[# use_public_toilet.py # # Algorithm for using a public toilet. Success will vary based on the # toilet/situation (obviously). However, this seems to be a generally safe # way to approach using a toilet. # # Handles both male and female needs as well as exceptional cases such as # no available toilet, getting dirty, [...]]]></description>
			<content:encoded><![CDATA[<pre>
<span style="color: green; font-style: italic"># use_public_toilet.py
#
# Algorithm for using a public toilet.  Success will vary based on the
# toilet/situation (obviously).  However, this seems to be a generally safe
# way to approach using a toilet.
#
# Handles both male and female needs as well as exceptional cases such as
# no available toilet, getting dirty, and entering the wrong gender's
# bathroom.
#
# Algorithm is roughly:
# 1) Enter bathroom
# 2) Find suitable toilet
# 3) Protect yourself if it's a stall toilet that you sit on
# 4) Do your business
# 5) Finish up

</span><span style="color: blue; font-weight: bold">import </span>common_sense

<span style="color: green; font-style: italic"># Sometimes even nature's calling cannot overrule common sense
# Including when you walk into the wrong bathroom
</span><span style="color: blue; font-weight: bold">if </span><span style="font-weight: bold">(</span>bathroom<span style="font-weight: bold">.</span>is_disgusting <span style="color: blue; font-weight: bold">or </span>bathroom<span style="font-weight: bold">.</span>is_dangerous
    <span style="color: blue; font-weight: bold">or </span>bathroom<span style="font-weight: bold">.</span>gender <span style="font-weight: bold">!= </span>you<span style="font-weight: bold">.</span>gender<span style="font-weight: bold">):
    </span>you<span style="font-weight: bold">.</span>hold<span style="font-weight: bold">(</span><span style="color: red">'your waste'</span><span style="font-weight: bold">)
    </span><span style="color: blue; font-weight: bold">return </span><span style="color: green; font-style: italic"># (i.e., get out of there!)

</span>my_toilet <span style="font-weight: bold">= </span><span style="color: blue">None
</span><span style="color: green; font-style: italic"># Only male urinaters get to use the urinals, at least in the common case
# (Abnormal cases are unhandled here)
</span><span style="color: blue; font-weight: bold">if </span>you<span style="font-weight: bold">.</span>need<span style="font-weight: bold">() == </span><span style="color: red">'urinate' </span><span style="color: blue; font-weight: bold">and </span>you<span style="font-weight: bold">.</span>gender <span style="font-weight: bold">== </span><span style="color: red">'male'</span><span style="font-weight: bold">:
    </span><span style="color: blue; font-weight: bold">for </span>urinal <span style="color: blue; font-weight: bold">in </span>bathroom<span style="font-weight: bold">.</span>urinals<span style="font-weight: bold">:
        </span><span style="color: blue; font-weight: bold">if not </span>urinal<span style="font-weight: bold">.</span>empty<span style="font-weight: bold">:
            </span><span style="color: blue; font-weight: bold">continue
        </span>my_toilet <span style="font-weight: bold">= </span>urinal

<span style="color: green; font-style: italic"># If you are not a male urinating or there is no urinal available
</span><span style="color: blue; font-weight: bold">if </span>my_toilet <span style="color: blue; font-weight: bold">is </span><span style="color: blue">None</span><span style="font-weight: bold">:
    </span><span style="color: green; font-style: italic"># Time to look for the stall
    </span><span style="color: blue; font-weight: bold">for </span>stall <span style="color: blue; font-weight: bold">in </span>bathroom<span style="font-weight: bold">.</span>stalls<span style="font-weight: bold">:
        </span><span style="color: green; font-style: italic"># Use an empty toilet that can also be initialized to a clean state
        </span><span style="color: blue; font-weight: bold">if not </span>stall<span style="font-weight: bold">.</span>empty <span style="color: blue; font-weight: bold">or </span><span style="font-weight: bold">(</span><span style="color: blue; font-weight: bold">not </span>toilet<span style="font-weight: bold">.</span>clean <span style="color: blue; font-weight: bold">and not </span>toilet<span style="font-weight: bold">.</span>works<span style="font-weight: bold">):
            </span><span style="color: blue; font-weight: bold">continue
        </span>you<span style="font-weight: bold">.</span>enter<span style="font-weight: bold">(</span><span style="color: red">'Stall %s' </span><span style="font-weight: bold">% </span>stall<span style="font-weight: bold">)
        </span>my_toilet <span style="font-weight: bold">= </span>stall
        <span style="color: blue; font-weight: bold">break
    else</span><span style="font-weight: bold">:
        </span><span style="color: green; font-style: italic"># You could not find a suitable stall to use
        </span><span style="color: blue; font-weight: bold">return

    </span>you<span style="font-weight: bold">.</span>wipe<span style="font-weight: bold">(</span><span style="color: red">'toilet seat'</span><span style="font-weight: bold">)
    </span>you<span style="font-weight: bold">.</span>put<span style="font-weight: bold">(</span><span style="color: red">'toilet seat cover'</span><span style="font-weight: bold">)
    </span><span style="color: blue; font-weight: bold">while not </span>toilet<span style="font-weight: bold">.</span>seat_covered<span style="font-weight: bold">():
        </span>you<span style="font-weight: bold">.</span>put<span style="font-weight: bold">(</span><span style="color: red">'toilet paper'</span><span style="font-weight: bold">)

</span><span style="color: green; font-style: italic"># Finally the time has come to get down to business
</span><span style="color: blue; font-weight: bold">try</span><span style="font-weight: bold">:
    </span>you<span style="font-weight: bold">.</span>sit<span style="font-weight: bold">()
    </span>you<span style="font-weight: bold">.</span>do_your_business<span style="font-weight: bold">()
</span><span style="color: blue; font-weight: bold">except </span>TouchDirtyException<span style="font-weight: bold">:   </span><span style="color: green; font-style: italic"># Don't touch the toilet!
    </span>you<span style="font-weight: bold">.</span>cry<span style="font-weight: bold">()

</span>you<span style="font-weight: bold">.</span>flush<span style="font-weight: bold">(</span>my_toilet<span style="font-weight: bold">)
</span>you<span style="font-weight: bold">.</span>wash_hands<span style="font-weight: bold">()
</span>you<span style="font-weight: bold">.</span>leave<span style="font-weight: bold">()
</span><span style="color: blue; font-weight: bold">if </span>you<span style="font-weight: bold">.</span>satisfied<span style="font-weight: bold">:             </span><span style="color: green; font-style: italic"># Be happy, you're done
    </span>you<span style="font-weight: bold">.</span>smile<span style="font-weight: bold">()

</span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/736/public-restrooms-are-scary/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Barefoot Running</title>
		<link>http://www.goingthewongway.com/631/barefoot-running/</link>
		<comments>http://www.goingthewongway.com/631/barefoot-running/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 07:10:25 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Exercise]]></category>
		<category><![CDATA[Idea]]></category>
		<category><![CDATA[Learn]]></category>
		<category><![CDATA[Read-It]]></category>
		<category><![CDATA[Seen-Around]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=631</guid>
		<description><![CDATA[That title probably gets your attention. As is common knowledge, we need shoes in order to run. Running barefoot is impossible to comprehend. Except&#8230;it&#8217;s not. There are so many reasons that I have found that compel me to run barefoot. And I figured that now would be a good time to post them here. I [...]]]></description>
			<content:encoded><![CDATA[<p>That title probably gets your attention.  As is common knowledge, we need shoes in order to run.  Running barefoot is impossible to comprehend.  Except&#8230;it&#8217;s not.  There are so many reasons that I have found that compel me to run barefoot.  And I figured that now would be a good time to post them here.  </p>
<p>I have been running barefoot for over 9 months now.  I started off running a few blocks, and I have progressed to now run a few miles a couple of times each week.  Yes, it will sometimes be briefly uncomfortable when I step on a pebble, but it is usually gone in the next step.  However for most people the thought of pain is enough to prevent them from ever trying to run barefoot.  On the other hand, just because I run on the street does not mean that everyone has to.  <div class="wp-caption alignright" style="width: 250px"><a href="http://www.flickr.com/photos/gtww/3706453438/"><img alt="Yep, thats mine" src="http://farm3.static.flickr.com/2554/3706453438_b247aaa513_m.jpg" title="Bare Foot" width="240" height="180" /></a><p class="wp-caption-text">Yep, that&#39;s mine</p></div>Running on sand or grass would definitely be more comfortable, but it&#8217;s really not that bad running on the pavement (in my opinion).  I believe that running barefoot is better, and I want my behavior to be in accordance with my beliefs.</p>
<ul>
<li>I was <strong>not born</strong> with shoes.  (Of course I also wasn&#8217;t born with clothes, but clothes don&#8217;t injure me.  If they did, I wouldn&#8217;t wear those either.)</li>
<li><strong>Injuries increase with the price</strong> of the shoes according to surveys from runners.</li>
<li>It&#8217;s recommended (by pediatricians) that <strong>young children be allowed to walk around barefoot</strong> so that they can develop their feet.  There must be something there, right?</li>
<li>By the laws of <strong>physics</strong> the force of each step when running has to be translated and absorved somewhere.  Running sure isn&#8217;t hurting your feet.  Where does that leave?  Perhaps the knees and hips?</li>
<li>Tough and hardened feet are much more <strong>useful</strong> than soft tender feet.  Soft feet are nice to the touch, but they can&#8217;t nearly do what used feet can do.  If you had to run away from danger, you can&#8217;t exactly stop to put on your shoes.</li>
<li>Without the artificial support of shoes, your feet need to balance and adapt.  That is, the <strong>muscles and tendons in your feet will get stronger</strong>.  It&#8217;s similar to why it&#8217;s excellent to do exercises without artificial support.  You need to balance while also performing the task at hand.  And that will make you stronger and strengthen the entire structure.</li>
<li>There sure are a lot of people from <strong>other countries</strong> that are awesome runners without the need for shoes.  Have you ever thought about that?  Not only are they awesome, but they have lower incidence of injury.  Just because I wasn&#8217;t born in a culture like that does not mean that I cannot become like that!</li>
<li>I stand for <strong>freedom</strong>!.  I always have, I always will.  But it is a different kind of freedom that I feel when I&#8217;m running barefoot.  It kind of makes me feel like a little kid, and I love that.</li>
<li>The arch is one of the strongest structures known to man.  We use it for bridges to hold up amazing amounts of weight.  Have you ever seen an arched bridge have something filling the entire arch?  No.  That&#8217;s because the <strong>arch is strongest when there is nothing filling that gap</strong>.  Surprise, surprise guess where we have an arch.</li>
<li>One of the most important reason to consider running barefoot is that it makes you more <strong>conscious of your running form</strong>.  So while your form might suffer when you&#8217;re running with shod feet, you won&#8217;t modify your behavior because it doesn&#8217;t manifest itself until years of running have beaten your body down.  However you will definitely notice the difference with bare feet.  You will not strike your heel.  You will land on the balls of your feet.  You will be careful of where you go.  You could learn how to run with better form from someone teaching you.  But that doesn&#8217;t mean that you&#8217;re necessarily going to change.  Pain is a much better way to modify your behavior than mere information.  It&#8217;s a reminder every step that you need to run correctly.</li>
</ul>
<p>I run barefoot.  I enjoy it.</p>
<p>References:<br />
<a href="http://www.sportsci.org/jour/0103/mw.htm">SportSci &#8211; Running Barefoot</a><br />
<a href="http://www.dailymail.co.uk/home/moslive/article-1170253/The-painful-truth-trainers-Are-expensive-running-shoes-waste-money.html">The Painful Truth About Trainers</a><br />
<a href="http://barefootrunner.org/">Barefoot Rick</a> &#8211; I enjoyed reading some of his articles and thoughts about running barefoot.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/631/barefoot-running/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Maybe I&#8217;ll Miss That Pit</title>
		<link>http://www.goingthewongway.com/616/maybe-ill-miss-that-pit/</link>
		<comments>http://www.goingthewongway.com/616/maybe-ill-miss-that-pit/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 07:40:28 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Exercise]]></category>
		<category><![CDATA[Seen-Around]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=616</guid>
		<description><![CDATA[After reading The Long Journey From Obesity, I started to realize that I was like the author before she became an obese person. At times I look down on obese people because I think that it is possible for them to lose weight. And while I still do think that it is true for them [...]]]></description>
			<content:encoded><![CDATA[<p>After reading <a href="http://www.boundless.org/2005/articles/a0002060.cfm">The Long Journey From Obesity</a>, I started to realize that I was like the author before she became an obese person.  At times I look down on obese people because I think that it <b>is</b> possible for them to lose weight.  And while I still do think that it is true for them in a lot of cases, I can easily lose sight of the fact that being skinny is not the most important thing.</p>
<p>There are skinny gluttonous people and there are larger fit people.  Size is not of the utmost importance.  It would do me well to remember this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/616/maybe-ill-miss-that-pit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now A Little Fish</title>
		<link>http://www.goingthewongway.com/602/now-a-little-fish/</link>
		<comments>http://www.goingthewongway.com/602/now-a-little-fish/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 08:20:35 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Poetry]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=602</guid>
		<description><![CDATA[I used to be One of the few. Now I am just One of thousands. Whew! A big company means big things Like long processes here and there. They also block Gmail Which doesn&#8217;t seem smart, but I&#8217;m sure that they don&#8217;t care. Other things are great, Company activities abound. Is it somewhere that I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>I used to be<br />
One of the few.<br />
Now I am just<br />
One of thousands.  Whew!</p>
<p>A big company means big things<br />
Like long processes here and there.<br />
They also block Gmail<br />
Which doesn&#8217;t seem smart, but I&#8217;m sure that they don&#8217;t care.</p>
<p>Other things are great,<br />
Company activities abound.<br />
Is it somewhere that I&#8217;ll stay for a long time?<br />
Who knows if that&#8217;s what I&#8217;ve found.</p>
<p>Changes are sometimes good<br />
And it&#8217;s already happened (June first).<br />
So now I&#8217;m off and going<br />
For better or for worse!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/602/now-a-little-fish/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finishing My First Marathon</title>
		<link>http://www.goingthewongway.com/596/finishing-my-first-marathon/</link>
		<comments>http://www.goingthewongway.com/596/finishing-my-first-marathon/#comments</comments>
		<pubDate>Thu, 28 May 2009 08:03:24 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Exercise]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=596</guid>
		<description><![CDATA[So this past Memorial Day, May 25, 2009 I completed the Los Angeles Marathon! 26.2 miles! At one time! I am still a little bit shocked at this turn of events. I have turned from being someone who hated running in high school to someone who enjoyed it as a getaway from the computer lab [...]]]></description>
			<content:encoded><![CDATA[<p>So this past Memorial Day, May 25, 2009 I completed the Los Angeles Marathon!  26.2 miles!  At one time!  I am still a little bit shocked at this turn of events.  I have turned from being someone who hated running in high school to someone who enjoyed it as a getaway from the computer lab in college to someone who runs these kinds of races in their free time.</p>
<p>I do have a few amusing things that I want to jot down for posterity&#8217;s sake:</p>
<h4>The Fundraising</h4>
<p>Initially I was only thinking of what I could get out of running a marathon.  First off I could say that I ran a marathon.  I could learn about myself and what I&#8217;m made of.  And so on and so forth.  But part of the way through the training I decided to run for <a href="http://www.goingthewongway.com/582/team-world-vision/">Team World Vision</a>.  It was rewarding to be able to realize even in the midst of such a solitary sport that I could be doing this for other people.  It was good to get to spread the word a little bit about what World Vision is doing in parts of the world, and it&#8217;s even better to be able to raise funds for a charity that is spreading the love of Jesus Christ in tangible ways to our world.</p>
<p>I&#8217;m still accepting donations so I welcome you to visit <a href="http://www.firstgiving.com/derekwong">my donation page</a> and consider joining with me to support this charity.  And a <b>HUGE</b> thanks to everyone that has already supported me.</p>
<h4>The Toe</h4>
<p>On May 20th, I went to <a href="http://www.costco.com/Home.aspx">Costco</a> to get my tires changed.  Prior to this I had moved one of my existing tires to the spare tire because I had a nail in the sidewall.  Basically this meant that my spare was usable but just barely.  So I asked the tire center at Costco to move one of the existing tires to the spare so that it would be a little more reliable if it ever had to be used.  I asked them if they did it when I picked it up, but I wasn&#8217;t confident that they did it as I had asked them.  So I wanted to check it out for myself when I got home.  As I was pulling the tire out from under my truck, it hit the toenail on my right big toe and separated the nail from the flesh a bit.  I just stared at it because I was in shock.  I had <em>just</em> read a post about <a href="http://lifehacker.com/209645/hack-attack-how-to-hack-a-marathon">hacking a marathon</a> in which Adam Pash of Lifehacker fame briefly mentions messing up his big toe before his first marathon.  I, of course, thought something like that would never happen to me.  But that is also why <a href="http://www.goingthewongway.com/594/i-hate-murphy/">I Hate Murphy</a> (of <a href="http://en.wikipedia.org/wiki/Murphy's_law">Murphy&#8217;s Law</a> fame).  So I&#8217;m staring at my big toe, and blood is starting to come out.  Thankfully I washed up, wrapped it up, and later applied some <a href="http://www.newskinproducts.com/liquid-bandage.htm">liquid bandage</a> that took care of weather-sealing the wound.  While it could have been pretty horrible, it all turned out alright.  In fact it was the least of my worries during the actual running.  On the other hand it did make the days leading up to the marathon more stressful!</p>
<h4>The Mob</h4>
<p>I made the mistake (<b>again!</b>) of starting off further back in the full field.  That meant that there were a lot of people in front of me that were going to be running (or even walking!) slower than me.  So I had to weave in and out for the first 6 miles at least.  Stupid urge to urinate right before the start even though I had done so at Union Station a half hour earlier!</p>
<h4>The Band</h4>
<p>Yes, my Iliotibial Band started to hurt.  This is the same injury that I experienced when I ran my half marathon.  And all of this, I am guessing, happened because I was not paying attention to my form at all in the beginning while running through the crowd.  I started to feel the effects of it near mile 10, but it didn&#8217;t actually start to hurt until perhaps mile 15 or 16.</p>
<h4>The Wall</h4>
<p>Initially I did not think that I <a href="http://marathonandbeyond.com/choices/latta.htm">hit The Wall</a>.  But now that I&#8217;m thinking back about what happened in the last 6 or 7 miles of the race, I might have to change my answer.  Reasons why I might have hit The Wall after all:</p>
<ol>
<li>Hallucination &#8211; I thought that a mile marker was coming up.  Then I looked up again, and it was nowhere in sight.</li>
<li>Forgetfulness &#8211; I lost track of what mile I was on near mile 24.  Or was that mile 23&#8230;</li>
<li>Dead tired &#8211; Usually I fancy myself strong of mind.  But there were quite a few points where I could <b>not</b> psych myself up to start running.  I just felt like I was stuck.</li>
<li>Focus &#8211; It was near impossible to think about anything else except for finishing.  I could not multi-task with my brain.</li>
</ol>
<p>Yes it sucked a lot.  And no you have no idea what it feels like unless you experience it.  Everyone should.  <img src='http://www.goingthewongway.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4>The Pace</h4>
<p>I started off on great pace to finish in 4 hours.  That would been extremely ideal.  However I started to peter off as the race went on such that I eventually was trying to struggle to complete in 4:15.  And that didn&#8217;t even happen.  Thankfully I did finish under my overall goal of under 4:30.</p>
<h4>The Near Fight</h4>
<p>Generally people in and around a marathon are going to be pleasant and full of good cheer.  But as I was running I noticed that there was a middle aged Causasian male runner who was getting into it a little bit with a young Hispanic male on a bike.  I didn&#8217;t see what happened, but they were talking as if I was about to see some fisticuffs right there.  My guess is that someone ran into someone else, which almost caused a much more devastating accident.  I steered clear of them and picked up my pace to get away!</p>
<h4>The Stairs</h4>
<p>After running a marathon, take my word and walk down stairs backwards.  I look dumb, I know.  But it feels worlds better than walking down like a normal person.</p>
<h4>The Day(s) After</h4>
<p>Take it off from work if at all possible.  Luckily this is possible for me.  I was tremendously sore from head to toe.  The soreness ranged from my shoulders and back to my entire legs and even my foot!  In fact every step that I took with my left foot felt like there was a ball underneath it.  Imagine my surprise at discovering this when I got up in the middle of the night to go to the bathroom!  The day immediately following the marathon was definitely one of the most sore days of my life.  I was hobbling around like a crippled old man.</p>
<h3>Conclusion</h3>
<p>So there you have some of my thoughts.  I hope that you enjoyed them (if you read them).  If you just skipped them, that&#8217;s fine as well.  It&#8217;s your loss.  <img src='http://www.goingthewongway.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I definitely do not regret doing the marathon.  It did indeed teach me about myself, and the whole experience is something that will have forever changed me.  Doing one is completely different than hearing about it from others.  Will I do another?  Who knows.  A guy that I chatted with a little bit before the start encouraged me to not be someone who is &#8220;one and done.&#8221;  It took a lot of time to train for it, and I was still definitely feeling the effects of doing such an extreme thing.  But considering all that I learned, and all of the health benefits that I received I would count it as something well worthwhile.</p>
<p>Oh and if you&#8217;re wondering, here are my <a href="http://results.active.com/pages/oneResult.jsp?pID=59611336&#038;rsID=78608">official results</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/596/finishing-my-first-marathon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Team World Vision</title>
		<link>http://www.goingthewongway.com/582/team-world-vision/</link>
		<comments>http://www.goingthewongway.com/582/team-world-vision/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 08:20:26 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Christianity]]></category>
		<category><![CDATA[Exercise]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=582</guid>
		<description><![CDATA[Finishing a marathon is pretty good right? Well what about finishing it and getting to help a worthy cause? That is even better! I was talking with a friend today, and she suggested that it would be a good idea to raise money for a charity since I have been doing all of this training [...]]]></description>
			<content:encoded><![CDATA[<p>Finishing a <a href="http://www.goingthewongway.com/513/marathon/">marathon</a> is pretty good right?  Well what about finishing it and getting to help a worthy cause?  That is even better!  I was talking with a friend today, and she suggested that it would be a good idea to raise money for a charity since I have been doing all of this training already.  After I thought about it, I realized that it made a lot of sense.  People seem to be willing to help out since they can see that it is something that I would care about.</p>
<p>I looked at a number of very worthy charities before I decided that I wanted to be a part of <a href="http://www.worldvision.org/content.nsf/getinvolved/teamwv">Team World Vision</a>.  </p>
<p>From their website:</p>
<blockquote><p>World Vision is a Christian humanitarian charity organization dedicated to working with children, families, and their communities worldwide to reach their full potential by tackling the causes of poverty and injustice.</p></blockquote>
<p>If you are interested in joining with me to donate to a worthy cause, please visit my fundraising page:</p>
<p><b><a href="http://www.firstgiving.com/derekwong">Derek&#8217;s fundraising page</a></b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/582/team-world-vision/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chaffing, Cracks And Other Fun</title>
		<link>http://www.goingthewongway.com/566/chaffing-cracks-and-other-fun/</link>
		<comments>http://www.goingthewongway.com/566/chaffing-cracks-and-other-fun/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 20:16:14 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Exercise]]></category>
		<category><![CDATA[Seen-Around]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=566</guid>
		<description><![CDATA[Yep, I am still training for my marathon. Some lessons that I have been learning: You are very likely under the impression that cotton is a glorious and soft fabric. But let me tell you that 15 miles can dictate otherwise. Chaffing is real, people. And it&#8217;s dangerous. It is just crazy how such a [...]]]></description>
			<content:encoded><![CDATA[<p>Yep, I am still training for my <a href="http://www.goingthewongway.com/2009/02/03/marathon/">marathon</a>.  Some lessons that I have been learning:</p>
<ul>
<li>You are very likely under the impression that cotton is a glorious and soft fabric.  But let me tell you that 15 miles can dictate otherwise.  <b>Chaffing is real, people.  And it&#8217;s dangerous.</b>  It is just crazy how such a small discomfort can completely occupy your mind.  It is a nice reminder to get yourself set up completely before setting out.  So beware for certain parts of your body.  Personally it happens with my crotch and nipples.  Is that too much information?  Haha TOO BAD! <img src='http://www.goingthewongway.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
<li>Seriously?  <b>Cracks in the sidewalk</b>?  In fact yes.  I thought it ludicrous to even consider them.  How hard is it to just watch where you&#8217;re running?  If there&#8217;s a crack, don&#8217;t trip on it.  It&#8217;s obvious, it&#8217;s simple.  And I failed.  Yes, that is correct.  I was running a while ago, and I was paying attention to the jacket that I was holding in my hand.  Next thing I knew, I was stumbling and nearly on my face.  Thanks to the amazing reflexes that God placed in me, I was able to remain upright.  Really, I couldn&#8217;t believe that I didn&#8217;t eat some cement right there.  A passing truck saw and slowed down, but continued on their way once they saw that I had not even fallen down.  I counted my lucky stars and was thankful (once again) for reflexes that are faster than I can say, &#8220;Oh no!&#8221;</li>
<li>Running along major streets leads to some interesting scenarios.  People driving by can be placed into a few categories:
<ol>
<li><b>Haters</b> &#8211; They will try their very hardest to scare me with honks and shouts.  Usually they&#8217;re in high school, and they have so little in their life to be excited about that the best thing to happen to them would be to see others suffer.  Pretty much they&#8217;re retarded.</li>
<li><b>Encouragers</b> &#8211; When passing they either honk in a more friendly way or yell out encouragement.  I appreciate that, and I think that&#8217;s right kind of them.</li>
<li><b>Leerers</b> &#8211; This probably happens much more to girls, but there are definitely those that will make comments that are somewhat lascivious.  As a guy, I actually think that it&#8217;s awesome to get that.  Haha don&#8217;t judge me.  A girl yelled, &#8220;Sexy!&#8221; when I was running without a shirt a little while back.  Why didn&#8217;t I have a shirt on?  Because I can!  Well that&#8217;s only partly true.  It was also pretty hot and&#8230; see the point about chaffing.</li>
</ol>
</li>
</ul>
<p>If you so desire, you can see my <a href="http://spreadsheets.google.com/pub?key=paQawpLdPpn-M47OHMSL-GA">LA Marathon 2009 training log</a> for yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/566/chaffing-cracks-and-other-fun/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Marathon Training And Then Some</title>
		<link>http://www.goingthewongway.com/559/marathon-training-and-then-some/</link>
		<comments>http://www.goingthewongway.com/559/marathon-training-and-then-some/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 08:20:40 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Exercise]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=559</guid>
		<description><![CDATA[So lately when people have asked me what has been going on, it&#8217;s pretty much been work (which is obviously going to be every weekday) and training for the 2009 Los Angeles Marathon. I decided to sign up for it a little while back, and now is as good of a time as any for [...]]]></description>
			<content:encoded><![CDATA[<p>So lately when people have asked me what has been going on, it&#8217;s pretty much been work (which is obviously going to be every weekday) and training for the 2009 Los Angeles Marathon.  I decided to <a href="http://www.goingthewongway.com/2009/02/03/marathon/">sign up for it</a> a little while back, and now is as good of a time as any for a little update.</p>
<p>While training for the <a href="http://www.goingthewongway.com/2008/10/15/half-marathon/">half marathon</a> was a good introduction, it wasn&#8217;t nearly as intense.  The thing about marathons is that they are known to be much more difficult to do without training.  A half marathon (at 13.1 miles) is daunting, but it is still doable without too much training.  But with 26.2 miles, there is the very real chance of &#8220;hitting the wall&#8221; (where the energy is depleted from the runner&#8217;s system leaving little left to continue on).  And there are even some very well-publicized cases of people dying during a marathon.  I want to train so that those things will not happen to me!</p>
<p>I have definitely found out that something that you do not get right away is how much of a commitment this is.  Training takes a large amount of time!  I am on week 10 (out of 16 weeks) of my training, and I am running about 25-30 miles weekly.  Holy moly!  All of that training consists of an average of 45 minutes for the non-long runs and upwards of 3 hours (so far) for my long runs.  I have a single long run each week that comprises less than half of my weekly mileage.  And both my long runs and my weekly mileage will (and should) continue to increase.  All told, I am spending a significant portion of my time on this.</p>
<p>What have I learned from training thus far?</p>
<ul>
<li>A commitment to exercise and health is life-changing.  And not easy.</li>
<li>Perseverance and the power of the mind is key.</li>
<li>Having a goal and training for it is an <b>excellent</b> way to lose weight.  I was not even looking to do it, but it just happens!</li>
<li>
<blockquote>I don&#8217;t know if running adds years to your life, but it definitely adds life to your years.<br />
[<a href="http://www.runnersworld.com/article/0,7120,s6-238-244--12968-6-1X2X3X4X5-6,00.html">Runner's World Article (Page 6)</a>]</p></blockquote>
</li>
<li>Running, amazingly enough, can be enjoyable.  (It can also be torturous!)</li>
<li> It is definitely nice finding out that I am not dependent on my car.  I can in fact go to the supermarket or the bank without it, if I so desire.  This week I will also see what it feels like to commute from work to home using my running shoes.</li>
</ul>
<p>I am not nearly done yet.  I will not be until I cross that glorious finish line.  However I can say that I am registered.  And that is either a cause for me to commend myself or ask what in the world have I gotten myself into.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/559/marathon-training-and-then-some/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Middle Names</title>
		<link>http://www.goingthewongway.com/450/middle-names/</link>
		<comments>http://www.goingthewongway.com/450/middle-names/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 08:10:32 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.goingthewongway.com/?p=450</guid>
		<description><![CDATA[We use names in order to identify people. Names are different according to our culture. Sometimes the family name is given more weight. Other cultures will have names that have a much stronger tie to what the person is like (e.g., Dashing Wind). And I am sure that there are many other uses for names [...]]]></description>
			<content:encoded><![CDATA[<p>We use names in order to identify people.  Names are different according to our culture.  Sometimes the family name is given more weight.  Other cultures will have names that have a much stronger tie to what the person is like (e.g., Dashing Wind).  And I am sure that there are many other uses for names that I don&#8217;t know about.</p>
<p>Here in America people often have middle names.  We especially like to use the middle initial in order to make our name more unique.  But our middle name is usually kept to ourselves.  Or perhaps it&#8217;s just left to those times when our parents are exceptionally angry with us.  There&#8217;s nothing like having your full name yelled to let you know that it&#8217;s time to do something right.</p>
<p>In any case I have found myself over the years enjoying learning what people&#8217;s middle names are.  After thinking about why this might be so, I have realized that it&#8217;s probably because it usually <em>is</em> secret.  I like knowing secrets.  Doesn&#8217;t everyone?  Middle names in particular make me feel that I am getting the chance to know people better because I have discovered something that so many other people don&#8217;t even take the time to find out.  It creates an instant connection with them.</p>
<p>To top it all off, middle names can often be unique.  And that can lead to amusing situations, indeed.</p>
<p>Middle names win.  Sharing is caring.  Ugh that&#8217;s so cliche, huh?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goingthewongway.com/450/middle-names/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
