Königssee Europa Cup Results

Königssee, Germany Skeleton TrackI’m just realizing that I haven’t updated my blog with my results from the first half of the season. Seems I neglected it for my twitter and facebook accounts.

Soo…

Königssee Race #1 I was 7th:

KOENIGSSEE, Germany (Nov. 25, 2011)- Brad Stewart (Hastings, Minn.) led the U.S. in the first skeleton Europa Cup race of the 2011-2012 season with a seventh place finish. The veteran athlete finished just one-tenth of a second from the top six results.

Stewart leads in first skeleton Europa Cup race

Königssee Race #2 I was 3rd (my first international medal!):

KOENIGSSEE, Germany (Nov. 26, 2011)- Brad Stewart (Hastings, Minn.) earned his first international medal today after claiming bronze in the second men’s skeleton Europa Cup competition of the season. Stewart raced ahead of 30 entrants on the challenging Koenigsssee track to once again lead the U.S. team.

Stewart earns bronze in Koenigssee

One of the best parts was my parents got watch it happen:

Podium

 

I ended up having to skip the next to races in Altenberg, Germany for a number of personal reasons and will be returning to the Europa Cup for races 5-8 in Igls, Austria and Winterberg, Germany the first two weeks of January, 2012.

Posted in Personal, Skeleton, Sports | Comments Off on Königssee Europa Cup Results

Hastings Star Gazette Article

My hometown newspaper, The Hastings Star Gazette recently did an article about me:

Hastings graduate takes aim at Olympics in the skeleton

Seeing her son race down a snow covered track is nothing new for Hastings mother Sandy Blankenship. Seeing him race down head first at 80 miles per hour just inches off the ground on a sled, though, is something she is still getting used to. It appears now, though, that it’s something she’d better get more familiar with – the sport will be in her son’s life for at least the next few years. Brad Stewart, a 1998 graduate of Hastings High School, is racing with Team USA and has his sights set on the 2014 Winter Olympics in Sochi, Russia.

Hastings graduate takes aim at Olympics in the skeleton

Posted in Personal, Skeleton, Sports | Comments Off on Hastings Star Gazette Article

The Global Drug War Is A Failure

The Drug War is a failure. Jimmy Carter in the New York Times:

The report describes the total failure of the present global antidrug effort, and in particular America’s “war on drugs,” which was declared 40 years ago today. It notes that the global consumption of opiates has increased 34.5 percent, cocaine 27 percent and cannabis 8.5 percent from 1998 to 2008. Its primary recommendations are to substitute treatment for imprisonment for people who use drugs but do no harm to others, and to concentrate more coordinated international effort on combating violent criminal organizations rather than nonviolent, low-level offenders.

via Call Off the Global Drug War – NYTimes.com.

Posted in Politics | Comments Off on The Global Drug War Is A Failure

LocaDo 1.1 Submitted to The AppStore

I submitted LocaDo 1.1 to the app store this weekend and wanted to give a sneak peak. New features include:

  • A sleep mode for improved battery life, up to 60% better in my tests.
  • Metric to do saving for our international friends.
  • Bug Fixes.

Get v1.o here: LocaDo, location based to do list and reminders for iOS.

Posted in Apple, Programming, Technology | Comments Off on LocaDo 1.1 Submitted to The AppStore

Example Objective-C Code for iOS/iPhone/iPad

Learning a new programming language can be difficult and sometimes developer documentation just doesn’t convey the message clearly and you need an example.  Coming from PHP where every function is documented with example code, I feel this is one area where the Objective-C ecosystem is severely lacking.  I found iPhone SDK Examples to be a helpful resource.

Posted in Apple, Programming | Comments Off on Example Objective-C Code for iOS/iPhone/iPad

Making the Rich Look Poor

Interesting. All about the presentation.

As a public service, I’ve redrawn the chart for the Journal. On the left is the original. On the right is the chart that shows the actual amount of money earned by the tiny handful of people making over $200,000. It’s a lot.

via Fun With Charts: Making the Rich Look Poor | Mother Jones.

Posted in General | Comments Off on Making the Rich Look Poor

Car Pool Party Goes Live – My First App

I’m very happy to announce that today my first app for the iPhone has gone live on the iTunes app store.

From the description:

Car Pool Party was created for my fiancée to help her arrange and keep track of her daily car pools. With four inconsistent members, keeping track of whose turn it was to drive just got too messy. Heck, even with only two members they’d sometimes forget whose turn it was!

This app keeps track of all the subgroups possible within a carpool, making it super easy and fair to everyone. The features include:
– Driver and passenger history for all possible subgroups
– Automatic driver selection based on driver and passenger history
– Manual pick of driver for those times when you need to mix up the order
– Simple, user-friendly interface

With Pool Party, never again will you have to play rock-paper-scissors to choose a carpool driver!

Get it here: Car Pool Party

Posted in Apple, Business, Entrepreneur, Technology | Comments Off on Car Pool Party Goes Live – My First App

No Business Plan Survives First Contact With A Customer – The 5.2 billion dollar mistake. « Steve Blank

No Business Plan Survives First Contact With A Customer – The 5.2 billion dollar mistake. « Steve Blank.

Re-reading this, good article.

Posted in Business, Entrepreneur | Comments Off on No Business Plan Survives First Contact With A Customer – The 5.2 billion dollar mistake. « Steve Blank

Dynamically adding UIActionSheet buttons

Today’s useful Objective C resource, dynamic buttons on a UIActionSheet.  Awesome.

The UIActionSheet is a very useful class, and I use it frequently in my apps, but its initialisation method doesn’t allow you to add buttons from an array. Instead you apparently typically just add them hardcoded as an initialiser parameter – and almost all code examples on the web seem to use this method.

via Dynamically adding UIActionSheet buttons « Ajnaware’s Weblog.

Posted in Apple, Programming | Comments Off on Dynamically adding UIActionSheet buttons

alloc NSMutableArray and storing objects

Today’s interesting programming tidbit…

If assigning an array to another NSMutable Array such as this:

self.listData = [self userData];

You don’t need to alloc the listData array first, although i’m guessing it’s probably a good idea.

However if you want to do this:

“[selectedData addObject:name];”

You need to alloc it first:

“selectedData = [[NSMutableArray alloc] init];”

I believe i read that somewhere, wish I could have remembered it while i was pulling my hair out wondering why my NSMutableArray wasn’t storing values.

Posted in Apple, Programming, Technology | Comments Off on alloc NSMutableArray and storing objects