1. Jovian Salak: @BarnabyWalters Oh no! bad luck bro, I'm sure there'll be work when you get back ;)

    Jovian Salak thanks :) If anything it means I’m more likely to get work when I get back — people are starting to find me, which can only be a good thing.

  2. Laurent Eschenauer I love — I use it every time I’m thinking about performance, to remind me just how much slowness is down to all that decoration and fancyness :) And also to see just how crappily marked up modern “web apps” often are ahem facebook ahem

  3. Kyle Weems: function awesomeWorkday(tasks){if (tasks instanceof coolJsonStuff || tasks instanceof coolApiStuff) { return true; } else { return false;}}

    cssquirrel even the if/else is redundant ;)

    
    function awesomeWorkday(tasks) {
      return (tasks instanceof coolJsonStuff || tasks instanceof coolApiStuff) ? true : false;
    }