Posts

Showing posts from July, 2026

I Built an AI Coding Assistant for My Own Workflow—Here's What Happened

Image
At some point last summer, I counted my browser tabs at the end of a working day. Twenty-three. And that was a relatively focused afternoon. There was the project's GitHub repository, the documentation for two libraries I was using, a Stack Overflow answer I'd been meaning to read properly, three different conversations with AI assistants in separate browser tabs, the Jira board, two architecture diagrams I'd been referencing, and the usual cloud of context accumulated from a day of writing code. The deeper problem wasn't the tabs. It was that I was maintaining four or five different tools simultaneously during active development — the code editor, the browser, one AI assistant for code questions, another for general research, documentation I was checking manually — and the switching cost between them was constant. Every time I had a question, I had to decide which tool to ask, navigate to it, provide context again because nothing remembered our previous conversation,...

I Replaced My Daily Google Searches with AI for 30 Days—Here's the Result

Image
 I used to open Google the way other people check their phone first thing in the morning — automatically, without thinking about it. Stack Overflow error message? Google it. Unfamiliar library method? Google it. Quick refresher on how async/await works in a specific context? Google it, wade through three blog posts from 2019, find the one that actually applies to my version of the framework, and eventually get the answer I needed six minutes after I first had the question. That was just how it worked. I'd built entire mental workflows around search: formulating the query, skimming results, opening four tabs, cross-referencing, closing three, reading the one that seemed right. It was efficient enough that I'd never really questioned it. Then, one morning in late March, I sat down to work and genuinely couldn't remember the last time I'd gone directly to a search engine for a coding question rather than asking an AI assistant first. And I realized I'd been drifting ...

How I Used AI to Refactor 10,000 Lines of Legacy Code Without Breaking the Project

Image
When I first opened the codebase, I just sat there for a minute. I'd been brought onto a project mid-stream — a freelance contract to add three new features to an existing platform that had been running in production for about six years. The platform worked. Customers were using it daily. Revenue depended on it. My job was, in theory, to add a customer segmentation feature, improve the reporting dashboard, and optimize a slow checkout flow. What I found when I actually opened the repository was a PHP monolith with no tests, inconsistent naming conventions across files that had clearly been written by four or five different developers over the years, business logic scattered between controllers and database queries and occasional JavaScript files that did things that should have happened server-side, and approximately zero documentation. The original developer had left the company two years earlier. Nobody currently at the company fully understood how the whole system fit together...

The Complete AI Workflow Every Software Developer Should Follow in 2026

Image
The way software gets built has changed more in the last two years than in the decade before it. AI coding tools have gone from novelty to daily habit for the majority of professional developers, and the gap between teams using them well and teams using them poorly is becoming one of the more visible performance differences in the industry. But "using AI" is not a strategy. It's a starting point. What actually separates developers who get meaningful productivity gains from those who mostly get faster ways to produce bugs is having a structured workflow — a repeatable sequence of stages where AI plays a defined role at each step, rather than just being something you reach for when you're stuck. This guide is that workflow. Ten steps, from initial idea to ongoing maintenance, with practical guidance on where AI helps, where it doesn't, and what to watch out for at every stage. Whether you're building your first side project or your tenth client application, fo...