<?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: Abby</title>
    <description>The latest articles on DEV Community by Abby (@abby).</description>
    <link>https://dev.to/abby</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%2F214945%2F0c0f900e-92a8-4a33-aea3-6229e9baa1b7.png</url>
      <title>DEV Community: Abby</title>
      <link>https://dev.to/abby</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abby"/>
    <language>en</language>
    <item>
      <title>Nuggets of Knowledge Series: Revisiting HTML (Part I) </title>
      <dc:creator>Abby</dc:creator>
      <pubDate>Tue, 30 Jun 2020 23:41:31 +0000</pubDate>
      <link>https://dev.to/abby/nuggets-of-knowledge-series-revisiting-html-part-i-m74</link>
      <guid>https://dev.to/abby/nuggets-of-knowledge-series-revisiting-html-part-i-m74</guid>
      <description>&lt;p&gt;Following up on my &lt;a href="https://dev.to/abby/starting-like-a-newbie-again-2lla"&gt;last post&lt;/a&gt; about starting like a newbie again, I wanted to begin the rediscovery adventure with the &lt;a href="https://www.linkedin.com/learning/html-essential-training-4?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;HTML Essential Training&lt;/a&gt; course by &lt;a href="https://twitter.com/jensimmons"&gt;Jen Simmons&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Let’s dig right into it! &lt;/p&gt;




&lt;p&gt;Oh sturdy, HTML, our resilient, human-readable, and forgiving friend. How I’ve missed going into depth with you! &lt;/p&gt;

&lt;p&gt;HTML is the foundation of everything web… without it, it would be like the human body without a skeleton. It defines the meaning and structure of web content; the markup language for documents designed to be displayed in the web browser. A markup that provides meaning between the human and the computer&lt;/p&gt;

&lt;p&gt;I want to divide this blog post into the stand out sections from the course, with a little more information on the topics and extra links for your in-depth pleasure! &lt;/p&gt;

&lt;h2&gt;
  
  
  Formatting HTML elements:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Tags: 

&lt;ul&gt;
&lt;li&gt;all html markup is surrounded by carets like: “&lt;code&gt;&amp;lt;&lt;/code&gt;” and “&lt;code&gt;&amp;gt;&lt;/code&gt;”&lt;/li&gt;
&lt;li&gt;Example: &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;,&lt;code&gt;&amp;lt;/p&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;video&amp;gt;&lt;/code&gt;, or &lt;code&gt;&amp;lt;/video&amp;gt;&lt;/code&gt;;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Elements:

&lt;ul&gt;
&lt;li&gt;contains a starting tag, content and closing tag&lt;/li&gt;
&lt;li&gt;" &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; You are very smart. &lt;code&gt;&amp;lt;/p&amp;gt;&lt;/code&gt; "&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Sometimes the words 'tags' and 'elements' are used interchangeably, but I like to be super specific. &lt;/li&gt;
&lt;li&gt;The hard part comes when you are trying to figure out what to use when

&lt;ul&gt;
&lt;li&gt;You ask yourself… should I use &lt;code&gt;&amp;lt;h2&amp;gt;&lt;/code&gt; or &lt;code&gt;&amp;lt;h4&amp;gt;&lt;/code&gt; here?&lt;/li&gt;
&lt;li&gt;To answer that question, head over to &lt;a href="https://www.w3.org/TR/WCAG20-TECHS/H42.html"&gt;Using h1-h6 to identify headings&lt;/a&gt; for more insight. &lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  DOM Tree
&lt;/h2&gt;

&lt;p&gt;When you start accumulating all of these tags... you start creating a family tree! Congrats!!!&lt;/p&gt;

&lt;p&gt;Well... it's really a Document Object Model (DOM) tree, which can look like this: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--aW-PNFr5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86134318-77358880-bab7-11ea-9bea-51cd74770f1d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--aW-PNFr5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86134318-77358880-bab7-11ea-9bea-51cd74770f1d.png" alt="alt text" title="Dom Tree Example Image"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Each branch of the tree is a node and each node is an object. This means you can do ALOT of things with them, including adding DOM methods. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;DOM methods are actions you can perform on HTML elements, you'll be able to modify the structure, style, or alter the content of the documents. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some examples are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;focus() - which gives focus to an element&lt;/li&gt;
&lt;li&gt;getElementsByClassName() - which will return a collection of child elements with that specific class name&lt;/li&gt;
&lt;li&gt;replaceChild() - replaces a child node in the element &lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*Check out the list of the many properties and methods that can be used on all HTML elements &lt;a href="https://www.w3schools.com/jsref/dom_obj_all.asp"&gt;here&lt;/a&gt;. &lt;/p&gt;

&lt;h2&gt;
  
  
  HTML Attributes
&lt;/h2&gt;

&lt;p&gt;Tags are cool, but what if you wanted to enhanced them?&lt;/p&gt;

&lt;p&gt;Hello Attributes! Attributes provide HTML elements with more information and usually comes in name/value pairs like: name="value".&lt;/p&gt;

&lt;p&gt;An attribute is just an additional value that configures the elements or adjusts it's behavior.&lt;/p&gt;

&lt;p&gt;Let's take a look!&lt;/p&gt;

&lt;p&gt;Here's an example: &lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--lCCym2hN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86134276-6ab13000-bab7-11ea-9f3e-a04a9e726bfa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--lCCym2hN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86134276-6ab13000-bab7-11ea-9f3e-a04a9e726bfa.png" alt="alt text" title="Attributes Example"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What attributes do you see there?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I see...."charset", "href", "rel", "type", "class" and "src"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Want to get to know more attributes? You got it: &lt;a href="https://www.w3schools.com/tags/ref_attributes.asp"&gt;HTML Attribute Reference Sheet&lt;/a&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Bold&lt;/strong&gt; and &lt;i&gt;Italics&lt;/i&gt;
&lt;/h2&gt;

&lt;p&gt;This honestly seemed like a simple enough concept, but I wanted to emphasize the differences between  &lt;code&gt;&amp;lt;em&amp;gt;&lt;/code&gt; ( emphasis)  versus &lt;code&gt;&amp;lt;i&amp;gt;&lt;/code&gt;(italics). They both visually make their words italicized, but are perceived very differently. &lt;/p&gt;

&lt;p&gt;There is a big difference between: &lt;/p&gt;

&lt;p&gt;“I am &lt;em&gt;really&lt;/em&gt; craving tacos” (uses &lt;code&gt;&amp;lt;em&amp;gt;&lt;/code&gt;)&lt;/p&gt;

&lt;p&gt;And &lt;/p&gt;

&lt;p&gt;“One of my favorite books is &lt;i&gt;The Brief Wondrous Life of Oscar Wao&lt;/i&gt; by Junot Diaz.” (uses &lt;code&gt;&amp;lt;i&amp;gt;&lt;/code&gt;)&lt;/p&gt;

&lt;p&gt;Think about it as a word that is being emphasized versus a word that is used as a title for something. &lt;/p&gt;

&lt;p&gt;This is incredibly important because of &lt;a href="https://www.afb.org/blindness-and-low-vision/using-technology/assistive-technology-products/screen-readers"&gt;screen readers&lt;/a&gt; and how they interpret the text on the page. &lt;/p&gt;

&lt;p&gt;Apply the same kind of thinking to &lt;code&gt;&amp;lt;bold&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;strong&amp;gt;&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;By saying the word as you intended it to be understood, you would be giving the user on the other end of the screen reader a much better experience. &lt;/p&gt;

&lt;h2&gt;
  
  
  ARIA roles and ARIA labels
&lt;/h2&gt;

&lt;p&gt;Speaking of user experience...it's so important that everyone can read your website. It's an absolute human right for all types of people to be able to access your webpage. &lt;/p&gt;

&lt;p&gt;Let's talk about ARIA aka Accessible Rich Internet. ARIA is a set of attributes that modify the way those elements are translated in the accessibility tree. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;button aria-label="screen reader only label"&amp;gt;&amp;lt;/button&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;div aria-live="polite"&amp;gt; &amp;lt;span&amp;gt;GOOG: $400&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;div role="alert"&amp;gt; Please upgrade your computer! &amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;As a developer, you have to take into account that sometimes what you see is not what is read by a screenreader, so take some extra time for this. &lt;/p&gt;

&lt;p&gt;For a glorious deep dive into how ARIA roles can work, take a look at the &lt;a href="https://www.youtube.com/watch?v=g9Qff0b-lHk"&gt;Google Chrome Developers A11ycasts series&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Read more about accessibility &lt;a href="https://www.w3.org/standards/webdesign/accessibility"&gt;here&lt;/a&gt;. &lt;/p&gt;

&lt;h2&gt;
  
  
  Superscripts, subscripts, and small text
&lt;/h2&gt;

&lt;p&gt;Sometimes &lt;code&gt;&amp;lt;sub&amp;gt;&lt;/code&gt; and  &lt;code&gt;&amp;lt;sup&amp;gt;&lt;/code&gt; aren't enough to show your mathematical examples. &lt;/p&gt;

&lt;p&gt;I was reintroduced to MathML, a mathematical markup language used to add mathematical and scientific content on the web. &lt;/p&gt;

&lt;p&gt;Here's an example:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s----io0iza--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86137419-435c6200-babb-11ea-8b7d-04c620de540a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s----io0iza--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86137419-435c6200-babb-11ea-8b7d-04c620de540a.png" alt="alt text" title="Gauss law code"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is the output of the for the code above:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Lnuo6Ghl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86186921-6c571400-bb08-11ea-8b1c-92b320544845.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Lnuo6Ghl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86186921-6c571400-bb08-11ea-8b1c-92b320544845.png" alt="alt text" title="Gauss law equation"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Pretty cool!&lt;/p&gt;

&lt;p&gt;Play around with &lt;a href="https://www.tutorialspoint.com/mathml/index.htm"&gt;MathML&lt;/a&gt; when you get a chance! &lt;/p&gt;

&lt;h2&gt;
  
  
  Debugging HTML
&lt;/h2&gt;

&lt;p&gt;Oh no! Your code is messing up, there's a &lt;a href="https://interestingengineering.com/the-origin-of-the-term-computer-bug"&gt;bug&lt;/a&gt;, go get it!!&lt;/p&gt;

&lt;p&gt;No need to worry! DEBUGGER IS HERE!!!!!&lt;/p&gt;

&lt;p&gt;If you use Chrome like I do, the Elements tab in Inspector is going to be your best friend!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How to get into the Elements Tab?

&lt;ul&gt;
&lt;li&gt;Click on the right mouse button --&amp;gt; Inspect --&amp;gt; Elements Tab&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--E7phzYll--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86080013-e3849d80-ba5f-11ea-95f4-bed8e395e8f8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--E7phzYll--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/12129852/86080013-e3849d80-ba5f-11ea-95f4-bed8e395e8f8.png" alt="alt text" title="Inspector Element Tab Picture"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There are so many things you can do within the inspector to debug your HTML. &lt;/p&gt;

&lt;p&gt;Want to learn more? Of course you do! Check out &lt;a href="https://blog.pragmatists.com/how-to-debug-front-end-elements-d97da4cbc3ea"&gt;How to Debug Front-end&lt;/a&gt; by Michał Witkowski. It dives much deeper! I might write another post just on this down the line! &lt;/p&gt;

&lt;h2&gt;
  
  
  What to expect in the next post?
&lt;/h2&gt;

&lt;p&gt;More code samples and a deep dive into links, images, media and more! &lt;/p&gt;

&lt;p&gt;See you then! &lt;/p&gt;

&lt;h4&gt;
  
  
  Resources to check out:
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://html.spec.whatwg.org/dev/"&gt;HTML Living Standard&lt;/a&gt;&lt;br&gt;
&lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML"&gt;MDN Web Docs&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>html</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Commencer comme un débutant...encore</title>
      <dc:creator>Abby</dc:creator>
      <pubDate>Fri, 26 Jun 2020 04:28:09 +0000</pubDate>
      <link>https://dev.to/abby/commencer-comme-un-debutant-encore-42o8</link>
      <guid>https://dev.to/abby/commencer-comme-un-debutant-encore-42o8</guid>
      <description>&lt;p&gt;En tant que ingénieur logiciel , l'apprentissage est essentiel.&lt;/p&gt;

&lt;p&gt;Chaque jour, il y a quelque chose de nouveau à apprendre. C'est ce qui rend le travail si intéressant !&lt;/p&gt;

&lt;p&gt;Ce que j'ai remarqué, cependant, c'est que lorsque vous travaillez dans une grande entreprise de technologie ou dans n'importe quelle entreprise pendant un certain temps, vous commencez à rouiller lorsqu'il s'agit de code en dehors de l'orbite de l'entreprise.&lt;/p&gt;

&lt;p&gt;On peut se sentir trop à l'aise avec les outils internes de l'entreprise et être un peu trop à l'aise avec leur façon unique de construire les choses. Si vous faites cela pendant des années et que vous n'avez pas de projets extérieurs... vous pouvez devenir vraiment rouillé.&lt;/p&gt;

&lt;p&gt;Cela peut devenir un problème lorsque vous vous trouvez à la recherche d'un nouvel emploi et que vous vous rendez compte que vous n'avez plus de pratique. Ah !&lt;/p&gt;

&lt;p&gt;Personnellement, je ne voulais pas devenir rouillé et je voulais que mon jus créatif coule à nouveau. Je voulais recommencer depuis le début et je voulais une remise à zéro.&lt;/p&gt;

&lt;p&gt;Comment vais-je m'y prendre ?&lt;/p&gt;

&lt;p&gt;Dans les prochaines semaines, je vais suivre le parcours "Become a Front-End Web Developer" sur Linkedin Learning pour consolider tout ce que j'ai appris dans ma carrière jusqu'à présent.&lt;/p&gt;

&lt;p&gt;Est-ce que je me souviens des bases ? Voyons voir.&lt;/p&gt;

&lt;p&gt;J'ai toujours mieux appris en regardant des vidéos et en réalisant des projets avec un peu d'encadrement.&lt;/p&gt;

&lt;p&gt;Voici les cours que je vais terminer:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/succeeding-in-web-development-full-stack-and-front-end?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Succeeding in Web Development: Full Stack and Front End&lt;/a&gt; by Ray Villalobos&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/web-programming-foundations?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Web Programming Foundations&lt;/a&gt; by Morten Rand-Hendriksen&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/programming-foundations-fundamentals-3?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Programming Foundations: Fundamentals&lt;/a&gt; by Annyce Davis&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/user-experience-for-web-design?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;User Experience for Web Design&lt;/a&gt; by Chris Nodder&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/ux-foundations-accessibility?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;UX Foundations: Accessibility&lt;/a&gt; by Derek Featherstone&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/html-essential-training-4?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;HTML Essential Training&lt;/a&gt; by Jen Simmons &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/css-essential-training-3?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;CSS Essential Training&lt;/a&gt; by Christina Truong&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/javascript-essential-training-3?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Javascript Essential Training&lt;/a&gt; by Morten Rand-Hendriksen&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/responsive-layout?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Responsive Layout&lt;/a&gt; by  Clarissa Peterson&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/learning-github?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Learning GitHub&lt;/a&gt; by Aaron Stewart &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/sass-essential-training?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Sass Essential Training&lt;/a&gt; by Ray Villalobos&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/learning-react-js-2019?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Learning React.js&lt;/a&gt; by Eve Porcello  &lt;/p&gt;

&lt;p&gt;Tout au long du voyage, je documenterai tout ce qui se détachera en cours de route ! &lt;/p&gt;

&lt;p&gt;Rendez-vous au prochain poste ! :) &lt;/p&gt;

</description>
      <category>french</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Starting like a Newbie...again</title>
      <dc:creator>Abby</dc:creator>
      <pubDate>Thu, 25 Jun 2020 21:50:35 +0000</pubDate>
      <link>https://dev.to/abby/starting-like-a-newbie-again-2lla</link>
      <guid>https://dev.to/abby/starting-like-a-newbie-again-2lla</guid>
      <description>&lt;p&gt;As a developer, learning is everything. &lt;/p&gt;

&lt;p&gt;Everyday, there is something new to learn. That's what make the job so interesting! &lt;/p&gt;

&lt;p&gt;What I've noticed, however, is that when you work at a big tech company or at any company for a while, you start getting rusty when it comes to code outside the company's orbit.&lt;/p&gt;

&lt;p&gt;You can get wayyy too comfortable using the company's internal tools and get a little too snug with their unique way of building things. If you do this for years and don't have any outside projects... you can become really rusty. &lt;/p&gt;

&lt;p&gt;It can become a problem when you find yourself looking for a new job and realize you're out of practice. Ah!&lt;/p&gt;

&lt;p&gt;I, personally, didn't want to get rusty and wanted my creative juices flowing again. I wanted to start from the beginning and wanted a reset. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How am I going to do this?&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;In the next couple of weeks, I will be doing the "Become a Front-End Web Developer" path on Linkedin Learning to solidify everything I've learned in my career so far. &lt;/p&gt;

&lt;p&gt;Do I remember the very basics? Let's see. &lt;/p&gt;

&lt;p&gt;I have always learned best from videos and doing projects with a little bit of guidance. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here are the courses I will be completing:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/succeeding-in-web-development-full-stack-and-front-end?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Succeeding in Web Development: Full Stack and Front End&lt;/a&gt; by Ray Villalobos&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/web-programming-foundations?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Web Programming Foundations&lt;/a&gt; by Morten Rand-Hendriksen&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/programming-foundations-fundamentals-3?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Programming Foundations: Fundamentals&lt;/a&gt; by Annyce Davis&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/user-experience-for-web-design?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;User Experience for Web Design&lt;/a&gt; by Chris Nodder&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/ux-foundations-accessibility?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;UX Foundations: Accessibility&lt;/a&gt; by Derek Featherstone&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/html-essential-training-4?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;HTML Essential Training&lt;/a&gt; by Jen Simmons &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/css-essential-training-3?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;CSS Essential Training&lt;/a&gt; by Christina Truong&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/javascript-essential-training-3?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Javascript Essential Training&lt;/a&gt; by Morten Rand-Hendriksen&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/responsive-layout?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Responsive Layout&lt;/a&gt; by  Clarissa Peterson&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/learning-github?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Learning GitHub&lt;/a&gt; by Aaron Stewart &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/sass-essential-training?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Sass Essential Training&lt;/a&gt; by Ray Villalobos&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/learning/learning-react-js-2019?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56d7a7053dd559b764b88a92&amp;amp;u=104"&gt;Learning React.js&lt;/a&gt; by Eve Porcello  &lt;/p&gt;

&lt;p&gt;Throughout the journey, I'll document anything and everything that stands out along the way! &lt;/p&gt;

&lt;p&gt;See you at the next post! :) &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>html</category>
    </item>
  </channel>
</rss>
