Tofu Massaman Curry

Posted by Jason Terk on Wednesday, March 24

Another day, another dinner. This time it's tofu massaman curry.

In the wok

In a bowl

0 comments

Rajas and Refritos

Posted by Jason Terk on Tuesday, March 23

I made refried beans and rajas from Rick Bayless' Authentic Mexican tonight. Man it was good.

Rajas and Refritos

0 comments

A Couple More

Posted by Jason Terk on Monday, March 22

Amelie

A Rainy Day

tags:
0 comments

Some Photos

Posted by Jason Terk on Sunday, March 21

I took some photos with my new T2i:

Amelie

Dan

But wait, there's more!

tags:
1 comment

GWT Development Mode Bookmarklet

Posted by Jason Terk on Thursday, March 18

Sometimes, when debugging a GWT application, one needs to attach the magical gwt.codesvr= incantation to a URL manually, for whatever reason. It's easy enough to do this by hand but even easier to use a bookmarklet. Create a bookmark from that there link and, when you click it later, it will add the GWT development mode parameters to the currently open URL. If you need to use a development mode server other than localhost you'll need to edit the bookmarklet accordingly - it may be easier to do so using the un-collapsed script:

javascript:(
  function() {
    h = "localhost";
    p = "9997";
    l = "gwt.codesvr=" + h + ":" + p;

    if (document.location.href.indexOf("gwt.codesvr") < 0) {
      q = document.location.href.indexOf("?");

      if (q < 0) {
        document.location.href = document.location.href + "?" + l;
      } else {
        b = document.location.href.substr(0, q + 1);
        e = document.location.href.substr(q + 1);
        document.location.href = b + l + "&" + e;
      }
    }
  }
)();
0 comments

The Big Short

Posted by Jason Terk on Monday, March 15

Vanity Fair has an extended excerpt from Michael Lewis' new book about the few who bet against the subprime mortgage market and won: The Big Short. It looks, like all of Lewis' books that I have read, to be very, very good.

0 comments