📰 Dev.to · benjamin
14 articles · Updated every 3 hours · View all reads
All
Articles 89,168Blog Posts 108,034Tech Tutorials 22,154Research Papers 18,922News 14,668
⚡ AI Lessons

Dev.to · benjamin
3d ago
Your git history is already your changelog — I built a zero-dep CLI to extract it
You ship a release. You mean to write the changelog "later." Three weeks pass, someone asks "what...

Dev.to · benjamin
3d ago
Stop pasting JWTs into random websites — I built a zero-dep CLI to decode them in your terminal
You're debugging an auth issue. There's a JWT in a log line, or in an Authorization header you copied...

Dev.to · benjamin
6d ago
Your package.json diffs are noisy for no reason. I built a zero-dep fixer.
Open a PR, and half the package.json diff is keys that didn't actually change — they just moved. One...

Dev.to · benjamin
6d ago
I committed a 200 MB file once. Never again — so I built a zero-dep pre-commit guard.
Everyone has a version of this story. Mine: I git add -A'd in a hurry, a stray build artifact came...

Dev.to · benjamin
6d ago
Two branches, the same migration number, one broken deploy. I built a zero-dep linter for that.
Here's a failure I've now watched happen on three different teams. Two people branch off main. Alice...

Dev.to · benjamin
6d ago
A zero-dep CLI that scans your GitHub Actions for the mistakes that actually get repos compromised
Your CI workflow is the softest target in your repo. It runs automatically, it has a GITHUB_TOKEN...

Dev.to · benjamin
1w ago
I built a zero-dep CLI that finds unused dependencies — and is wrong less often than depcheck
Open any package.json that's been alive for a year and I'll bet there's a package in there you...

Dev.to · benjamin
1w ago
npm audit cries wolf. I built a zero-dep CLI that tells you what to actually fix
You run npm audit. It prints 47 vulnerabilities in angry red. You scroll through two screens of them,...

Dev.to · benjamin
1w ago
Every TODO in your codebase is lying about its age. So I built a CLI that blames them.
Open any codebase older than a year and grep for TODO. You'll get dozens of hits. Now answer me one...

Dev.to · benjamin
1w ago
git branch -d is fine — until the day you delete the wrong one
Open any repo you've worked in for a month and run git branch. Half those branches are merged and...

Dev.to · benjamin
1w ago
Your dev stack is 4 terminal tabs. It could be one labeled stream.
The daily ritual for anyone running more than one process in local dev: a terminal tab for the web...

Dev.to · benjamin
1w ago
I built a zero-dependency CLI that catches i18n drift (and knows your plural rules)
You add one string to en.json, ship it, and move on. Three weeks later a French user emails a...

Dev.to · benjamin
1w ago
I built a local dead-man's-switch for cron jobs (no server, no signup)
Cron has a cruel design flaw: it tells you nothing when a job stops running. A job that exits...

Dev.to · benjamin
1w ago
I built a 1-file CLI to catch .env drift before it causes production bugs
Almost every developer has fought .env issues. They're silent, annoying, and they only show up after...
DeepCamp AI