<?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: Emily Sibbald</title>
    <description>The latest articles on DEV Community by Emily Sibbald (@angelarosptvo).</description>
    <link>https://dev.to/angelarosptvo</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%2F1048375%2F68d3923c-5aa3-48e7-abdb-001b97f46e63.jpg</url>
      <title>DEV Community: Emily Sibbald</title>
      <link>https://dev.to/angelarosptvo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/angelarosptvo"/>
    <language>en</language>
    <item>
      <title>Explain GitBash Like I'm Five</title>
      <dc:creator>Emily Sibbald</dc:creator>
      <pubDate>Sun, 26 Mar 2023 19:57:14 +0000</pubDate>
      <link>https://dev.to/angelarosptvo/explain-gitbash-like-im-five-4m2b</link>
      <guid>https://dev.to/angelarosptvo/explain-gitbash-like-im-five-4m2b</guid>
      <description>&lt;p&gt;I've never used GitBash before, I'm trying to add my SSH key and I've only successfully managed to create two new SSH keys, I'm not certain how to add them to GitBash or to GitHub so I can start saving my work to my laptop for school. Fill me in please!&lt;/p&gt;

</description>
      <category>explainlikeimfive</category>
    </item>
    <item>
      <title>TIL beginner Javascript</title>
      <dc:creator>Emily Sibbald</dc:creator>
      <pubDate>Sat, 25 Mar 2023 14:16:50 +0000</pubDate>
      <link>https://dev.to/angelarosptvo/til-beginner-javascript-54dj</link>
      <guid>https://dev.to/angelarosptvo/til-beginner-javascript-54dj</guid>
      <description>&lt;p&gt;I used a video on Youtube by FreeCodeCamp to teach myself the very basics of Javascript today.&lt;br&gt;
I'd start with saying you must sign up for a platform site that will allow you to run Javascript- since I'm going to University this summer I believe they will be telling me which one to use, so I'm going to update which I end up using later. Today is just in theory and in preparation to go to school.&lt;br&gt;
BASIC RULES:&lt;br&gt;
All lines end with a semi-colon // not required just polite//&lt;br&gt;
Capitals matter- must be an exact copy of original spelling with capital placements to be processed.&lt;br&gt;
The intro to Javascript is how to leave comments.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;//Leave a comment that's one line//&lt;/li&gt;
&lt;li&gt;/* Leave a 
Comment that is 
mulitple 
lines*/
AND the pieces you need to begin coding like:
1.var variable= "number or script, can change"; 
variable= 9;&lt;/li&gt;
&lt;li&gt;let allowsNumberScript = "only applicable to a scope of code";&lt;/li&gt;
&lt;li&gt;const variable = remain constant;
In addition var can be declared or assigned:
//= sign is the assignment operator//
assigned: var a;
declared: var b=2;
assigned:a=7;
assigned: b=a;
a=7;
console.log(a)
console
&amp;gt;7 
//placement of console log matters in Javascript//
var a;
var b=2;
console.log(a)
b=a;
a=7;
console
&amp;gt;null
&amp;gt;7&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
      <category>programming</category>
    </item>
    <item>
      <title>TIL a series by a new WebDev in Uni</title>
      <dc:creator>Emily Sibbald</dc:creator>
      <pubDate>Mon, 20 Mar 2023 01:34:05 +0000</pubDate>
      <link>https://dev.to/angelarosptvo/til-a-series-by-a-new-webdev-in-uni-2g65</link>
      <guid>https://dev.to/angelarosptvo/til-a-series-by-a-new-webdev-in-uni-2g65</guid>
      <description>&lt;p&gt;As part of the course I'm taking we are encouraged to do our own research-- I could have learned my course for free online but I want the piece of paper from uni to take to interviews.&lt;br&gt;
Here's my first post, please leave feedback if you see this so I can find some webdev friends and learn things! &lt;/p&gt;

&lt;p&gt;/&lt;em&gt;HTML CSS coding for Animating CSS Grid using only CSS (no Javascript)&lt;/em&gt;/&lt;/p&gt;

&lt;p&gt;(.left is the selector, :hover psuedo-class)&lt;/p&gt;

&lt;p&gt;/&lt;em&gt;now we edit StyleCSS&lt;/em&gt;/&lt;/p&gt;

&lt;p&gt;.grid{ display:grid;&lt;br&gt;
grid-template-columns: 48 px auto;&lt;br&gt;
transition: 300ms;}&lt;br&gt;
/&lt;em&gt;Both grid-template-columns and transition are adjustable to suite user/developer needs&lt;/em&gt;/&lt;/p&gt;

&lt;p&gt;/* the update to make the transition slide out with a hover feature*/&lt;br&gt;
.grid:has(.left:hover){/&lt;em&gt;hover styles&lt;/em&gt;/ --left:30%;}&lt;br&gt;
/* the :has is the parent selector in this case*/&lt;/p&gt;

&lt;p&gt;This programming has potential to create three separate columns each with an expanding feature, so you can potentially program ex: &lt;strong&gt;grid-template-columns: 1fr 1fr 1fr&lt;/strong&gt;&lt;br&gt;
Display cannot be hidden and must be set to display none.&lt;br&gt;
, it will acknowledge the section even if set to 0fr.&lt;/p&gt;

</description>
      <category>animatingcss</category>
      <category>cssgrid</category>
    </item>
  </channel>
</rss>
