<?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: angelayoon</title>
    <description>The latest articles on DEV Community by angelayoon (@angelayoon).</description>
    <link>https://dev.to/angelayoon</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%2F679516%2F85b37271-aa5b-4524-8178-7e4097d5388b.png</url>
      <title>DEV Community: angelayoon</title>
      <link>https://dev.to/angelayoon</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/angelayoon"/>
    <language>en</language>
    <item>
      <title>How to preview html code in VScode</title>
      <dc:creator>angelayoon</dc:creator>
      <pubDate>Tue, 24 Aug 2021 07:34:50 +0000</pubDate>
      <link>https://dev.to/angelayoon/how-to-preview-html-code-in-vscode-4134</link>
      <guid>https://dev.to/angelayoon/how-to-preview-html-code-in-vscode-4134</guid>
      <description>&lt;h1&gt;
  
  
  Extensions for opening html code in browser
&lt;/h1&gt;

&lt;p&gt;Use open in browser&lt;/p&gt;

&lt;h1&gt;
  
  
  No extension
&lt;/h1&gt;

&lt;p&gt;Open the html file in the file explorer&lt;/p&gt;

</description>
      <category>html</category>
    </item>
    <item>
      <title>Git for beginners</title>
      <dc:creator>angelayoon</dc:creator>
      <pubDate>Fri, 06 Aug 2021 19:51:26 +0000</pubDate>
      <link>https://dev.to/angelayoon/git-for-beginners-1a4h</link>
      <guid>https://dev.to/angelayoon/git-for-beginners-1a4h</guid>
      <description>&lt;p&gt;The content is from this youtube tutorial where it covers how to use SourceTree, Github, and terminal from VScode to manage the project.&lt;/p&gt;

&lt;h1&gt;
  
  
  Before creating repository on Github
&lt;/h1&gt;

&lt;p&gt;&lt;code&gt;git init&lt;/code&gt;&lt;br&gt;
Then register your username and email. &lt;br&gt;
&lt;code&gt;git config --global user.name "(your name)"&lt;/code&gt;&lt;br&gt;
&lt;code&gt;git config --global user.email "(your email address)"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Git is basically putting the current version of your project in a time capsule. &lt;br&gt;
&lt;code&gt;git status&lt;/code&gt; command shows the files that are untracked, meaning the files just created by you.&lt;br&gt;
You can put the current state of files in the time capsule using the command, &lt;code&gt;git add -A&lt;/code&gt;.&lt;br&gt;
The changes to be committed will be shown when you type &lt;code&gt;git status&lt;/code&gt; again.&lt;/p&gt;

&lt;p&gt;You bury the time capsule using &lt;code&gt;git commit -m "First Commit"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;In order to push your commit the changes to the online repository, use &lt;code&gt;git remote add origin https://github.com/angelayoon/PETase-igemcolab-database.git&lt;/code&gt; Origin is the default name of the master branch and you can change its name. Then &lt;code&gt;git push -u origin master&lt;/code&gt; push the changes to the cloud repository(origin) on master branch. &lt;/p&gt;

&lt;h1&gt;
  
  
  When you created repository and want to commit the progress on the existing github
&lt;/h1&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>beginners</category>
    </item>
    <item>
      <title>My very first post to test React Blog</title>
      <dc:creator>angelayoon</dc:creator>
      <pubDate>Tue, 03 Aug 2021 17:09:17 +0000</pubDate>
      <link>https://dev.to/angelayoon/my-very-first-post-to-test-react-blog-k6k</link>
      <guid>https://dev.to/angelayoon/my-very-first-post-to-test-react-blog-k6k</guid>
      <description>&lt;p&gt;I followed this youtube playlist to build my very first post to have React blog: &lt;/p&gt;

&lt;h1&gt;
  
  
  Issue 1:
&lt;/h1&gt;

&lt;p&gt;The first issue happened at Live #2. I am supposed to obtain id of the post, but I don't see the link of id anywhere. It is resolve by adding colon before id because the syntax mattered.&lt;br&gt;
&lt;code&gt;&amp;lt;Route exact path="/posts/:id"&amp;gt;&lt;/code&gt; is correct.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
