Posts
All the articles I've posted.
A Clean .zshrc Startup Script for Setting Github and Docker API Keys on a Mac
Published: at 01:25 PMIn this blog post, we present a streamlined zshrc startup script on macOS that sets environment variables and logs into Docker in the background. We also explore how minimal logging and background execution can improve your workflow.
Replacing Legacy throw in React 19 with Suspense and use
Published: at 11:57 PMReact once used thrown Promises for Suspense. .use() is recommended now, but legacy throwing is still supported.
OBS Recording Resolution 4K Even Though Display is 1080P
Published: at 01:27 AMSet OBS base resolution to 4K and output to 1080P to capture entire screen on Retina MacBooks.
Running React 19 From a CDN and using esm.sh
Published: at 04:51 PMThis blog explains updating to React 19 using esm.sh, transitioning from UMD to ESM modules. It includes changes in CDN usage, detailed esm.sh functionality, and how to find and use the correct React package versions.
Mastering useState in React to Handle Multiple Values
Published: at 11:13 PMIn this blog post, we explore using useState with React's Context API to manage an array of constants effectively in Next.js projects, offering a simpler alternative to useReducer for state management.