** The Road to Slim City **

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

Work Today

Is a healthy eating LANDMINE!!!

and that’s seriously just the tip of the iceberg. I coulda rounded through the office and taken at least 5 more pics.

Evidently today is National “Granny brings all the bad/good eats for no particular reason” Day and I didn’t get the memo.   

I am hereby confined to my office. 

  1. shortmom said: fuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu
  2. mollierunsherbunsoff said: oh god. i DO NOT miss the once a month “birthday bash” aka “lets all wear our fat pants to work day because all we’re going to do is eat” day.
  3. measuringlife said: DANGERZONE!
  4. smaller-n-smaller said: oh geez. holymarymotherofgod. may the force be with you :-)
  5. 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);