✕ Clear all filters
11 articles

📰 Dev.to · benjamin

11 articles · Updated every 3 hours · View all reads

All Articles 81,303Blog Posts 105,092Tech Tutorials 19,806Research Papers 17,820News 13,845 ⚡ AI Lessons
npm audit cries wolf. I built a zero-dep CLI that tells you what to actually fix
Dev.to · benjamin 1d 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,...
Every TODO in your codebase is lying about its age. So I built a CLI that blames them.
Dev.to · benjamin 1d 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...
git branch -d is fine — until the day you delete the wrong one
Dev.to · benjamin 1d 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...
Your dev stack is 4 terminal tabs. It could be one labeled stream.
Dev.to · benjamin 1d 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...
I built a zero-dependency CLI that catches i18n drift (and knows your plural rules)
Dev.to · benjamin 1d 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...
I built a local dead-man's-switch for cron jobs (no server, no signup)
Dev.to · benjamin 2d 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...
I built a 1-file CLI to catch .env drift before it causes production bugs
Dev.to · benjamin 2d 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...