profile

Creator Leverage: Master AI. Build Systems. Grow Your Business

📩 Subscribe now and get my free guide: 101 Prompts for Writing with AI

James Patterson popped into my inbox

I got an email from James Patterson's team last week. They'd read my book. They loved the part about plucking chickens before becoming a writer. They referenced my podcast, my USA Today bestseller, my Become a Writer Today brand. Here's what he opened with: > "My name is James Patterson. I'm perhaps best known for my thrillers Alex Cross, the Women's Murder Club, Michael Bennett but what fewer people know is that I've spent decades thinking about productivity, about how to get things done...

I mass-accepted every AI code change for a week

Claude Code has an insanely powerful... and dangerous feature. It's called "dangerously allow browser." It auto-accepts every edit without asking permission. I turned it on because I was tired of clicking approve like one of those wooden drinking bird toys. Day 1: Fast. Exhilarating. Day 3: My codebase had 14 files I didn't recognise. Day 5: I found a function that called itself in an infinite loop. I didn't panic. But I did spend an entire evening untangling changes I'd never reviewed....

I asked my AI to grade itself (the performance review I wasn't ready for)

Claude Code has a command most people don't know about. Type /insights. That's it. It reviews all your coding sessions from the last 7 days. Then it generates an HTML report. What you worked on. What mistakes you made. Where you wasted time. I ran it last week. Here's what it told me: "A single 6-hour session is far less effective than starting a new chat for each job." I'd been running marathon coding sessions. Open Claude Code in the morning. Work until lunch. Keep going after lunch. Same...

I quit using ChatGPT for coding

I quit using ChatGPT for coding. Not because it's bad. Not because I'm an AI snob. Because I kept switching tabs. Here's what happened: I was building a trading CLI. Python, API integrations, 13 files, timezone logic that kept breaking. Every time I needed help, I'd copy code into ChatGPT in the browser. Paste the response back. Lose context. Repeat. Then I switched to Claude Code in the terminal. Same place I write code. Same place I run tests. No tab switching. In one session I: Refactored...

My Telegram AI assistant is a real time saver

My Telegram AI assistant is a real time saver. It has access to my entire vault — 4,000+ notes, daily worklog entries, open tasks, project frameworks, everything. When I ask a question in Telegram, it doesn't just give generic advice. It pulls from my actual recent work, connects patterns across notes, and responds in my voice. Example: "What should I work on today?" It checks my open tasks, recent worklog entries, deadlines, and suggests priorities based on what I've actually been building....

I coded an AI endurance coach in 30 minutes

I coded an AI endurance coach in 30 minutes. Not a chatbot that says "You got this!" I used Claude Code. Here's what I built: First, I wrote an athlete profile. My PBs, my injury history, my limiters. One paragraph of honest context. Then I crafted a system prompt based around the Norwegian Method. That's 80% easy, 20% at threshold. No middle ground. The key was building logic gates into the prompt: Gate 1: IF hip tightness > 7 THEN lock out running. Only prescribe mobility. Gate 2: IF heart...

I asked AI to test itself (it found a bug I missed)

I've been building software with AI coding assistants for a few months now. Last night I added a Monte Carlo simulation tool to a project. The AI wrote the function, the schema, the docs. Everything looked right. Then I tried something different. Instead of eyeballing the diff, I asked the AI: "Import all the modules. Call the new functions. Prove this works." 30 seconds later, the AI reported 7 tools registered instead of 8. The Monte Carlo handler was fully coded but never wired up. Dead...