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

Reason # 592 why I love my boss

  • Employee sends out department email: Can anyone tell me what denial "blah blah blah" is and how to fix it?
  • Me back to everyone: That's been happening a lot lately, it's their error... just call and ask them to push it through.
  • Boss back to me: Did Medicare push it? Puh..push it real good? Thanks, R.
  • Can't stop laughing. Honestly, if everyone here knew how immature their bosses were? guaranteed mass revolution.
  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);