It's funny how restarting something you've done before can be new ground...
I transitioned to running and walking barefoot and in Vibram FiveFingers last summer and am familiar with that process. Getting back into it, however, is new to me.
I just got back from run 2 of week 5. My goal is to do my mid-week runs on Tuesday and Thursday night, but that hasn't been working as well for me as I'd like. Oh well, better a day late that skipped.
According to the Weather Network, it's 5C/41F outside. Perfect for me. It was a 5 minute warm up walk followed by 8 intervals of 2 minutes run, 1 minute walk, and then finished off with a 5 minute cool down walk before stretching. I carried my pair of black Treks in my hands expecting to slip them on after an interval or two when my feet started hurting or get too cold. I ended up carrying them the entire time!
It was another brutal run for me, effort wise. I felt sluggish and tired for almost the entire time. The hills are particularly hard on me this year. Either I'm pushing myself harder this year, or I've fallen further than I thought from my peak. In either case, this is the tough period. I'm looking forward to it getting easy again like it was near the end of last year. I'm also looking forward to doing it at a faster pace than last year.
In addition to easing back into running in general, I guess the only other thing I need to watch for is how much skin I'm wearing off. Now it's time for a shower and thorough foot scrubbing before crawling into bed for the night. Hope my feet are still happy when I wake up.
Wednesday, March 10, 2010
First Barefoot Run of 2010
Posted by Ryan Graham at 8:45 p.m. 1 comments
Labels: barefoot, FiveFingers, running
Tuesday, March 9, 2010
First Barefooting of 2010
Nothing big, just a quick trip down the block to put a letter in the mail. The ground and air were the perfect temperature for me. Overcast, 7C (45F).
The biggest surprise to me was how natural it felt after wearing shoes (well, FiveFingers) for the last 5 or 6 months. I expected it to feel like the first time, with my feet overly sensitive and my gait feeling awkward. Seems my feet didn't go back to sleep like after the first twenty-something years of wearing shoes and there was no sensitivity problems. As for my gait, I'm giving the credit to Vibram for the design of their FiveFingers line of "shoes".
I'd been dreading the re-conditioning I'd have to do in order to add barefoot running to my Sun Run training, but not so much now. Things are looking up in barefoot land.
Posted by Ryan Graham at 11:55 p.m. 0 comments
Labels: barefoot, FiveFingers, running
Monday, March 8, 2010
Not Quite Barefoot
My group run on Sunday was brutal, but it shouldn't have been.
We started by walking up a not so short hill and then proceeded to run 9 intervals of 3 minutes running, 1 minute walking. This should not have been so hard. In fact, it normally wouldn't have been. But we had special guests. The UBC race-walk team. We had them come with us last year, and it had the same effect.
It seems being in the presence of people who walk 20km in less than 90 minutes makes some people run faster. Did I mention these are world class athletes? Ya, as in half of the top 5 fastest men and women in Canada. People who hold current national and continental records for race walking... But I digress.
What made this run so brutal was actually the pace at which we walked up that first hill. I'm prone to shin splints. I had a problem with them during last year's training, but my switch to VFF/barefoot running after the Sun Run made them a thing of the past. But walking with any speed over any distance has always triggered them for me (and probably always will). And it did, with a vengeance.
So I started my first run interval up hill, with shin splints, and at a pace that wasn't maintainable. The result? I was limping by the 5th interval and ended up walking through the 6th running interval. During this time I went from the front of the group of 70+ runners to the back. My cardio was not the problem, it was the pain, which lead to total mental failure. I knew it was a mental limitation, and that's the only reason I was able to force myself to run the last 3 intervals.
Our route was shorter than the intervals so we ended up running our last interval on the track and then cooling down by walking around the track. It was at this point I decided my Treks were too warm and took them off. I felt almost immediate relief! I was truly shocked. I didn't even know my feet were being constrained by my FiveFingers and had actually tightened up. My feet immediately spread out over the cold track and released all their tension. It felt so good, in fact, that I actually ran a short bit even though I was supposed to be doing a cool down walk.
I already knew from experience that VFFs were not the same as going barefoot, but I'm going to have to seriously reconsider where on the curve they actually are. I think I'll start by incorporating some barefoot warm up at the start of or before my run.
Posted by Ryan Graham at 11:55 p.m. 2 comments
Sunday, March 7, 2010
jQuery Plugins
It may not look like it from my other blog entries, but I really am a programmer.
Lately I've been working a lot with CouchDB as both a database and an application server. As part of getting up to speed, I've jumped into JavaScript. Somewhere along the way I found jQuery and ended up writing a plugin.
Since I'm such a perfectionist and because I'd armed myself with some knowledge of JavaScript's good parts, I wasn't 100% satisfied with the way some jQuery plugins were written.
Below is my take on a jQuery plugin template. You can see it in action in my autoExpandingList plugin (demo). I'll probably put it on GitHub eventually, but for now it's on jsbin (great tool, by the way).
/**
* jQuery.PLUGINNAME
*
* @author YOUR NAME
*
* NOTES/DESCRIPTION
*
*/
"use strict";
(function ($) {
$.fn.pluginName = $.fn.pluginName || (function () {
var defaults = {
//Default configuration
};
// Utility functions that you use inside your plugin that
// don't rely on per-invocation closures should go here.
// This is also a good place to keep track of any global
// state information that your individual plugin instances
// may want to make use of.
// This is your plugin function, what people will call
// with $("li").pluginName(...);
return function (settings) {
// Settings are cached per selector/invocation,
// not per affected element. This is a bit of a memory optimization.
// If you need/want your settings to be per element,
// just move this line to inside the each() below.
settings = $.extend({}, defaults, settings);
this.each(function () {
//Cache 'this' because it may change with scope,
// depending on what you do below.
var that = this;
/* Insert your special sauce here.
* Perform your operations on 'this' or 'that'
*and it will affect each element in the selector.
*/
});
// This is important in jQuery land.
// It allows chaining. Even if you don't make use of chaining,
// people using your plugin may.
return this;
};
}());
}(jQuery)); //Pass in the jQuery object by name in case $ is used
Some other things that I found to make things better were JSLint (which the above template passes) and js-beautify (which was used to format the above).
js-beautify had a small bug where it would make things ugly if you were using an empty object literal (
$.extend({}, defaults, settings)'
), but a one-liner patch was all it took to clear that up and I've already submitted it and had it applied, so it's ready for you to use!I've also been teaching myself Python, so maybe I'll have some posts on that in the future as well. And maybe some thoughts on CouchDB.
Posted by Ryan Graham at 11:55 p.m. 0 comments
Labels: JavaScript, jQuery, programming, work
Saturday, March 6, 2010
Barefoot Followup
So it's been a little while since I talked about my barefoot adventures. I've come to a few conclusions.
Being barefoot is awesome, but having to carry shoes around for when public transit officials tell me I can't ride the train barefoot is a pain in the [expletive].
Vibram FiveFingers are very comfortable as an all-day, everywhere shoe and attract far more positive attention and next to no negative attention.
As you can imagine, FiveFingers are what I've been wearing lately. I managed to go a solid few months barefoot and my feet were getting quite tough. There were very few surfaces that I found uncomfortable, and none that I walked on regularly.
For my Sun Run training I've been running in my new FiveFinger Treks. I find the sole to be a little thick for my liking, but I love the leather they used for the rest of the shoe. I took a long break from running barefoot and pseudo-barefoot because it didn't feel right. I did some more research while I took my break and found I'd ignored one really important point.
Relax. Seriously, let your legs from the knee down go almost limp. Don't try to position your foot so you land on your forefoot. That was my mistake. If your knees are bent enough, your foot will land forefoot first. Let your feet relax too. If they are tense, you'll hurt yourself.
In other barefoot related news, I've finally converted my wife! Partially, at least. She's now wearing her own pair of FiveFinger KSOs and enjoying them. I've been watching closely to make sure she doesn't repeat any of my mistakes, like starting off too aggressively or running wrong.
Since I'm not keeping my Sun Run training a surprise this year, I'm going to try to post regularly about my progress. Stay tuned..
Posted by Ryan Graham at 11:55 p.m. 3 comments
Great Week
I've had a few things going on lately and this last week seems to have ended on a high note.
My project at work paid large dividends over Thursday and Friday. I was able to get a couple week's work done in only two days thanks to my design decisions early on in the project. I love it when a plan comes together.
In fitness land, I finally got in both of my midweek runs for my Sun Run training. This was week 4. I'm still disappointed that things kept getting in the way, but I'm very happy that I was able to fit them in this week. I'm already at that point in the training where I'm finding it difficult to hold myself back and not over do it. I'm hoping to expand my route next week to up the distance to 2.8km/1.7mi from 2.2km/1.4mi. It's a small increase, but it should be. I'll expand it the week after that again I think.
And then there's this other project that I've been working on. Let's call it Project With A View. The most recent meeting I had about it was a blast and was a great way to cap off the week.
Actually, that's not quite how I capped off the week. We found a babysitter for Arland and I went out for dinner with my wife. Sorry, Project With a View, the wife wins.
I'll see if I can write up a couple other entries to follow up on some things in the near future. Tie up some loose threads from previous entries.
Posted by Ryan Graham at 11:29 a.m. 0 comments
Wednesday, July 1, 2009
Barefoot Experiment: Lessons Learned, Questions Asked
Continuing on, as promised, with my thoughts on life without shoes: What are some of the problems with going barefoot? What kinds of things have you had to work around that you didn't expect?
Obviously, there are some problems with going barefoot. If there weren't, I like to think most people wouldn't wear shoes. It turns out that shoes are deeply ingrained in our society. (Wow, really?) I'm speaking of what is generally referred to as the Western World, here, as that's where I was born and where I continue to live.
What kinds of daily activities are different for barefooters? Well, visiting people is different. You know the ritual. You come in the door, scan for a pile of shoes and promptly add yours to the pile in an effort to keep the carpets clean. But what if you can't take your "shoes" off? The most popular and clever solution I've heard is baby wipes. You can wipe your feet off at the door and enter without leaving black foot prints all over the place. Brilliant! In my own home, I'm lucky enough to have exterior water faucets at every entrance. I now wash my feet whenever I come in the house and whenever I leave the house. Especially on my way out to visit someone. My feet get hardly any dirt time when they go from a clean puddle to the car to a clean driveway. It also helps to have a few extra layers of skin on the soles of my feet, so I can scrub them off on the sidewalk and door mat before going in.
Other fun observations: Not all floor tiles are the same temperature. Exposed aggregate driveways are rougher than crushed gravel. Lotion that claims to soften feet actually softens your feet (whoops!).
I'll sign off with a question I've started asking people in response to them claiming bare feet were dirty...
When's the last time you washed your shoes?
Posted by Ryan Graham at 12:01 a.m. 2 comments
Labels: barefoot