✕ Clear all filters
16 articles
▶ Videos →

📰 Dev.to · benjamin

16 articles · Updated every 3 hours · View all reads

All Articles 173,163Blog Posts 163,816Tech Tutorials 46,199Research Papers 33,857News 21,839 ⚡ AI Lessons
A reformatted PR shows 80 changed lines but changed nothing — I built a zero-dep diff that sees through it
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo ago
A reformatted PR shows 80 changed lines but changed nothing — I built a zero-dep diff that sees through it
Someone runs the formatter, the line width changes, and suddenly the pull request touches 80 lines....
Is that timestamp in seconds or milliseconds? I built a zero-dep CLI that just tells you — both directions.
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo ago
Is that timestamp in seconds or milliseconds? I built a zero-dep CLI that just tells you — both directions.
You find a timestamp in a log line: 1718750000123. Is that seconds? Milliseconds? You reach for...
Putting a file in .gitignore does nothing if git already tracks it. I built a CLI to find the leftovers.
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo ago
Putting a file in .gitignore does nothing if git already tracks it. I built a CLI to find the leftovers.
You added .env to .gitignore. You felt responsible. But three weeks later it's still in the repo,...
Your git history is already your changelog — I built a zero-dep CLI to extract it
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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...
Your package.json diffs are noisy for no reason. I built a zero-dep fixer.
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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...
I committed a 200 MB file once. Never again — so I built a zero-dep pre-commit guard.
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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...
Two branches, the same migration number, one broken deploy. I built a zero-dep linter for that.
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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...
I built a zero-dep CLI that finds unused dependencies — and is wrong less often than depcheck
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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...
Every TODO in your codebase is lying about its age. So I built a CLI that blames them.
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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...
Your dev stack is 4 terminal tabs. It could be one labeled stream.
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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 local dead-man's-switch for cron jobs (no server, no signup)
Dev.to · benjamin ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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 ☁️ DevOps & Cloud ⚡ AI Lesson 2mo 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...