#developer-tools

7 posts
Development

You Reset the Wrong Branch. It's Still There.

It's 6:40 on a Thursday. You meant to run `git commit --amend` on your own branch, but your terminal was sitting in the wrong tab, and now the last three commits on the shared branch look nothing like...

2026.09.07 · 18 min read · views 465
You Reset the Wrong Branch. It's Still There.
Development

The Project You Didn't Touch Broke Anyway. Blame the Global Install.

You clone a coworker's project, run `pip install -r requirements.txt`, and everything looks fine. Two days later a completely different project on your machine starts throwing import errors. Nothing a...

2026.08.19 · 18 min read · views 600
The Project You Didn't Touch Broke Anyway. Blame the Global Install.
Development

Regex Without the Fear: Reading Any Pattern Left to Right

You have a folder full of files named `invoice_2026_01.pdf`, `invoice_2026_02.pdf`, and a hundred more. You need the ones from the first half of the year, but not the drafts, and definitely not the `i...

2026.07.27 · 15 min read · views 738
Regex Without the Fear: Reading Any Pattern Left to Right
Development

Regular Expressions, Explained Without the Fear

You're staring at a log file with 40,000 lines in it. Somewhere in there is the one request that failed, and you know it has a timestamp, an IP address, and the word `timeout` in it. A colleague leans...

2026.07.13 · 20 min read · views 1,861
Regular Expressions, Explained Without the Fear
Tech & Trends

Context Engineering: The Skill That Quietly Replaced Prompt Engineering

You open your laptop on a Tuesday morning, type a request into an AI coding tool, and watch it churn for four minutes. It reads files. It runs your tests. It edits six things you didn't ask it to touc...

2026.07.12 · 17 min read · views 1,900
Context Engineering: The Skill That Quietly Replaced Prompt Engineering
Tech & Trends

Context Engineering: The Skill That Quietly Replaced Prompt Engineering

You open your laptop on a Tuesday morning, type a request into an AI coding tool, and watch it churn for four minutes. It reads files. It runs your tests. It edits six things you didn't ask it to touc...

2026.07.11 · 17 min read · views 1,734
Context Engineering: The Skill That Quietly Replaced Prompt Engineering
Development

Git, Explained for People Who Only Know How to Commit

There's a moment almost every developer hits early on. You've been using Git for a few weeks. You can `git add`, `git commit`, and `git push` without looking anything up. Then a teammate says somethin...

2026.07.07 · 18 min read · views 969
Git, Explained for People Who Only Know How to Commit
AD