New Balance Shoe Fairy

March 2nd, 2009


About 3 weeks ago I filled out a form on New Balance’s Website for their Wear Test program. Shortly there after I received an email back from them stating:

Matthew Farmer, your application has been received and will be reviewed by the New Balance Wear Test Team. It is possible that all positions in the Activity you indicated are currently filled, so we thank you for your patience as we look for testing opportunities that suit you.

Once you have been selected for a test, you will receive an email notification of your acceptance into the program. This email will also confirm your User ID and provide a temporary Password allowing you to log in to the site and manage your account.

Sincerely,
The New Balance Wear Test Team

http://weartest.newbalance.com

And that was that. I kind of forgot that I even applied and hadn’t heard from them since.

Then this morning I found a package on my front doorstep. At first I looked at it expecting to see my room mate’s name on it, but when I saw mine I quickly scanned the return address expecting to see it coming from my family, but was excited to see that it was from New Balance!

This last week I really started to gear up on my training for the LA marathon. I ran a 5 mile run at my goal marathon pace of 7:15 minutes / mile on Saturday and followed that up with a 8 mile run on Sunday, each of which left my knees feeling a little soggy.

I really thought a new pair of shoes might help with that, but didn’t want to drop the $80-100 that entailed on it just yet, and was thinking that maybe I’d ask for a pair for my birthday, though my family already do so much for me I didn’t want to. Last night I even had a dream about it. So these couldn’t have come at a better time. I can’t wait to get out there and put some miles on them!

LA Update

February 24th, 2009

So I’ve been in LA for a little over a month now and figured it was time for an update on how things have been going.

The first week was pretty much tied up with Gosslin, a holiday my friends here made up about 6 years ago. Celebrated at the end of January every year, there are 17 points that must be completed during the night. This year a few of them were: Martina has to sneak in (which he did), Jess had to lead everyone in a song of dance, the Ramones were the only band listened to, Bowser and Banshe got married, and Noah had a Translyvanian BBQ.

During all of that, me and Noah also got a dog, Girl. She was found under a car in Eagle Rock a few months ago when this really nice lady took her in. She took care of her for a few months until we heard about her through a friend of a friend of a friend of Noah’s boss… or something like that. Since we’ve got her we’ve gotten her spayed, dealt with her with a cone on her head for a week, and I started taking her on runs.

As for work, I’ve started giving the freelance thing a try. Mostly doing websites. Its slow getting work, but looks some what promising. I think I’m also going to put my skills from EMC to work and start doing some Hard Drive Data recovery. Dave’s Mac hard drive went last week (due to some nasty file system corruption that DiskUtility couldn’t fix), and I was able to get everything back for him, so I figured I’d see if I couldn’t make some money there.

I’ve also started officially training for the LA Marathon. This will be my first time training with an official schedule, instead of just running as I see fit. I didn’t look around too too much, but decided to go with Hal Higdon’s Intermediate 1 Training Schedule. It’s an 18 week program, but the race is only 15 away, so I’m going to start at Week 1 and skip one week of the schedule until I’m on track. Given I finished Boston in 3:53, with my haphazard training for 6 weeks, I think I’ll be ok with this.

Enough side tracking for now. Back to work!

Web frameworks and SQLite frustrations

December 14th, 2008

This weekend I started doing some web work for a client who wanted to be able to add and remove some content to their site with out having to know any html. Easy!

I wanted to take this as an opportunity to try out a few different web frameworks to see which I like the most and which I wanted to learn more. The first two I looked at were django and CodeIgniter.

After running through the tutorial for django, I was totally sold! Everything about it seemed amazing and worked like a charm! But when I tried to load it up on my 1&1 account, it was a no go situation. django is a Python package that has to be installed by a privileged user. There are other hosts out there at comparable prices that have django pre-installed, but they do not offer the amount of space that 1&1 does (which I use to back up my personal files). Also, a lot of the work that I do is adding functionality to already existing sites, where I have no input into where the site is hosted, and so again, it doesn’t look like django will work for me.

Next up was CodeIgniter, and while its not quite as impressive as django (I actually had to create a database table myself… *sarcastic sigh*), it seems like it will do the job.

Next up, time to work on this site. One problem. I don’t have any cPannel type login information or know any credentials for a database I can use… No worries though: sqlite to the rescue!

I setup CodeIgniter to work and all is looking great. I created some sample data with the command line sqlite interface and Select statements are working perfectly. I’m not pretty far into this project, too far to back out now. The client side of things are all done, and I’m now working on the admin interface. Time to setup some DELETE and INSERT queries.

“Unable to open database…”. WHAT? What do you mean unable to open database? If i changed any of these queries to a SELECT, they work fine, so its obviously able to open it. I chmod the file to 777, still nothing.

After what felt like, and probably was, hours of searching, I finally came across this article at mediakey.dk.

As it turns out, to be able to write to a sqlite file, the folder that it resides in must also be writable. So simple, but so frusterating. I’m going to post this hint in as many spots as I can find now, so hopefully other user’s won’t have to go through as much trouble finding it as I did.