Posts
Set up a React Native Web Project in a Monorepo
May 9, 2024•2,682 words
Setting up a React Native Web project in a monorepo is challenging. Let's do so and see what challenges we run into!
Explaining Promises, Async, and Await in JavaScript
March 15, 2024•1,835 words
Modern JavaScript is built on promises and callbacks. Let's learn what promises are and how we can make their usage easier using async functions.
Embedding Interfaces in Go
March 6, 2024•1,492 words
Creating tests can feel tedious, but doing it in Go can be, dare I say, *fun*. Let's take a look at how embedding interfaces clears some of that tedium for us.
Move manifest.json to the Output Directory's Parent in Vite 5
February 7, 2024•825 words
Move Vite's manifest.json file outside of the build directory.
Fuzzing an API with libfuzzer
January 23, 2024•1,851 words
[Edit] I was just told that libFuzzer is deprecated. I think the ideas presented are valid for any fuzzer, but the details will differ. When I ment...
Web Framework Quickstart Guide
January 16, 2024•1,236 words
Here's the quickest ways you can get up-and-running with templates for React, Angular, and Vue; using official tools.