<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Brad Traversy</title>
    <description>The latest articles on DEV Community by Brad Traversy (@bradtraversy).</description>
    <link>https://dev.to/bradtraversy</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F137487%2F6d6a2ec4-2729-4ade-8f2a-bc5f82055bd7.png</url>
      <title>DEV Community: Brad Traversy</title>
      <link>https://dev.to/bradtraversy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bradtraversy"/>
    <language>en</language>
    <item>
      <title>I've Changed My Opinion On Vibe Coding</title>
      <dc:creator>Brad Traversy</dc:creator>
      <pubDate>Mon, 18 May 2026 15:35:01 +0000</pubDate>
      <link>https://dev.to/bradtraversy/ive-changed-my-opinion-on-vibe-coding-4ad8</link>
      <guid>https://dev.to/bradtraversy/ive-changed-my-opinion-on-vibe-coding-4ad8</guid>
      <description>&lt;p&gt;As I said in this &lt;a href="https://www.youtube.com/watch?v=4V5G3wtrmhg" rel="noopener noreferrer"&gt;video&lt;/a&gt;, I used to be pretty skeptical of vibe coding. Watching people ship apps without understanding a single line of what was generated always felt like a disaster waiting to happen, especially when beginners hit the first real bug and have no idea where to start. And the idea that you can build successful software or SaaS without learning software development? I never bought that for a second.&lt;/p&gt;

&lt;p&gt;That said, my opinion has shifted a bit. The models are better, I've been using &lt;strong&gt;Claude Code&lt;/strong&gt;, &lt;strong&gt;GPT-5.5&lt;/strong&gt;, and &lt;strong&gt;OpenClaw&lt;/strong&gt; in a much more serious way, and I've seen firsthand where AI can actually carry real weight. The catch is that it only works when you already understand what you're doing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Vibe coding is the extreme end of the AI coding spectrum
&lt;/h2&gt;

&lt;p&gt;There's a real spectrum when it comes to coding with AI. On one end, you have one-shot prompting with platforms like &lt;strong&gt;Lovable&lt;/strong&gt;. On the other, you have autocomplete in &lt;strong&gt;VS Code&lt;/strong&gt;. Somewhere in the middle is the sweet spot: let the agent write the code, but you still make the architectural decisions, write the specs, and test the result.&lt;/p&gt;

&lt;p&gt;That middle ground is what I actually teach in my AI course, and it's a lot different from what I mean by vibe coding.&lt;/p&gt;

&lt;p&gt;Vibe coding, to me, is when you're barely looking at the code at all. You're going off the vibes instead of the syntax, and for a long time I was totally against that. I still think a lot of people confuse "using AI" with "understanding software," and those are not the same thing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Better models changed the equation, not the rules
&lt;/h2&gt;

&lt;p&gt;A big part of why I've softened is simple: the models are just better now. &lt;strong&gt;Claude Opus 4.7&lt;/strong&gt; with &lt;strong&gt;Claude Code&lt;/strong&gt;, &lt;strong&gt;GPT-5.5&lt;/strong&gt; with &lt;strong&gt;Codex&lt;/strong&gt;, and even &lt;strong&gt;OpenClaw&lt;/strong&gt; with &lt;strong&gt;GPT-5.5&lt;/strong&gt; are all good enough that, if you know how to direct them, they can do a lot of the heavy lifting.&lt;/p&gt;

&lt;p&gt;I'm seeing less hallucination, more first-try success, and a lot less need to babysit every line the way I would have with something like &lt;strong&gt;GPT-5.3&lt;/strong&gt;. That matters.&lt;/p&gt;

&lt;p&gt;But the model getting better is only half the story. The other half is that I've learned how to work with these systems more effectively. I know how to manage context and memory, how to map out documentation and spec files, and how to steer the model toward the outcome I want.&lt;/p&gt;

&lt;p&gt;That's exactly why I'm not willing to pretend the tool alone is enough. Better output does not erase the need for actual judgment.&lt;/p&gt;

&lt;h2&gt;
  
  
  Foundation still decides who can use AI well
&lt;/h2&gt;

&lt;p&gt;I'm not budging on this part: vibe coding is not okay under any circumstance if you do not have a foundation in software development and architecture. If you do not understand the basics, AI does not magically create them for you.&lt;/p&gt;

&lt;p&gt;A few things make up that foundation:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;How the web actually works&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You need to understand requests, responses, status codes, and what happens between the browser and the server. Without that, you're just guessing at what the app is doing.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;How data is structured&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You need to understand how to model data, how relationships work, and what an index is. If the data model is fuzzy, the app will be fuzzy too.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;How to read code, not just write it&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You need enough hand-written code under your belt that you can read code and actually see what it's doing, instead of skimming past it like noise.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;How debugging feels in real life&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You need to have been burned by enough bugs to recognize bad patterns. That kind of pattern recognition does not come from prompting.&lt;/p&gt;

&lt;p&gt;You do not need a CS degree. You do not need to memorize sorting algorithms. You do not need to be a genius. But you do need to have built things from scratch, broken them, fixed them, and learned what failure looks like.&lt;/p&gt;

&lt;p&gt;That confidence is the dangerous part.&lt;/p&gt;

&lt;h2&gt;
  
  
  Beginners should use AI to learn faster, not skip learning
&lt;/h2&gt;

&lt;p&gt;I am not saying beginners should stop using AI tools. That ship has sailed, and fighting it is the wrong move. The better move is to change what you use them for.&lt;/p&gt;

&lt;p&gt;Use AI to accelerate learning, not to bypass it.&lt;/p&gt;

&lt;p&gt;There's a huge difference between those two things, and that difference is where most people go wrong. If you're new, let the model explain the code it generates. Type it out yourself. Break it on purpose. Then figure out why it broke.&lt;/p&gt;

&lt;p&gt;That process is where the actual growth happens, and it's also why the developers who will do well over the next few years are not just the ones who can prompt well. They're the ones who can prompt well, read code, design systems, and debug under pressure.&lt;/p&gt;

&lt;p&gt;The AI handles the typing. You still have to handle the thinking.&lt;/p&gt;

&lt;h2&gt;
  
  
  Vibe coding works best after you've earned the right to trust it
&lt;/h2&gt;

&lt;p&gt;Once you're past the learning stage, vibe away. Seriously. If you already have the foundation, AI can be an incredible force multiplier, and I've been using it that way in my own workflow and in my home lab with eight machines managed by &lt;strong&gt;OpenClaw&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;But it should not become your entire workflow for every project. If you rely on it for everything, you will forget too much and become too dependent on it. That's where the trouble starts.&lt;/p&gt;

&lt;p&gt;My position now is simpler than my old one. I am not against vibe coding anymore. I just think it should be a tool, not the whole system.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The AI handles the typing. You still have to handle the thinking.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And that is the whole line between useful and dangerous: let &lt;strong&gt;Claude&lt;/strong&gt;, &lt;strong&gt;GPT-5.5&lt;/strong&gt;, and the rest speed you up, but never let them replace the part of the job that actually makes you a developer.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This article was adapted from &lt;a href="https://www.youtube.com/watch?v=4V5G3wtrmhg" rel="noopener noreferrer"&gt;I've Changed My Opinion On Vibe Coding&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>programming</category>
      <category>vibecoding</category>
    </item>
    <item>
      <title>I Built DevSheets.io - A Modern Cheat Sheet Site for Developers (And Why We Still Need Them)</title>
      <dc:creator>Brad Traversy</dc:creator>
      <pubDate>Mon, 13 Oct 2025 11:37:53 +0000</pubDate>
      <link>https://dev.to/bradtraversy/i-built-devsheetsio-a-modern-cheat-sheet-site-for-developers-and-why-we-still-need-them-31bp</link>
      <guid>https://dev.to/bradtraversy/i-built-devsheetsio-a-modern-cheat-sheet-site-for-developers-and-why-we-still-need-them-31bp</guid>
      <description>&lt;p&gt;We've all been there. You're deep in a coding session, need to remember that one Git command, or the syntax for a CSS flexbox property. You Google it, click the first result, and... ads everywhere. Outdated information. Slow loading. Ten paragraphs before getting to the actual answer.&lt;/p&gt;

&lt;p&gt;That's why I built &lt;a href="https://devsheets.io" rel="noopener noreferrer"&gt;DevSheets.io&lt;/a&gt; - a modern, fast, and clean cheat sheet platform designed the way developers actually work.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem with Existing Cheat Sheets
&lt;/h2&gt;

&lt;p&gt;Don't get me wrong - there are some great resources out there. But many suffer from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Information overload without structure&lt;/strong&gt; - Everything on one massive scrollable page&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Outdated content&lt;/strong&gt; - Still showing jQuery examples in 2025&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Terrible UX&lt;/strong&gt; - Intrusive ads, slow loading, poor mobile experience&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No search&lt;/strong&gt; - Finding specific commands means Ctrl+F through walls of text&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something that felt native to how we actually code - quick, focused, and just works. I have been creating educational content on web dev and other tech topics for years and I have taken the stuff that people often struggle with, and put it into short, concise sheets that are easy to understand.&lt;/p&gt;

&lt;p&gt;It does not cost a dime and there are not even any advertisements. It is completely free to view all 50+ sheets.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Makes DevSheets Different
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. &lt;strong&gt;Clean, Focused Design&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Each cheat sheet is organized logically with a clear table of contents. No distractions, no ads. Just the information you need.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. &lt;strong&gt;Modern Tech Coverage&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;We focus on technologies developers actually use in 2025:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;React Router v7 (with the new Library and Framework modes)&lt;/li&gt;
&lt;li&gt;TanStack Query for server state management
&lt;/li&gt;
&lt;li&gt;Docker commands and orchestration&lt;/li&gt;
&lt;li&gt;Modern JavaScript patterns (async/await, modules, etc.)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. &lt;strong&gt;Estimated Read Time &amp;amp; Difficulty&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Every sheet shows how long it'll take to reference and the complexity level. Planning to learn TypeScript? You'll know it's a 10-minute intermediate-level reference before you dive in.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. &lt;strong&gt;Built for Speed&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;The entire site is optimized for performance. No bloat, instant navigation, works great on mobile when you're pair programming and need a quick reference.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;p&gt;For the tech-curious, here's what powers DevSheets:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend&lt;/strong&gt;: React 19, Next.js 15, TypeScript&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend &amp;amp; DB&lt;/strong&gt; - Next.js, Prisma, PostgreSQL (Neon)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Styling&lt;/strong&gt;: Clean, responsive CSS with Tailwind CSS&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DevOps&lt;/strong&gt; - Vercel, Github Actions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content&lt;/strong&gt;: Structured data that's easy to update and maintain&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Icons&lt;/strong&gt;: Custom SVG icons for each technology as well as Heroicons&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm also considering:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Dark mode toggle (because of course)&lt;/li&gt;
&lt;li&gt;Downloadable PDFs for offline reference&lt;/li&gt;
&lt;li&gt;Community contributions for niche technologies&lt;/li&gt;
&lt;li&gt;Interactive examples for certain concepts&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why I'm Sharing This
&lt;/h2&gt;

&lt;p&gt;I built DevSheets because I needed it myself. The best tools often come from scratching your own itch. &lt;/p&gt;

&lt;p&gt;But here's the thing - &lt;strong&gt;I want your feedback&lt;/strong&gt;. What cheat sheets are you missing? What could be better organized? What technologies should I add next?&lt;/p&gt;

&lt;p&gt;Check it out at &lt;a href="https://devsheets.io" rel="noopener noreferrer"&gt;devsheets.io&lt;/a&gt; and let me know what you think in the comments.&lt;/p&gt;

&lt;h2&gt;
  
  
  For Fellow Builders
&lt;/h2&gt;

&lt;p&gt;If you're thinking about creating a developer tool or resource:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Start with your own pain point&lt;/strong&gt; - If you need it, others probably do too&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Keep it simple&lt;/strong&gt; - Don't over-engineer v1&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Make it fast&lt;/strong&gt; - Developers have zero patience for slow sites&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Get feedback early&lt;/strong&gt; - Build in public, share often&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The web is full of resources, but there's always room for something done better, faster, or with more care for the user experience.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;What cheat sheets do you find yourself referencing most often? Drop a comment below!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://devsheets.io" rel="noopener noreferrer"&gt;Visit DevSheets.io&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
