Updates: page 58

  1. Teething time

    My daughter is gurning more than Bez at The Haçienda which means one thing: it’s teething time 😱

    Bye bye already meagre sleep...

  2. New Adventures Conference 2019

    I’ve had an incredible time at @naconf. Every talk was amazing. It was also great to finally meet some folks that I spend a lot of time talking to on the web, too.

    Big props to @colly, @hellogeri and the awesome volunteers for putting on a such a good event.

  3. Check if client JS is available

    🔥 If you’re working with SSR React/Vue it’s handy to know if you’re in a client-JS context or not.

    This little snippet will return true if you’re in the browser and false if you’re on the server.

    Code that reads: isClientJSAvailable() { return typeof window !== "undefined" }