Set multiple React refs in one variable
Storing multiple refs to an array or an object.
Accessible tabbed navigation with React
Modern and accessible tabbed navigation which spark joy in the user and in the dev.
Perfect iframe React component
Here’s a cool iframe component that loads fast and is accessible.
Simplest way to style list bullets with Unicode characters
Here’s a simple way to style lists in CSS, without touching the HTML or adding SVGs.
Render a nested list with a recursive React component
When rendering deep lists, recursion is pretty much the only right way to do it. Recursive React components work like a charm.
Some text shadow effects
Here’s some text shadow effects like outline, fake bold, and blurry text.
Tmux cheat sheet
A searchable tmux keyboard shortcut and command reference.
How to MDX with Gatsby
An introduction to MDX, and how to configure and set it up on an existing Gatsby site.
How to make a sortable data table using React
Make your data tables pop more, by making the data in them more friendly by means of sortable columns, all the while keeping things accessible and responsive.
The unexpected mutability when editing nested arrays
I faced a completely thick problem when I was trying to filter a nested array object. I kept mutating the original variable, even though `.map()` or `.filter()` do not mutate the array they’re operating on.