Nike Training Club 1001

At roughly three per week that’s six years of workouts which feels about right; Only more recently have I made a point of balancing running with strength workouts.

The Nike Training Club application really seems to struggle to sync this number of activities and has lost a few; According to the Strava API I have done 1055 workouts (Yoga + Workouts), not all of those are Nike Run Club, but most definitely are so NTC has probably lost about 40 workouts in all.

Asides from that though, I 100% rate and recommend it as a free fitness application.


Quick/hacky summing of my workouts thanks to strava-ruby-client:

irb(main):093> sports = {}
=> {}
irb(main):094* client.athlete_activities(per_page: 30) do |activity|
irb(main):095*   sport_type = activity.sport_type
irb(main):096*   if sports[sport_type]
irb(main):097*     sports[sport_type] += 1
irb(main):098*   else
irb(main):099*     sports[sport_type] = 1
irb(main):100*   end
irb(main):101*   sleep 1
irb(main):102> end; 0
=> 0
irb(main):103> sports
=>
{"Workout" => 363,
 "Run" => 1782,
 "Yoga" => 692,
 "Swim" => 25,
 "Kayaking" => 1,
 "Walk" => 7,
 "EBikeRide" => 2,
 "Skateboard" => 2}

I’m actually up to 1003 now