Introduction to Hash Tables
July 3, 2023
hash tablesdata structuresA high-level overview of how hash tables work behind the scenes.
Porting a Next.js Site to Astro Step-by-Step
June 29, 2023
nextjsreactastroLet's port a site from Next.js to Astro, expanding on the official migration guide.
Using JavaScript classes without the `class` keyword
June 29, 2023
javascriptClasses are a core feature of JavaScript - but they weren't always that way. How did earlier JS devs write classes? Let's learn how together.
How to Setup a React Native Monorepo
June 29, 2023
reactreact nativeReact Native can be challenging to setup a monorepo for. Let's explore what an optimal monorepo setup looks like for it.
Unraveling the Magic of the Virtual DOM
June 8, 2023
webdevjavascriptThe VDOM is the secret sauce that empowers developers to create the captivating, dynamic web applications that we use every day.
A Crash Course to Two-Factor Authentication
April 24, 2023
toolssecurityauthenticationTwo-Factor Authentication is a security feature that adds an extra layer of protection to your online accounts.
Advice for New Twitch Streamers
March 25, 2023
opinionTwitch streaming can be fun and fulfilling, but has various roadblocks in the way for newcomers. Here's how you can overcome them and grow your Twitch channel.
The story of `let` vs `const`, Object Mutation, and a bug in my code
March 25, 2023
javascriptWhen working with objects, you may hear the term "mutation". What is that? How does it work? How do let and const REALLY differ from each other? This and more: