** The Road to Slim City **

One girl's journey to finding herself, losing weight, getting healthy, and living life... one shenanigan at a time.
130 lbs lost ..... 10 to go. Welcome to my world.

WIF

Last Week:  145.3 lb

This Week:  143.6 lb

Loss:  -1.7 lbs

Total loss: -130.4 lbs

Yeah, it’s a small loss, but I’m still pretty stoked to see that number. 

Word. 

  1. shandoeslife said: YAY!!!!!! 1.7 lbs is a wonderful loss! :) And that total loss — wow.just.wow!
  2. jazzzyone said: You’ve lost an adult female! Congrats.
  3. effyeahliz said: 1.7 isn’t small, it’s an awesome loss!
  4. theroadtoslimcity posted this
// ==UserScript== // @name Tumblr Hide Followers // @namespace http://userscripts.org/users/alliterate // @description Hides follower count from Tumblr dashboard // @include http://www.tumblr.com/dashboard // @include http://www.tumblr.com/dashboard/* // @include http://www.tumblr.com/dashboard* // @include http://www.tumblr.com/* // ==/UserScript== var rules = new Array(); var style; function enableStyle(rules) { style = document.createElement('style'); style.type = 'text/css'; document.getElementsByTagName('head')[0].appendChild(style); for (var i = 0; i < rules.length; i++) { style.sheet.insertRule(rules[i], 0); } } rules[rules.length] = "#right_column .dashboard_nav_item .dashboard_subpages a[href='/followers'] { display:none; }"; enableStyle(rules);