Welcome to thatlinuxbox.com Sunday, March 01 2026 @ 09:42 AM UTC

Turkey Trot 10k 2012 - Race Report

View Printable Version
  • Tuesday, January 15 2013 @ 11:34 PM UTC
  • Contributed by:
  • Views: 5,144
Running and Fitness

Share
  • Google Plus
  • Facebook
  • Twitter
  • Reddit
  • LinkedIn
  • Digg

I'm still catching up on race reports...

Lloyd Clarke Sports put on a great 2012 Thanksgiving Day Turkey Trot 10k race here in Gainesville, Florida. The weather was perfect with temps in the 40s at start time.

I slipped on my New Balance Minimus Zero MT00 trail shoes and took a few strides and remembered just how much I love those shoes. The MT00 is an extremely lightweight, zero-drop shoe but possibly has some durability issues, so I have been saving mine for races only.

I improved over the previous year's Turkey Trot by 43 seconds and since I ran smarter this year, the race was so much more enjoyable. The plan was to go out under control, just try to stay nice and smooth. I think I executed well, felt strong through the 2nd half of the race, crushed mile 5, and had a great finish kick. Just like the previous year, the final mile required weaving and dodging to avoid the Fun Run walkers and little kids who were finishing along the same course... but this year I was ready for the obstacles and it didn't really slow me down very much.

I finished in 39:44, was 7th overall, and earned first in my age group. Mile Splits: 6:20, 6:37, 6:36, 6:34, 6:10, 6:17, 1:10 (average 6:24 per mile).

Official results posted here: http://www.halfmiletiming.com/Datafil...Trot12.htm

I caught a photo of the light up board showing my finish time and overall place:



Bobby Burk with some of the Lloyd Clarke Racing Team members (Stephanie McGrail, Dan Clark, and Meredith DeFranco) helping to hand out the awards:



Here is a picture of the really nice race t-shirt with my New Balance Minimus Trail MT00 and finisher medal:

Trackbacks and Pingbacks are now disabled

View Printable Version
  • Wednesday, January 09 2013 @ 02:26 PM UTC
  • Contributed by:
  • Views: 5,346
News

Share
  • Google Plus
  • Facebook
  • Twitter
  • Reddit
  • LinkedIn
  • Digg

Sorry Spammers, I am tired of useless trackback and pingback traffic.

I have decided to disable pingback and trackback here on my thatlinuxbox blog. Hopefully I can spend my time on better things than deleting spammer garbage.

Product Review - Altra Samson Minimalist Shoes

View Printable Version
  • Monday, December 31 2012 @ 08:00 PM UTC
  • Contributed by:
  • Views: 24,579
Running and Fitness

Share
  • Google Plus
  • Facebook
  • Twitter
  • Reddit
  • LinkedIn
  • Digg

Earlier this year I received a pair of Samsons from Altra Zero Drop Footwear to review. I never managed to put together a formal review until now, although I did share my feedback in various places around the Net such as Barefoot Ted's Minimalist Runner Google Group, my twitter feed, and the social running site dailymile. Over the last year I have been too busy running to spend very much time blogging. A few weeks ago I had logged over 200 miles in my Samsons so I figured it was time to sit down and write the review.

Here is what my Samsons looked like fresh out of the box:



I had very high expectations for the Samsons. They were going to be the perfect minimalist shoe, similar to Vibram FiveFingers, but without the VFF toe pockets.

Here is what my Samsons look like after 200 miles of running:

Trail Running in the Hocking Hills, Ohio

View Printable Version
  • Wednesday, December 26 2012 @ 02:55 PM UTC
  • Contributed by:
  • Views: 13,969
Running and Fitness

Share
  • Google Plus
  • Facebook
  • Twitter
  • Reddit
  • LinkedIn
  • Digg

On Christmas Day I ran from Old Man's Cave to Cedar Falls to Ash Cave along the Buckeye Trail in the Hocking Hills. It was a cold day (32 degrees), with lots of icicles hanging from the rock formations. The trail section between Old Man's Cave and Cedar Falls is technical with rocks, roots, and stone stairways to navigate. I was glad to have my Altra Superior trail running shoes. The section between Cedar Falls and Ash Cave is not technical but has some serious hills leading up to the fire tower. The fire tower is open for climbing, and after reaching the top there is a very nice 360 degree view of the surrounding Hocking Hills region.

I didn't carry a GPS so I'm not exactly sure how far I ran, but the round trip is somewhere between 10 and 12 miles. The Buckeye Trail is well-marked here, just "Follow the Blue Blazes...".

Pictures from the Old Man's Cave section:





Pictures from the Cedar Falls section:

Tom Walker Memorial Half Marathon 2012 - Race Report

View Printable Version
  • Wednesday, December 26 2012 @ 12:21 PM UTC
  • Contributed by:
  • Views: 5,944
Running and Fitness

Share
  • Google Plus
  • Facebook
  • Twitter
  • Reddit
  • LinkedIn
  • Digg

I'm a little behind on posting my last few race reports. I ran the Tom Walker Memorial Half Marathon on December 1, 2012, just a few weeks before attempting my first marathon.

This race was a Florida Track Club event and this year the FTC provided pace groups. The two ladies leading the 1:30 pace group (Meredith DeFranco and Stephanie McGrail) are some of my training buddies, so my plan was to stick with the pace group for the first half of the race and then push it in to see how far under 1:30 I could get.

Here is the 1:30 pace group early in the race:


Photo by Florida Track Club

I followed my race plan and came through with a nice personal best!

Coming through the finish line:

Specify QUERY_STRING to PHP CLI

View Printable Version
  • Sunday, December 02 2012 @ 03:25 PM UTC
  • Contributed by:
  • Views: 14,500
Linux, Open Source, and Tech Stuff

Share
  • Google Plus
  • Facebook
  • Twitter
  • Reddit
  • LinkedIn
  • Digg

Thanks to an ancient http://PHP.net comment (http://www.php.net/manual/en/features....php#26201) and a Joomla! forum post (http://forum.joomla.org/viewtopic.php...3#p1318363), I was able to figure out how to run a Joomla php script from the command line and
specify query parameters *without* having to modify any of the PHP code to parse the arguments / options. Most of the examples on the net suggest modifying the PHP script to parse the argv options. I also did not have luck using environment variables to specify QUERY_STRING.

For example, take a Joomla! article with a URL something like this:

mysite/index.php?option=com_content&id=10

Many people running Joomla have SEO-friendly URLs enabled, but the above is the simple (simplest?) query string to get to a particular article using the article id.

Now we can test a particular article at this site from the command line.

Change directory to the appropriate document root and run php as a command-line program:

$ php index.php '&option=com_content&id=10'

The magic sauce is that the first character of the query argument list is just another ampersand rather than the traditional question mark.

Why would I want to do this at all? As one of the Linux system administrators responsible for helping our University customers with their hosted web sites, I sometimes have to debug unusual issues. Having system administrators modify production customer code is not standard practice and unfortunately some of our web hosting customers are not saavy enough to debug unusual issues themselves. One of the tools in our sysadmin toolbox is strace. If I can get the script to repeat the behavior in the command line while strace is running I can often determine the cause of the issue. Running the script in the cli is frequently much easier than trying to catch the issue with strace on a live production site, in shared web infrastructure, etc. We can see file accesses failing, network requests to external servers that don't allow the php page to render until after the remote content is fetched, slow performance from a mysql database... all via the output of strace.

User Functions

Login

Connect

thatlinuxbox.com is the home of Dan Stoner's Personal Blog, Photos, and More (opinions, rants, techno-babble, and possibly a few useful tidbits of knowledge).

Questions or Comments about this site? Contact danstoner _ at _ gmail.com.

RSS Feed for this blog

Other places to find me on the web:

Twitter

LinkedIn

GitHub

Support This Site

If you like something that you find on this site, please consider making a purchase through one of the links below or sending me an item from my Amazon Wish List.


The Clymb


Awesome VPS hosting by Linode.com