Posts
perf overhead on context flattener?
Diving into SSR with bun & react 19!
hydration, server rendering, and more!
Processes
A quick overview / dive into how linux handles processes
Overview of Cloudflare Workers Part 1
tldr; v8 isolates are the magic behind cloudflare workers
LLDB cheatsheet
Inside React (Part 1) - how to get started.
How to get started with understanding how React works under the hood
Send iMessage to a loved one from the terminal!
Powered by bash and AppleScript!
How to get sorted set in descending order with node redis
everything is zRange now
Building UDP server from scratch in Zig
In this post we'll build a UDP server from scratch in Zig. We'll cover how to create a socket, bind it to a specific address and port, and listen for messages.
How to use Tailwind (NativeWind) with Expo
Quick guide to using Tailwind NativeWind with Expo
Don't use negative variable & function names
Use positive variable and function names
Getting Closure with React
How closures work & how it's used in React
Building Typesafe Full Stack App w/ Apollo Server 4, Railway, Prisma, Pothos, Next, & TS (part 1 - setting up the server)
Pothos makes getting e2e typesafety really easy! In this article we'll be setting up a full stack app with Apollo Server 4, Railway, Prisma, Pothos, Next, & TS
6 Code Smells In React I Look Out For
Be sure not to include these in your app.
⚛ React Tips - You're misusing the React useEffect hook (probably)
tldr; only use to sync external systems to React
⚛ React Tips - Don't define component inside of another component
tldr; Defining a component inside of another component creates a costly bug that causes unnecessary re-renders and can be solved by moving the child component outside of the parent component.