Back
Blog
Tutorials, research, and notes from building software. I write about JavaScript, React, Python, AI, and open-source projects like Peekling.
- How to Add a Peekling to Your Website
I built Peekling to give websites a little personality. Add an animated companion with one JavaScript call, give it a bubble, or create a character of your own.
- Compiler Choice Is a Systems Decision
1,784 real documents compiled across macOS, Linux, and Windows show engine choice is a deployment decision, not a taste preference.
- Building an iOS Todo App with Tauri 2.0, React, & TypeScript
Learn how to create a beautiful, native-feeling iOS todo application using Tauri 2.0, React, TypeScript, and modern web technologies.
- JavaScript Proxy: A Powerful Metaprogramming Feature
JavaScript Proxy allows you to intercept and customize operations on objects, enabling powerful abstractions and data validation.
- Python Refresher: Revisiting the Fundamentals
This refresher covers Python fundamentals like integers, floats, strings, lists, and booleans, making it accessible for all programmers.
- Crash Course on Data Structures: A Comprehensive Guide
Explore essential data structures, their significance, and practical usage in this comprehensive guide.
- Sync state updates b/w 2 components that use a common hook
States defined in custom hooks are local to their use in every component. Meaning updating state in one component doesn't reflect in another.