Wednesday, July 24

Commons



Eric picks me up at Logan following a kerfuffle caused by torential storms and a two-hour delayed arrival time.  Today we walk from Cambridge to Harvard Sq then MIT and over the Smoot Bridge to the Back Bay, Newbury Street followed by the commons (pictured), Beacon Hill, the Charles River and home.

Eric is writing code for a cool education focused website funded by the Bill & Melinda Gates Foundation.  Here is what he does all day :

$.fn.summarize = function (mainOptions) {
   var $summarizingNode = this,
   options = $.extend(true, { }, { log: false }, mainOptions);
   $summarizingNode.find('.' + $.constants.misc.summaryControlClass)
     .each(function () {
       var $control = $(this),
       localOpts = $.extend(true, { }, { log: options.log }, $control.data($.keys.summaryControlOptions)),
       handlerName = localOpts.handler,
      

And so on and so forth.