Skip to content
William Alexander
  • Home
  • Case Studies
  • Personal Projects
  • Articles
  1. Home
  2. Articles
  3. AI Tools I Actually Use Every Day
AI for Business

AI Tools I Actually Use Every Day

Practical AI for a working web developer

December 27, 2025 9 min read

Key Takeaways

  • Claude for code assistance, complex reasoning, and content drafting
  • GitHub Copilot for in-editor code completion (context-aware suggestions)
  • Stable Diffusion for image generation (local, no per-image costs)
  • AI saves hours weekly but requires verification—never trust output blindly
  • Start with one tool, learn its strengths and limits, then expand
Overview

Beyond the Hype

Every week brings announcements of revolutionary AI tools that will transform everything. Most of them don't make it into my actual workflow. Here's what has—the tools I reach for daily, not the ones I tried once and forgot.

I'm a working web developer. My criteria for AI tools is simple: does it save me time while maintaining quality? Does it fit naturally into how I already work? Is the output reliable enough to trust (with verification)?

The Real Test

Plenty of AI tools are impressive demos. Fewer are actually useful for daily work. The gap between "wow, that's cool" and "this saves me time every day" is larger than the marketing suggests.

Claude

Claude: My Primary AI Assistant

Claude (from Anthropic) has become my most-used AI tool. I use it for code assistance, content drafting, research, and problem-solving.

What I Use It For

  • Code review and debugging: Paste problematic code, get explanations and fixes
  • Writing code: Describe what I need, get working implementations to refine
  • Documentation: Turn rough notes into readable documentation
  • Research: Explaining unfamiliar concepts, comparing approaches
  • Content drafting: First drafts of articles, emails, proposals

Why Claude Over Others

  • Better at following complex instructions
  • Longer context window for large codebases
  • More nuanced, less robotic writing style
  • Better at admitting uncertainty

Limitations I've Learned

  • Knowledge cutoff means it doesn't know about recent library versions
  • Can confidently provide incorrect information
  • Sometimes over-engineers solutions
  • Needs clear, specific prompts for best results

My Claude Workflow

I use Claude through the API with a custom terminal interface (Claude Code). For quick questions, web interface works fine. For development work, having it integrated with my editor is essential.
Copilot

GitHub Copilot: In-Editor Assistance

Copilot lives in my editor and suggests code as I type. It's like autocomplete on steroids.

What It Does Well

  • Completing repetitive code patterns
  • Writing boilerplate you've written a hundred times
  • Suggesting function implementations from names and comments
  • Filling in obvious next steps

Real Productivity Gains

  • Writing test cases: describe the test, Copilot writes the assertions
  • CRUD operations: define the pattern once, it continues
  • Documentation comments: write one, it suggests the rest
  • Regex patterns: describe what you need, get a starting point

Where It Falls Short

  • Complex business logic—it doesn't understand your requirements
  • Security-sensitive code—it may suggest vulnerable patterns
  • Novel problems—it's great at patterns, not innovation
  • Sometimes suggests outdated approaches

Trust But Verify

Copilot suggestions look plausible but aren't always correct. I review every suggestion before accepting. It's a first draft, not a final answer.
Images

Image Generation: Stable Diffusion

I run Stable Diffusion locally for generating images. It's useful for placeholder images, concept visualization, and sometimes final assets.

Why Local Over Cloud Services

  • No per-image costs (just electricity)
  • Complete privacy—images never leave my machine
  • No content restrictions for legitimate business use
  • Can run specialized models for specific needs

What I Generate

  • Hero images for articles (like this one)
  • Placeholder images during development
  • Concept images for client presentations
  • Social media graphics

Limitations

  • Text in images is usually garbled
  • Specific compositions require many attempts
  • Hands and faces can be problematic
  • Requires learning prompt engineering

The Hardware Reality

Running Stable Diffusion locally requires a decent GPU or an M1/M2/M3 Mac. On my Mac, generation takes 30-60 seconds per image. Cloud services are faster but cost per image.

Workflow

How These Tools Fit Together

Different tools for different tasks:

Task Tool Why
Writing new code Claude Better reasoning for complex logic
Code completion while typing Copilot Integrated in editor, fast
Debugging Claude Can explain and suggest fixes
Writing content Claude Better writing quality
Research/learning Claude Good explanations
Image generation Stable Diffusion Local, free, private
Quick questions Whatever is open Speed matters

A Typical Day

  • Morning: Check messages, use Claude to draft any complex responses
  • Coding: Copilot suggestions as I type, Claude for complex problems
  • Content work: Claude for drafts, then heavy human editing
  • Images: Stable Diffusion when I need graphics
  • Documentation: Claude to help structure and clarify
Dropped

What I Tried and Dropped

Not everything sticks. Here's what didn't make the cut:

ChatGPT

Still useful, but Claude has become my default. ChatGPT's writing feels more generic, and it's more likely to give me what it thinks I want rather than what I need.

AI Meeting Transcription

Tried several services. The transcription is good, but I found I never went back to read them. Turns out I don't need AI notes—I need fewer meetings.

AI Email Writing

The emails it wrote didn't sound like me. Clients noticed. I still draft important emails myself; AI helps with routine responses.

Various Specialized Tools

AI tools for specific tasks (SEO, social media, etc.) often underwhelmed. A general-purpose tool with good prompting usually works better.

Time

Honest Assessment of Time Savings

AI tools save me real time, but less than the marketing suggests.

Where I Save Time

  • Boilerplate code: 50-70% faster
  • First drafts of content: 30-40% faster
  • Research and learning: Significant (hard to quantify)
  • Debugging: Sometimes faster, sometimes slower
  • Documentation: 40-50% faster

Hidden Time Costs

  • Reviewing and correcting AI output
  • Reprompting when results aren't right
  • Debugging AI-suggested code that doesn't work
  • Learning to use tools effectively

Net Result

Accounting for review time and corrections, AI tools save me roughly 5-10 hours per week. Substantial, but not the "10x productivity" some claim. The bigger benefit is handling tedious tasks so I can focus on interesting problems.
Getting Started

Advice for Getting Started

If you're not using AI tools yet, here's how to start:

  1. Start with one tool

    Claude or ChatGPT. Learn it well before adding more. Most people try too many tools and master none.

  2. Use it for real work

    Not just playing around—apply it to actual tasks. That's how you learn what it's good at.

  3. Learn to prompt well

    Clear, specific prompts get better results. Include context, examples, and constraints.

  4. Always verify output

    AI makes confident mistakes. Check facts, test code, review for errors.

  5. Find your workflow

    Tools should fit how you work, not force you into new patterns. Adapt tools to your needs.

For Developers

Start with Copilot for in-editor completion. Add Claude for complex problems. The combination covers most coding needs.

For Business Users

Start with Claude or ChatGPT for writing and research. That alone covers most business AI use cases. Add specialized tools only if you have specific needs.

Conclusion

The Reality Check

AI tools are genuinely useful. They save me time, help me learn, and handle tedious tasks. But they're tools, not magic.

The people getting the most value from AI are those who:

  • Already have expertise in their field (AI augments skill, doesn't replace it)
  • Take time to learn the tools well
  • Verify and refine AI output
  • Use AI for appropriate tasks (not everything)

If you're skeptical about AI hype, you're right to be. If you're ignoring AI tools entirely, you're missing genuine productivity gains. The truth is in the middle: useful tools with real limitations, worth learning but not worth believing everything you hear about them.

Start with one tool. Use it for real work. Learn what it does well and poorly. Then decide if you want more.

Frequently Asked Questions

What AI tools are best for web developers?

For coding: Claude or GitHub Copilot for code assistance, depending on your workflow. For content: Claude or ChatGPT for drafting and editing. For images: Midjourney or DALL-E. Start with one tool, learn it well, then expand.

How much do these AI tools cost?

Claude Pro: $20/month. ChatGPT Plus: $20/month. GitHub Copilot: $10-19/month. Midjourney: $10-30/month. Most offer free tiers to try before committing. Total cost for a productive AI toolkit: $30-70/month.

Do AI coding assistants replace the need to know how to code?

No. AI accelerates developers who understand fundamentals. It generates code that looks right but may be wrong, inefficient, or insecure. You need expertise to evaluate and improve AI output. It's a power tool, not a replacement for skill.

What are the biggest limitations of AI tools?

Accuracy—AI confidently produces wrong information. Context limits—can't understand your full codebase. Currency—training data has cutoff dates. Security—be careful what you share with AI services. Always verify AI output.
AI Productivity Developer Tools Workflow Technology
William Alexander

William Alexander

Senior Web Developer

25+ years of web development experience spanning higher education and small business. Currently Senior Web Developer at Wake Forest University.

Related Articles

AI for Business

How I Use AI to Build Websites Faster

10 min read
AI for Business

Chatbots vs. AI Assistants: What's Right for Your Website?

9 min read

Want to discuss practical AI for your business?

I help businesses cut through AI hype and implement tools that actually improve productivity. Let's talk about what might work for you.

© 2026 williamalexander.co. All rights reserved.