<?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: Zahrea F</title>
    <description>The latest articles on DEV Community by Zahrea F (@zahreafranklin).</description>
    <link>https://dev.to/zahreafranklin</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%2F496397%2F44d15f74-defd-409a-bf8f-561ed936064a.png</url>
      <title>DEV Community: Zahrea F</title>
      <link>https://dev.to/zahreafranklin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/zahreafranklin"/>
    <language>en</language>
    <item>
      <title>VSCode HTML Tags Shortcuts</title>
      <dc:creator>Zahrea F</dc:creator>
      <pubDate>Wed, 20 Jan 2021 07:56:59 +0000</pubDate>
      <link>https://dev.to/zahreafranklin/vscode-html-shortcuts-kah</link>
      <guid>https://dev.to/zahreafranklin/vscode-html-shortcuts-kah</guid>
      <description>&lt;p&gt;Howdy! &lt;/p&gt;

&lt;p&gt;If you're here, it's one of the following reasons:&lt;/p&gt;

&lt;p&gt;1.) You have no idea what VSCode is and would like to know  &lt;/p&gt;

&lt;p&gt;2.) You are considering using it but wanted to learn a bit more before you dive in. &lt;/p&gt;

&lt;p&gt;3.) You like me, use VSCode  as your code editor and need to learn some shortcuts.&lt;/p&gt;

&lt;p&gt;If you identify with the first option, VSCode, which stands for Visual Studio Code is a free-source editor for coding. It helps you to write programs in a variety of languages and it has helpful features like pointing out syntax errors by line numbers, auto completion of code snippets and even add-on extensions that allow theme customization (hey night-mode 😏) and tons of other cool features. &lt;/p&gt;

&lt;p&gt;If you have been considering it but wanted to know what sets it apart from the others you've heard about, here's a few points to consider: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Visual Studio Code is FREE&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;VSCode was created by Microsoft, so it's trustworthy as well as compatible on Windows, MacOS and Linux.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It has a built-in terminal as well as built-in Git support&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It's good at handling larger projects.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In addition to the main points outlined there's a lot more that you can do with VSCode to help make coding easier and more productive. &lt;/p&gt;

&lt;p&gt;One of these features is Emmet. This is a built-in extension that allows you to skip the step of manually typing out HTML tags. By using keyboard shortcuts, the tags are automatically created. Some of the most useful shortcuts are:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="kd"&gt;class&lt;/span&gt;
&lt;span class="err"&gt;//&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;div&lt;/span&gt; &lt;span class="kd"&gt;class&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;class&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/div&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;title&lt;/span&gt;
&lt;span class="c1"&gt;//&amp;lt;div class="title"&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;a&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;Click&lt;/span&gt; &lt;span class="nx"&gt;me&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="c1"&gt;//&amp;lt;a href=""&amp;gt;Click me&amp;lt;/a&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;link&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="nx"&gt;css&lt;/span&gt;
&lt;span class="c1"&gt;//&amp;lt;link rel="stylesheet" href="style.css" /&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;ul&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;&lt;span class="nx"&gt;li&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt;&lt;span class="mi"&gt;5&lt;/span&gt; &lt;span class="c1"&gt;//replace 5 with the amount of items in your list&lt;/span&gt;
&lt;span class="cm"&gt;/*
&amp;lt;ul&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt; */&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;p&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Hello world&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="c1"&gt;// &amp;lt;p title="Hello world"&amp;gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;script&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="nx"&gt;src&lt;/span&gt;
&lt;span class="c1"&gt;// &amp;lt;script src=""&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="err"&gt;#&lt;/span&gt;&lt;span class="nx"&gt;header&lt;/span&gt;
&lt;span class="c1"&gt;// &amp;lt;div id="header"&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;img&lt;/span&gt;
&lt;span class="c1"&gt;//&amp;lt;img src="" alt="" /&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;div&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="nx"&gt;p&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="nx"&gt;bq&lt;/span&gt;
&lt;span class="cm"&gt;/*
&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;
&amp;lt;blockquote&amp;gt;&amp;lt;/blockquote&amp;gt;
*/&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="o"&gt;!&lt;/span&gt;
&lt;span class="cm"&gt;/*
&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8" /&amp;gt;
    &amp;lt;title&amp;gt;Document&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
*/&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These are just a few of the plethora of shortcuts that are possible when creating an HTML file in VSCode, however, I find myself using these mostly since most HTML files use these tags. To find more of the shortcuts there's a document on the official VSCode website that you can browse through.&lt;/p&gt;

&lt;p&gt;Comment below if you know any more shortcuts that you think are helpful in VSCode while coding in HTML. &lt;/p&gt;

</description>
      <category>vscode</category>
      <category>html</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Just another "Hello World!"</title>
      <dc:creator>Zahrea F</dc:creator>
      <pubDate>Tue, 22 Dec 2020 10:23:06 +0000</pubDate>
      <link>https://dev.to/zahreafranklin/just-another-hello-world-31gd</link>
      <guid>https://dev.to/zahreafranklin/just-another-hello-world-31gd</guid>
      <description>&lt;p&gt;Hi there! Thanks for stopping by. I've decided to start writing blog posts to keep track of my development as a front end developer and as well as my revelations with technologies I use (or will use along the way). &lt;/p&gt;

&lt;p&gt;So since I already have you here. I should start with an introduction. To make it easier, I'll do the intro in list form so here goes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;I'm Zahrea. A Caribbean raised, Cali-based girl in tech.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I am pursuing a Bachelor of Science in Computer Science at Sacramento State. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Interested in full stack web development.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Currently codes in: HTML, CSS, JS and Java.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Currently learning: React, Node.js &amp;amp; Python 🐍&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's all for now. Thanks for reading! See you in my next post (hopefully) 😄&lt;/p&gt;

&lt;p&gt;If you'd like to keep track of my progress, follow me on Github &lt;/p&gt;
&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/zahreafranklin" rel="noopener noreferrer"&gt;
        zahreafranklin
      &lt;/a&gt; / &lt;a href="https://github.com/zahreafranklin/zahreafranklin" rel="noopener noreferrer"&gt;
        zahreafranklin
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      Hello World! I'm Zahrea F
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;HELLO WORLD! I'M ZAHREA FRANKLIN 👋🏽&lt;/h3&gt;

&lt;/div&gt;
&lt;p&gt;&lt;a href="https://www.linkedin.com/in/zahrea-franklin/" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/d90c501c7f68295cfcab6a68b761ba5b1101292b8ac9895eaeca253df2e53eb3/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c696e6b6564696e2d2532333030373742352e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d6c696e6b6564696e266c6f676f436f6c6f723d7768697465" alt="LinkedIn"&gt;&lt;/a&gt;
&lt;a href="https://github.com/zahreafranklin/zahreafranklinmailto:zahrea.franklin@gmail.com" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/43046cf3ef16cbda861fc6f29d524f9faf7d5b0e76522256ae71c2123cb82803/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f676d61696c2d6331343433383f7374796c653d666f722d7468652d6261646765266c6f676f3d476d61696c266c6f676f436f6c6f723d7768697465" alt="Gmail Badge"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;ABOUT ME 👩🏽&lt;/h3&gt;

&lt;/div&gt;
&lt;p&gt;🎓   Gained a Bachelors of Science in Computer Science from California State University, Sacramento.&lt;br&gt;
🔭   Looking for new opportunities to use my knowledge in tech.&lt;br&gt;
📓   Learning more about full-stack development and software engineering.&lt;br&gt;
👯   Member of: Rewriting the Code.&lt;br&gt;
🖤    Enjoys fashion blogging in my spare time&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;SKILLS 🔧 ⚙️&lt;/h3&gt;

&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h4 class="heading-element"&gt;Programming Languages:&lt;/h4&gt;

&lt;/div&gt;
&lt;p&gt;&lt;a href="https://github.com/zahreafranklin/" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/8c323b187b5aa74c9fe335083d91dd76ca3798cb26552f1df283d8a7decc4cf7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f68746d6c352532302d2532334533344632362e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d68746d6c35266c6f676f436f6c6f723d7768697465253232" alt=""&gt;&lt;/a&gt;
&lt;a href="https://github.com/zahreafranklin/" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/ec874bfcf61558b1c237dcc4b10f481b4424a269e35eaf75d862751a98e3370c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6a6176617363726970742532302d2532333332333333302e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d6a617661736372697074266c6f676f436f6c6f723d253233463744463145" alt="Javascript"&gt;&lt;/a&gt;
&lt;a href="https://github.com/zahreafranklin/" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/71f2f7b000f777ae7561aef343df0f72dd821e49f80e1366ef9e59ed266f01f1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f637373332532302d2532333135373242362e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d63737333266c6f676f436f6c6f723d7768697465" alt="CSS"&gt;&lt;/a&gt;
&lt;a href="https://github.com/zahreafranklin/" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/893447b306f0feeb509c09ed59a40c743eb7fa7637769348843a8a05419f42f1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f632532302d2532333030353939432e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d63266c6f676f436f6c6f723d7768697465" alt="C"&gt;&lt;/a&gt;
&lt;a href="https://github.com/zahreafranklin/" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/de36fbbbb616255cdc4ef58a10e79873b1d6d2317373270343d569978c2a93e4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6a6176612d2532334544384230302e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d6a617661266c6f676f436f6c6f723d7768697465" alt="Java"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://github.com/zahreafranklin/github-readme-stats" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/2f95ec00dd3b6a09aede0623c8e7eac429cd289cc08b5f47fe61811e548e6b75/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170692f746f702d6c616e67732f3f757365726e616d653d7a61687265616672616e6b6c696e" alt="Top Languages"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h4 class="heading-element"&gt;Frameworks:&lt;/h4&gt;

&lt;/div&gt;
&lt;p&gt;&lt;a href="https://github.com/zahreafranklin/" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/3485597ae7594e182fb4f7518e87547a23ab4c15a687e97a5c44dc68f42f5ca0/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f72656163742532302d2532333230323332612e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d7265616374266c6f676f436f6c6f723d253233363144414642" alt="React"&gt;&lt;/a&gt;
&lt;a href="https://github.com/zahreafranklin/" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/40c265f20dbaa129b96bacdef2d585e38c184e2d9f74cfd75c0a604b08a4f7db/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f626f6f7473747261702532302d2532333536334437432e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d626f6f747374726170266c6f676f436f6c6f723d7768697465" alt="Bootstrap"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;Stats 📈&lt;/h3&gt;

&lt;/div&gt;
&lt;p&gt;&lt;a href="https://github.com/zahreafranklin/github-readme-stats" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/63c1916b67a46d5b6ef3de29330cd60cfa39d7cacb10ed71e665826ce823b4e7/68747470733a2f2f6769746875622d726561646d652d73746174732e76657263656c2e6170702f6170693f757365726e616d653d7a61687265616672616e6b6c696e2673686f775f69636f6e733d74727565267468656d653d677261797768697465" alt="Zahrea's github stats"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;



&lt;/div&gt;
&lt;br&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/zahreafranklin/zahreafranklin" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;


</description>
      <category>beginners</category>
      <category>computerscience</category>
      <category>girlswhocode</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
