Advent of Code 2022 is here!

The awesome Advent of Code is back for 2022! You can follow along on my github repo or follow on Twitter or Mastodon. Check out my finished Advent of Code solutions here. You can plug in your own puzzle inputs and find your own answers too! This year, I'll be doing my puzzles in React... Continue Reading →

April Fools with these terrible NPM packages

NPM, hosted at npmjs.com, is a repository for storing open-source libraries, frameworks, and packages that anyone can publish to, and anyone can download from. This has great packages in it like ReactJS, Okta, DataDog, Material, Luxon, and many, many more. However, there's also garbage in here. There are some really terrible NPM packages out there... Continue Reading →

Keeping React component’s state top of mind

I'm impatient I've done this too many times: // api call to get the contact Luke Skywalker // process a little data return ( <Card> <Card.Title>{person.name}</Card.Title> </Card> ) just to get a lovely Can't read property 'name' of undefined error. Yuck. I fire up the dev console... Network tab, is the API returning data? ✅.... Continue Reading →

Up ↑