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

jenntampsin asked: How do you cook your tofu?

When I’m using it in soups like miso or udon, I usually just dice it up and throw it in the hot liquid to cook and take on the brothy flavor. 

When eating in stir-fry or alone, I like to slice and pan sear it in a little sesame oil.  It makes a nice crispy outside with a soft middle.  

There is also a dry frying method that the pros use that looks really cool, but I personally have never tried it.  Check it out here

  1. jenntampsin said: Awesome! Thanks!
  2. 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);