#developer-tools

6 posts
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 440
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 550
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,452
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,514
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,340
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 751
Git, Explained for People Who Only Know How to Commit