AI has rewired my brain
Based on Theo - t3․gg's video on YouTube. If you like this content, support the original creators by watching, liking and subscribing to their content.
DeepSeek’s open-source ecosystem helped shift AI from occasional use to a core daily workflow layer, changing how work gets done end-to-end.
Briefing
DeepSeek’s arrival pushed the shift from “AI as a novelty” to “AI as a daily workflow layer,” and that change has rewired how one developer searches, trusts information, chooses technologies, and even rebuilds software. The core claim isn’t that AI makes people smarter; it’s that AI makes them faster at implementation and iteration—so much faster that old bottlenecks (typing, editor friction, slow research, slow refactors) matter less, while system design and judgment matter more.
On the practical side, search habits have changed. The developer now uses AI for quick, specific queries—like turning a highly detailed ffmpeg command into something they can retrieve instantly—while still relying on traditional search skills when problems get complex, niche, or tied to undocumented edge cases (browser quirks, obscure error-code documentation). The key balancing skill is “AI-aware search”: knowing when to ask narrowly for AI to answer well, and when to fall back to Google-style “Google foo” by stripping queries down to the most general useful terms.
AI has also changed how information is evaluated. Instead of trusting claims based on wording, the developer emphasizes trusting “who” more than “what.” That means checking post histories, looking for consistent expertise, and using mental “red flags” to dismiss bad-faith or careless explanations. A detailed example is Apple’s “battery gate,” where the developer argues the reality was battery-health preservation via throttling behavior (slower ramp to peak performance) rather than intentional planned obsolescence. The broader point: AI can make misinformation sound more authoritative by supplying the right vocabulary, so skepticism and domain knowledge still have to do the heavy lifting.
In development, the biggest rewiring is technology selection and building strategy. The developer predicts there won’t be another “T3 stack”-style era-defining framework because today’s tools are trained on the same ecosystems (React, Python, etc.), and AI accelerates iteration so much that small UX or performance gains can’t justify large accuracy losses in AI-assisted tooling. That pushes decisions toward popularity and ecosystem gravity.
More importantly, AI changes how work gets done: it makes “simple, wrong” prototypes cheap to build and cheap to replace. The developer describes a repeatable loop—ship the easy version, hit the wall quickly, then swap in the harder solution once limitations appear. This shows up in architecture choices too: microservices can be beneficial when communication boundaries are clean (using a URL-triggered Cloudflare Workers-style service for image background removal), and monorepos remain painful because AI struggles with huge, deeply connected codebases.
Finally, AI shifts attention from code-writing to system design and DX. With AI handling boilerplate and tedious transformations, the developer spends more time on orchestration, type safety, and integration boundaries. The result is a stronger preference for patterns that are easy for models to follow—functional pipelines, clear inputs/outputs, and TypeScript type feedback—plus a more aggressive willingness to “sledgehammer” broken or overly complex systems because code is now comparatively cheap and engineers are expensive. The overall takeaway: AI doesn’t remove expertise; it raises the value of judgment, architecture, and the ability to model a system in one’s head while moving fast enough to test ideas before they calcify into expensive mistakes.
Cornell Notes
DeepSeek and open-source AI tools accelerated a shift from occasional AI use to a full workflow change: faster search for specific tasks, more skepticism about online claims, and a new engineering loop built around cheap iteration. The developer argues that AI handles simple, specific requests well but struggles with complex, niche, or relationship-heavy problems—so traditional search skills and domain judgment still matter. In software building, AI makes “simple-first” prototypes practical because rebuilding and replacing wrong approaches is faster than before. That pushes architecture toward clear boundaries, smaller contexts (avoiding monorepo sprawl), and system design over boilerplate. The payoff is more time spent on orchestration, DX, and integration correctness—especially with type safety and editor feedback.
Why does AI change search habits without eliminating the need for traditional research skills?
What does “trust the who, not the what” look like in an AI-heavy information environment?
Why predict there won’t be another “T3 stack” era-defining framework?
How does AI change the cost-benefit of building “simple, wrong” solutions?
Why are microservices sometimes better—and sometimes worse—under AI-assisted development?
What role do type safety and functional structure play in making AI coding more reliable?
Review Questions
- Where should AI-assisted search be trusted, and where should it be treated as unreliable—according to the developer’s criteria?
- Explain the “simple-first, replace after hitting the wall” loop and why AI changes its economics.
- What architectural signals make a codebase easier for AI tools to work with, and what signals make them struggle?
Key Points
- 1
DeepSeek’s open-source ecosystem helped shift AI from occasional use to a core daily workflow layer, changing how work gets done end-to-end.
- 2
AI is strongest for simple, specific queries, but traditional search and domain knowledge remain essential for complex, niche, or undocumented problems.
- 3
Online credibility increasingly depends on verifying the person (“who”) rather than trusting confident phrasing (“what”), because AI can make misinformation sound more authoritative.
- 4
Technology choice is increasingly shaped by ecosystem gravity and AI training data; the developer doubts another era-defining “stack” will emerge like T3.
- 5
AI makes “simple, wrong” prototypes cheap to build and cheap to replace, encouraging rapid iteration instead of long upfront perfection.
- 6
Clean architectural boundaries matter more than ever: microservices can help when communication is minimal, while monorepos can hinder AI due to context overload.
- 7
Type safety and editor-integrated feedback become borderline essential for scaling AI-assisted development without breaking integrations.