1. Laura Kalbag: My life is so much better since I forced Mail.app to copy 'email@emailaddress.com' rather than '<Full Name email@emailaddress.com>'

    Laura Kalbag just the other day I was thinking that applications should accept those strings as valid email addresses, and parse them as such

  2. Brennan Novak: @BarnabyWalters ahh, glad you're staying @KexHostel as it is rawesome and cozy. I suggest eating downstairs, it's really tasty!

    Brennan Novak yeah, KEX is great. I had breakfast downstairs on the first day, but I’m kinda short on cash right now so DIYing all food :)

  3. Laurent Eschenauer: @BarnabyWalters On this note, there is a quote too much on the 'in reply to' link: http://t.co/SbTJY1bYPn -> breaks your pingback ?

    Laurent Eschenauer thanks for the heads-up, on closer inspection it looks like the problem is on your end — the URL in the with attribute of the action element has that quote at the end

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

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

  6. 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;
    }