<?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: Matthew</title>
    <description>The latest articles on DEV Community by Matthew (@turbodiesel92).</description>
    <link>https://dev.to/turbodiesel92</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%2F992956%2F1ac2a910-8d19-4b3c-a3a6-f9beccff660c.jpeg</url>
      <title>DEV Community: Matthew</title>
      <link>https://dev.to/turbodiesel92</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/turbodiesel92"/>
    <language>en</language>
    <item>
      <title>Fetch Statements</title>
      <dc:creator>Matthew</dc:creator>
      <pubDate>Thu, 22 Dec 2022 21:57:44 +0000</pubDate>
      <link>https://dev.to/turbodiesel92/fetch-statements-4g8n</link>
      <guid>https://dev.to/turbodiesel92/fetch-statements-4g8n</guid>
      <description>&lt;p&gt;fetch('&lt;a href="http://example.com/movies.json'"&gt;http://example.com/movies.json'&lt;/a&gt;)&lt;br&gt;
  .then((response) =&amp;gt; response.json())&lt;br&gt;
  .then((data) =&amp;gt; console.log(data));&lt;/p&gt;

&lt;p&gt;This looks to be something simple to use and and work with.&lt;br&gt;
And it can be. What I have learned about using fetch is a winding rocky road. To start with, always check the URL(address), make sure it has the correct spelling and includes the endpoint that need or are using. Once that is working and you are getting a good response in the console, you need to start feeding it information related to your project. Here is an example of one that I wrote as a practice project: &lt;/p&gt;

&lt;p&gt;// &lt;br&gt;
fetch(url)  &amp;lt;-gets the information from the API that you are using-&amp;gt;&lt;br&gt;
   ~ .then((response) =&amp;gt; response.json()) &amp;lt;-converts the information into a readable format.-&amp;gt;&lt;/p&gt;

&lt;p&gt;~ .then((movies) =&amp;gt; { &amp;lt;-This starts the iteration loop that will allow the proper information that come from the API to display on the page.-&amp;gt;&lt;br&gt;
    ~    movies.map(renderMovie) &amp;lt;-In this example, this line grabbed the picture of the movie and displayed it on the HTML page.-&amp;gt;&lt;br&gt;
     ~   movies.map(displayInfo) &amp;lt;-This line grabbed the remaining details (Title, Year it was released, and a brief description of the movie itself.-&amp;gt;&lt;br&gt;
     }); &lt;br&gt;
//&lt;/p&gt;

&lt;p&gt;It can be a confusing spot to get worked out of, just do not give up. We are all learning this together. &lt;/p&gt;

&lt;p&gt;-getGoodNerd&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Older people starting out in tech...</title>
      <dc:creator>Matthew</dc:creator>
      <pubDate>Thu, 22 Dec 2022 19:04:22 +0000</pubDate>
      <link>https://dev.to/turbodiesel92/older-people-starting-out-in-tech-566k</link>
      <guid>https://dev.to/turbodiesel92/older-people-starting-out-in-tech-566k</guid>
      <description>&lt;p&gt;Lets set the stage a bit. I am creeping up on turning 45 in a couple months, so, I guess that I could point this at the coders, programmers, and the like that are in the over 40 crowd. &lt;/p&gt;

&lt;p&gt;A little about myself: I had worked the same job for over 20 years and decided I needed a change, I had gotten as far up the ladder as I could, and I started looking for ideas. I found that the ever evolving world of tech is the new path I wanted to get involved in. I have sense started a boot camp and am enjoying it, and the community that it has created being there.&lt;/p&gt;

&lt;p&gt;Now, what I am really looking for is tips and tricks that people have picked up, or know of that can help in the learning process, I really want to get the most out of this experience as I can. &lt;/p&gt;

&lt;p&gt;I want to hear any thoughts that you have on getting a good start in this field. &lt;/p&gt;

&lt;p&gt;Thanks in advance!&lt;br&gt;
Matthew&lt;/p&gt;

</description>
      <category>gratitude</category>
      <category>beginners</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
