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

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

  3. Good grief, I should have known that in the week before I go to , and I’m packing up my workshop, I’d get loads of emails about work :/ Politely turning them all down and suggesting alternatives until I get back.

  4. Holed myself into my bedroom, now trying to watch spirited away on my iPad, surrounded by gurdies, half finished guitars and lutherie equipment. Eating cake and listening to Oscar flute in the other room.

  5. Is it a hallmark of Ghibli films that I don't remember the actual storyline, just small, nonsensical plot details — I.E. exactly the opposite of how remembering is supposed to work?

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

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