Skip to main content

I've never liked running....

I've never been a fan of long distance running*, but it's about as evolutionary an activity as you can choose for exercise. It's interesting to think that a million years ago, some human was running across the steppe, endurance hunting an animal. I, on the other hand, spend my running days in a constant battle with myself. As soon as I start running hard, my inner voice starts asking me what the hell I'm doing. Why don't you just stop? It'll feel so much better. Are you a masochist? Maybe you're tired today. You can do it next time. Well, putting it off till next time is a cop-out, and running is actually a decent metric for aerobic improvement.

So, after finishing my strength circuit today, I decided to run a time-trial mile on the treadmill (always at 1% incline, to best simulate running outside). I cut 45 seconds off my previous fastest mile, run last summer in a gym in Tokyo. I felt like I was going to die at the end. But I guess the training is starting to pay off.

*Sprinting, on the other hand, I find incredibly interesting. Expending a maximum amount of energy in 10-20 seconds to traverse the land as fast as humanly possible is just so uber cool. Still waiting for my stopwatch from Amazon, which means the sprinting trials will have to wait till after my vacation. Anyone successfully stay in shape while on a two-week vacation?

Comments

  1. This comment has been removed by the author.

    ReplyDelete
  2. No one stays in shape while on vacation :-) Folks say you start losing fitness at about a week of not working out. Enjoy your vacation tho!

    ReplyDelete
  3. I worked out 11 times out of 14 days of vacation! =)

    ReplyDelete

Post a Comment

Popular posts from this blog

Why Korean Is Hard For Native English Speakers

A couple of days ago, as an experiment, I wrote my first blog post ever in a non-English language . It was an attempt to explain some of the reasons that Korean is hard to learn for native English speakers, so I figured I might as well try to write it in Korean. Those of you who actually read Korean can see how awkward the attempt was =). In any case, the post came from an email conversation I had with The Korean from  Ask a Korean , a fantastically well-written blog about all things Korea from the perspective of a Korean who moved to the United States during high school. Since I tend to geek out on language things, I figured I might as well post part of that conversation. An edited version follows. --------- Out of the languages that I've attempted to learn so far, Korean has been the hardest. I've done a lot of meta thinking about learning Korean, and I think there are a number of reasons it's difficult for non-Koreans (and especially Westerners) to learn: 1) Obvi...

10 other things South Korea does better than anywhere else

Recently this article about 10 things that South Korea does better than anywhere else  has been making the rounds on social media, but when I first read it, I couldn't tell if it was sincere or satire. A few of the items on the list are not very positive, such as "overworking" and "using credit cards". So, I thought I would try to put together a better list. Here are 10 other things South Korea does better than anywhere else: 1) Small side dishes, a.k.a. " banchan " (반찬) Banchan are by far my favorite aspect of Korean cuisine. Rather than the "appetizer and main dish" approach of the West, a Korean meal is essentially built around small dishes. Even a 5,000 won (about $5 USD) meal at a mall food court will come with two to four banchan in addition to the "main", and often people will actually choose restaurants based  on the banchan (e.g., seolleongtang , or beef bone broth soup, places tend to have the tastiest kimchi). Ther...

Pushing Python Performance With Parallelization

TL;DR: For certain types of programs, you can take advantage of idiosyncrasies in the Python interpreter and the host operating system to create real shared memory between processes and get some pretty good parallelization. Premature optimization is the root of all evil. As a developer, you've probably heard this before, and what it means basically is that you shouldn't waste time optimizing code unless it's already doing what you want it to do. We also live in an era of seemingly unlimited resources with AWS/Google Compute, and often the easiest way to get higher throughput in your programs or service is just to pay for more instances. But sometimes it's fun to see what sort of performance we can get on a simple laptop (and save some cash at the same time). So anyway ... I've been working on this thing, and it took too damn long to run, and I needed to run it lots and lots of times ... so, it was time to optimize. Basic optimization has two main steps: 1) P...