<?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: Kent C. Dodds</title>
    <description>The latest articles on DEV Community by Kent C. Dodds (@kentcdodds).</description>
    <link>https://dev.to/kentcdodds</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%2F50802%2F99f2baf8-aee1-4fc6-8dc0-63f0dda5244b.jpg</url>
      <title>DEV Community: Kent C. Dodds</title>
      <link>https://dev.to/kentcdodds</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kentcdodds"/>
    <language>en</language>
    <item>
      <title>🎙 Introducing the new "Chats with Kent" podcast! 🎉</title>
      <dc:creator>Kent C. Dodds</dc:creator>
      <pubDate>Thu, 08 Aug 2019 14:49:12 +0000</pubDate>
      <link>https://dev.to/kentcdodds/introducing-the-new-chats-with-kent-podcast-4k68</link>
      <guid>https://dev.to/kentcdodds/introducing-the-new-chats-with-kent-podcast-4k68</guid>
      <description>&lt;p&gt;I've always loved podcasting. I started &lt;a href="https://angularair.com/" rel="noopener noreferrer"&gt;Angular Air&lt;/a&gt;, &lt;a href="https://javascriptair.com/" rel="noopener noreferrer"&gt;JavaScript Air&lt;/a&gt;, &lt;a href="https://react30.com/" rel="noopener noreferrer"&gt;React30&lt;/a&gt;, and &lt;a href="https://kcd.im/3-mins" rel="noopener noreferrer"&gt;3 Minutes With Kent&lt;/a&gt;. I'm not really active with any of these anymore, and I've missed having interesting conversations with interesting people.&lt;/p&gt;

&lt;p&gt;That's why I've started the &lt;a href="https://kentcdodds.com/chats-with-kent-podcast" rel="noopener noreferrer"&gt;Chats with Kent C. Dodds&lt;/a&gt; podcast. It's an awesome place where I talk with interesting people about interesting topics and you leave with key takeaways that you can apply to help you improve your life, career, and development skills.&lt;/p&gt;

&lt;p&gt;In a true Netflix-style release, I've published the entire 1st season of 14 episodes today! Go binge to your heart's content!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://kentcdodds.com/chats-with-kent-podcast" rel="noopener noreferrer"&gt;&lt;strong&gt;Subscribe to Chats with Kent C. Dodds&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;iframe class="tweet-embed" id="tweet-1159468138926182400-642" src="https://platform.twitter.com/embed/Tweet.html?id=1159468138926182400"&gt;
&lt;/iframe&gt;

  // Detect dark theme
  var iframe = document.getElementById('tweet-1159468138926182400-642');
  if (document.body.className.includes('dark-theme')) {
    iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1159468138926182400&amp;amp;theme=dark"
  }



&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>podcast</category>
      <category>softwareengineering</category>
      <category>career</category>
    </item>
    <item>
      <title>What's hard about React Hooks for you?</title>
      <dc:creator>Kent C. Dodds</dc:creator>
      <pubDate>Sun, 21 Jul 2019 16:07:38 +0000</pubDate>
      <link>https://dev.to/kentcdodds/what-s-hard-about-react-hooks-for-you-f0n</link>
      <guid>https://dev.to/kentcdodds/what-s-hard-about-react-hooks-for-you-f0n</guid>
      <description>&lt;p&gt;As you've been using/learning about React Hooks, what have been the hardest parts for you? #discuss&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>react</category>
      <category>reacthooks</category>
    </item>
    <item>
      <title>What do you think of React Testing Library?</title>
      <dc:creator>Kent C. Dodds</dc:creator>
      <pubDate>Sun, 21 Jul 2019 13:59:49 +0000</pubDate>
      <link>https://dev.to/kentcdodds/what-do-you-think-of-react-testing-library-1d1e</link>
      <guid>https://dev.to/kentcdodds/what-do-you-think-of-react-testing-library-1d1e</guid>
      <description>&lt;p&gt;I wrote &lt;a href="https://testing-library.com/react"&gt;React Testing Library&lt;/a&gt; about a year and a half ago because I was teaching testing workshops and I wasn't happy with enzyme. I felt like there was so much I had to tell people to not use in enzyme (like the API was some kind of mine field). So I created React Testing Library and I've been very happy with it.&lt;/p&gt;

&lt;p&gt;I'd love to hear what others think. And have you had a chance to use any other members of the &lt;a href="https://testing-library.com"&gt;Testing Library Family&lt;/a&gt;, like DOM Testing Library, Cypress Testing Library, Vue Testing Library, etc? I'd love to hear your thoughts on that too!&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>react</category>
      <category>testing</category>
    </item>
    <item>
      <title>Read the React Hooks docs (again)</title>
      <dc:creator>Kent C. Dodds</dc:creator>
      <pubDate>Sun, 21 Jul 2019 13:18:21 +0000</pubDate>
      <link>https://dev.to/kentcdodds/read-the-react-hooks-docs-again-58e5</link>
      <guid>https://dev.to/kentcdodds/read-the-react-hooks-docs-again-58e5</guid>
      <description>&lt;p&gt;I was reading &lt;a href="https://reactjs.org/hooks"&gt;the React Hooks docs&lt;/a&gt; again yesterday and noticed that they've improved since the last time I reviewed them. I get a lot of questions from people about React Hooks, (and understandably so, there's a bit of a learning curve) and so many of the questions are answered in the React Hooks documentation (especially &lt;a href="https://reactjs.org/docs/hooks-faq.html"&gt;the FAQ&lt;/a&gt;) or by searching "hook" on &lt;a href="https://kcd.im/search"&gt;my blog&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;So if it's been a while, give the docs another look. You'll definitely learn something new! Then come back here and comment on what it was you learned 😉 let's learn together.&lt;/p&gt;

</description>
      <category>react</category>
      <category>reacthooks</category>
    </item>
  </channel>
</rss>
