<?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.us-east-2.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>TypeScript Is the Default for Writing JavaScript</title>
      <dc:creator>Brad Traversy</dc:creator>
      <pubDate>Mon, 24 Aug 2026 16:35:00 +0000</pubDate>
      <link>https://dev.to/bradtraversy/typescript-is-the-default-for-writing-javascript-4aph</link>
      <guid>https://dev.to/bradtraversy/typescript-is-the-default-for-writing-javascript-4aph</guid>
      <description>&lt;p&gt;JavaScript is FAR from dead, but its job description has changed. For a lot of modern web work, TypeScript has become the default way to write JavaScript, even though the code that ships is still plain JavaScript underneath.&lt;/p&gt;

&lt;p&gt;That shift shows up everywhere: React, Vue, Angular, Node.js, monorepos, mobile apps, desktop apps, and even the application layer around AI. The real question is no longer whether people use JavaScript. It is where raw JavaScript still fits best, and why so many projects now start with TypeScript instead.&lt;/p&gt;

&lt;p&gt;I also created a &lt;a href="https://www.youtube.com/watch?v=NAIC9sjBgZA" rel="noopener noreferrer"&gt;YouTube video&lt;/a&gt; on this topic.&lt;/p&gt;

&lt;h2&gt;
  
  
  TypeScript Has Become the Default Across the Modern Stack
&lt;/h2&gt;

&lt;p&gt;A big part of the answer is simple scale. &lt;a href="https://github.blog/news-insights/octoverse/octoverse-a-new-developer-joins-github-every-second-as-ai-leads-typescript-to-1/" rel="noopener noreferrer"&gt;GitHub's 2025 Octoverse report&lt;/a&gt; says TypeScript became the number one language on GitHub by monthly contributors, passing both Python and JavaScript. The &lt;a href="https://2025.stateofjs.com/en-US/usage/" rel="noopener noreferrer"&gt;2025 State of JavaScript survey&lt;/a&gt; found that respondents spent an average of 77% of their JavaScript and TypeScript coding time writing TypeScript.&lt;/p&gt;

&lt;p&gt;That does not mean TypeScript replaced JavaScript. GitHub still saw more new JavaScript repositories overall. But the trend is obvious: TypeScript has become the normal choice for modern application development, especially once a project starts growing beyond a tiny script.&lt;/p&gt;

&lt;h2&gt;
  
  
  React, Vue, Angular, and Node.js Have Made Typed Workflows Feel Standard
&lt;/h2&gt;

&lt;p&gt;The front end is where the shift feels most visible. React supports TypeScript fully, Vue is written in TypeScript and supports it first class, and Angular has used TypeScript classes for components since Angular 2. You can still write regular JavaScript with React or Vue, but many popular app starters now default to TypeScript, while tools like Vite place JavaScript and TypeScript templates side by side.&lt;/p&gt;

&lt;p&gt;The back end has moved too. Current versions of Node.js can run &lt;code&gt;.ts&lt;/code&gt; files directly when they use erasable TypeScript syntax, stripping the types before executing the remaining JavaScript. Node does not type-check the code, read &lt;code&gt;tsconfig.json&lt;/code&gt;, or support every TypeScript feature through type stripping, but the built-in support still makes simple TypeScript workflows easier.&lt;/p&gt;

&lt;p&gt;That becomes especially useful in a monorepo, where the front end, an API, a background worker, and a shared package all live together. Instead of defining a user, product, or API response in three different places, you define it once and reuse it everywhere.&lt;/p&gt;

&lt;p&gt;A few patterns make that appeal really clear:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Shared types cut duplication across client, server, and worker code.&lt;/li&gt;
&lt;li&gt;Zod lets you define a schema once, infer TypeScript from it, and validate real data at runtime with the same source of truth.&lt;/li&gt;
&lt;li&gt;React Native projects now often default to TypeScript for mobile work.&lt;/li&gt;
&lt;li&gt;Electron templates commonly use TypeScript for desktop apps.&lt;/li&gt;
&lt;li&gt;Vercel's AI SDK puts TypeScript right at the center of AI application code.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Once you stack all of that together, TypeScript is not just a nicer editor experience. It has become a shared language across a huge part of the application stack.&lt;/p&gt;

&lt;h2&gt;
  
  
  TypeScript Won Because It Made JavaScript Feel Safer and More Legible
&lt;/h2&gt;

&lt;p&gt;The appeal is not mysterious. TypeScript brought ideas that developers already knew from languages like Java, C, and C++ into the JavaScript world. That mattered a lot when JavaScript still had a reputation as a toy language, mostly good for form validation and dropdowns.&lt;/p&gt;

&lt;p&gt;The practical wins are what keep people using it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Renaming a shared field, like changing &lt;code&gt;name&lt;/code&gt; to &lt;code&gt;fullName&lt;/code&gt;, can instantly reveal every component, API route, or function that still depends on the old field.&lt;/li&gt;
&lt;li&gt;Autocomplete becomes more accurate because the editor understands what a function expects.&lt;/li&gt;
&lt;li&gt;Types act like contracts, so different pieces of the codebase describe how they fit together.&lt;/li&gt;
&lt;li&gt;Refactors get safer because you can jump to definitions and rename things across a project with more confidence.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is also less friction than there used to be. Frameworks, libraries, and build tools now support TypeScript extremely well, and its inference has improved enough that you often get strong type checking without annotating everything manually. That means you can pick up better autocomplete, safer refactors, and clearer feedback without turning the whole project into a ceremony festival.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;It's just one more useful layer of feedback.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And that matters even more when AI is writing part of the code. An agent can still produce perfectly typed garbage, so TypeScript should never replace tests or code review. It just gives you another check on top of the others.&lt;/p&gt;

&lt;h2&gt;
  
  
  Learn JavaScript First, Then Add TypeScript When the Project Earns It
&lt;/h2&gt;

&lt;p&gt;Beginners should still learn JavaScript first. If the goal is web development, skipping straight to TypeScript syntax is backwards. Learn functions, objects, arrays, scope, asynchronous JavaScript, the DOM, and how the language behaves at runtime before layering anything on top.&lt;/p&gt;

&lt;p&gt;That foundation matters because weird TypeScript bugs are usually really JavaScript problems in disguise. Once those fundamentals are solid, TypeScript becomes the next step, not the first step. You do not need to become a type-system wizard. You just need to recognize the types you will see in real projects and learn how to read the errors.&lt;/p&gt;

&lt;p&gt;Still, JavaScript has real jobs that TypeScript does not always improve. Plain JavaScript can be the better choice when the work is small, quick, or intentionally simple:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;A tiny script or quick prototype often does not need the extra setup.&lt;/li&gt;
&lt;li&gt;A low-code project can move faster without types getting in the way.&lt;/li&gt;
&lt;li&gt;Teaching fundamentals is sometimes easier when the type system is not clouding the lesson.&lt;/li&gt;
&lt;li&gt;A one-off file that just needs a few lines and a run command can be better left alone.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Choosing JavaScript does not make the work amateurish. It means the tradeoff makes sense. TypeScript adds value, but it also adds concepts, configuration, and another class of errors to understand. Use JavaScript when simplicity wins, and reach for TypeScript when the project has enough moving parts to deserve the extra structure.&lt;/p&gt;

&lt;p&gt;JavaScript still powers the web, but TypeScript now shapes how a huge part of the ecosystem gets built. The smartest choice is not picking a side; it is knowing when the typed version earns its keep.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This article was adapted from &lt;a href="https://www.youtube.com/watch?v=NAIC9sjBgZA" rel="noopener noreferrer"&gt;Has TypeScript Become the Default Way to Write JavaScript?&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>typescript</category>
      <category>javascript</category>
      <category>webdev</category>
    </item>
    <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>
