Writing.
Notes on software development, frontend architecture, and things I learn along the way.
July 4, 2026
5 min read
27
Deploying Production Apps with Nginx + PM2: From Localhost Hero to Production Legend
Your Node app runs beautifully on localhost:3000... and then crashes the moment real users show up. Let's fix that! A fun, hands-on guide to deploying production-ready apps using Nginx as your reverse proxy and PM2 as your process babysitter.
July 4, 2026
5 min read
22
Handling SSL, Domains, and Production Servers: The Grown-Up Guide to Going Live
Buying a domain, pointing DNS at your server, and slapping on a padlock can feel like dark magic the first time. It isn't! Here's a friendly, hands-on tour of domains, DNS records, SSL certificates, and hardening a production server so your app goes live safely and stays that way.
July 4, 2026
6 min read
24
CI/CD Pipeline Design: Teaching Robots to Ship Your Code So You Don't Have To
Deploying by hand at midnight is how bugs sneak into production. Let's design a CI/CD pipeline that tests, builds, and ships your code automatically, so every push flows safely to production while you sip coffee. A friendly, hands-on tour of stages, GitHub Actions, and the habits that keep deploys boring (in the best way).