** 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.

WIW

Last:  167 lbs

Today: 165.2 lbs

Down:  1.8 lbs

Things that I’ve changed that I know have made the difference:

  • Water Nazi.  I’ve been a crazy person about making sure I have enough
  • Low on the bread.  I’m still eating carbs, just not gluteny ones
  • Super high on the lean protein.  Chicken, egg whites, and no sodium tuna have taken the royal seat in my life.  There are just so damn many options for the cooking and the eating. 
  • Making an effort to not eat after 7pm - this is hard, but I know it’s helping
  • Diligence:  I’m effin’ fed up with the weight loss stall I’ve been on.  Enough is enough.  It’s balls to the wall people cuz I’m taking what I came for. 
  1. 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);