<?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: Em 💫</title>
    <description>The latest articles on DEV Community by Em 💫 (@britnorcodes).</description>
    <link>https://dev.to/britnorcodes</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%2F438861%2Fe0326cbc-1cf6-478d-a62e-2a76d2c2184a.jpg</url>
      <title>DEV Community: Em 💫</title>
      <link>https://dev.to/britnorcodes</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/britnorcodes"/>
    <language>en</language>
    <item>
      <title>Array Methods That .pop()</title>
      <dc:creator>Em 💫</dc:creator>
      <pubDate>Fri, 07 Aug 2020 21:24:26 +0000</pubDate>
      <link>https://dev.to/britnorcodes/array-methods-that-pop-42np</link>
      <guid>https://dev.to/britnorcodes/array-methods-that-pop-42np</guid>
      <description>&lt;h3&gt;
  
  
  What is an Array?
&lt;/h3&gt;

&lt;p&gt;An &lt;code&gt;Array&lt;/code&gt;, in Javascript is a unique variable which can store multiple values in one single element.&lt;/p&gt;

&lt;p&gt;An &lt;strong&gt;array data structure&lt;/strong&gt; can be either an ordered list of items or a collection of elements which can be accessed via their index or key.&lt;/p&gt;

&lt;p&gt;The items within an array can be of varying data types: numbers, strings or even... more arrays! In the situation that you have an array inside another array, this is called &lt;strong&gt;array nesting&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  How can I create an array?
&lt;/h3&gt;

&lt;p&gt;Arrays are referenced with [] notation. They can be declared one of two ways:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;const myArray = [];&lt;/code&gt;&lt;br&gt;
&lt;code&gt;const myArray2 = new Array(5);&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Using the &lt;code&gt;Array&lt;/code&gt; class allows you to specify the length of the array you are declaring.&lt;/p&gt;
&lt;h3&gt;
  
  
  Got it, but how can I access the properties of an array?
&lt;/h3&gt;

&lt;p&gt;You can access an item within in an array using either its &lt;code&gt;key&lt;/code&gt; or &lt;code&gt;index&lt;/code&gt;. The index of an array is the location of that element within the array.&lt;/p&gt;

&lt;p&gt;This is where it gets &lt;em&gt;slightly&lt;/em&gt; confusing and something you may not have seen previously, but Arrays are indexed starting at 0.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const myArray = ['pink','purple','blue'];
myArray[2]; // is equal to 'blue'
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;They like to keep you on your toes otherwise it would be &lt;em&gt;boring&lt;/em&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cool, but how about the length of an Array?
&lt;/h3&gt;

&lt;p&gt;The total number of items in an array is the length of the array. You can work that out using the length property.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const myArray = ['pink','purple','blue'];
myArray.length; // is equal to 3
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;h3&gt;
  
  
  Wait...huh?
&lt;/h3&gt;

&lt;p&gt;OK - lets try digest that a little more with an example dataset. Every week I go to the supermarket with my shopping list containing a list of items and the quantity needed for each item. My shopping list can be written into an array like this using a javascript object which stores an array of named key value pairs.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let myShoppingList = {
  cheese: '1',
  eggs: '6',
  milk: '1',
  bread: '1',
  juice: '2',
  chocolate: '10'
};
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;The &lt;code&gt;keys&lt;/code&gt; in this array are the items: cheese, eggs, milk etc. And the &lt;code&gt;values&lt;/code&gt; are the quantity. These can be matched together to form &lt;code&gt;key value pairs&lt;/code&gt;. I can get the value by using the key.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;myShoppingList['juice']&lt;/code&gt; returns a value of 2.&lt;/p&gt;

&lt;p&gt;Nice one! 👏 You've made it this far and hopefully now you understand what an array is, how to declare one and how you can access its elements. &lt;/p&gt;

&lt;p&gt;Let's now chat about how to manipulate the elements within an array.&lt;/p&gt;

&lt;h3&gt;
  
  
  Array Methods 🎉
&lt;/h3&gt;

&lt;p&gt;Arrays have some built-in properties (like length which we spoke about earlier) and methods. We can use methods to add, remove, iterate, or manipulate data dependant on our use case.&lt;/p&gt;

&lt;p&gt;You may find yourself in a situation where you have an array and you know what you want to do to it, but you're not sure &lt;em&gt;how&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Not to worry - I'm going to cover 9 array methods that you can use to manipulate your data. There are more than 9 so if one of these doesn't quite cut it, take a look at the &lt;a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array#"&gt;MDN docs.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.push()&lt;/code&gt; adds one or more elements to the end of an array.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis'];
colours.push('Zayn');

// oneDirection = ['Harry','Liam','Niall', 'Louis', 'Zayn'];
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;&lt;code&gt;.pop()&lt;/code&gt; removes the last element in an array.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis', 'Zayn'];
colours.pop();

// oneDirection = ['Harry','Liam','Niall', 'Louis'];
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;&lt;code&gt;.shift()&lt;/code&gt; similar to pop, this removes the first element in an array.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis'];
colours.shift();

// oneDirection = ['Liam','Niall', 'Louis'];
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;&lt;code&gt;.unshift()&lt;/code&gt; adds an element to the beginning of an array.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis'];
colours.unshift('Zayn');

// oneDirection = ['Zayn','Harry','Liam','Niall', 'Louis'];
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;&lt;code&gt;.forEach()&lt;/code&gt; - performs a function once for each element in the array.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis'];

oneDirection.forEach(name =&amp;gt; console.log(name));

// Harry
// Liam
// Niall
// Louis
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;&lt;code&gt;.map()&lt;/code&gt; this allows you to iterate over items within an array, performing a function on each and then returning a new array with the results.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis'];
const myMap = oneDirection.map(name =&amp;gt; name + '!');

console.log(myMap); // ["Harry!", "Liam!", "Niall!", "Louis!"]

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



&lt;p&gt;&lt;code&gt;.includes()&lt;/code&gt; returns &lt;code&gt;true&lt;/code&gt; or &lt;code&gt;false&lt;/code&gt; depending on whether an array includes a certain value.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis'];

console.log(oneDirection.includes('Zayn')); // logs false
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;&lt;code&gt;.find()&lt;/code&gt; returns the values of the &lt;strong&gt;first&lt;/strong&gt; element in an array to pass the function provided.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis'];
const found = oneDirection.find(name =&amp;gt; name.startsWith('L'));

console.log(found); // logs 'Liam'
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;&lt;code&gt;.filter()&lt;/code&gt; returns a new array with &lt;strong&gt;all&lt;/strong&gt; the elements from the original array which pass the provided function.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const oneDirection = ['Harry','Liam','Niall', 'Louis'];
const found = oneDirection.filter(name =&amp;gt; name.startsWith('L'));

console.log(found); // logs ['Liam', 'Louis']
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Congrats! If you made it this far you're now a whizz at JS Array methods! If you think I've missed any core info, please don't hesitate to get in touch.&lt;/p&gt;

&lt;p&gt;Thanks for taking the time to read this, I'll be posting blog posts regularly. I've got blogs on web accessibility and resources for beginners lined up, so stay tuned 👀&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Dubai To London And All The Tech I Learnt In Between  👩🏼‍💻 </title>
      <dc:creator>Em 💫</dc:creator>
      <pubDate>Tue, 04 Aug 2020 22:11:01 +0000</pubDate>
      <link>https://dev.to/britnorcodes/dubai-to-london-and-all-the-tech-i-learnt-in-between-14m8</link>
      <guid>https://dev.to/britnorcodes/dubai-to-london-and-all-the-tech-i-learnt-in-between-14m8</guid>
      <description>&lt;p&gt;A quick intro before I get onto the main event; My name is Emma, on Twitter you can find me at &lt;a class="comment-mentioned-user" href="https://dev.to/britnorcodes"&gt;@britnorcodes&lt;/a&gt;
. I'm a Software Engineer and I've been coding for around 5 years - 3 years studying at University and 2 years in the industry. After years of wanting to start a blog, it's &lt;em&gt;finally&lt;/em&gt; happened, Emma's kicked imposter syndrome to the curb...for now 😬&lt;/p&gt;

&lt;p&gt;This is my personal journey from no knowledge of the tech industry to finding my passion and getting a job 💪&lt;/p&gt;

&lt;h3&gt;
  
  
  Early days 👧
&lt;/h3&gt;

&lt;p&gt;I am originally from Manchester, however, I was born in Dubai and lived there until the age of 18. I'm not going to lie to you, I haven't always had a passion for computers and software engineering, I kind of stumbled into this world, with no prior knowledge that it existed. There is a common misconception that all Software Engineers have lived, breathed and typed code since they were very young, I can confidently debunk. You &lt;em&gt;really can&lt;/em&gt; start at any age.&lt;/p&gt;

&lt;p&gt;I went to a school where we were educated and encouraged down one of a few routes, namely Medicine, Law, Economics etc. None of which appealed to me in the slightest. What bothers me the most, is that no one actively &lt;em&gt;encouraged&lt;/em&gt; me to pursue a career in tech at school. I did this off my own back and managed to keep ploughing on till somebody noticed me. It wasn't a joyous ride, at points discouraging, especially following a route which was so foreign to my parents and friends, even now explaining what I do, their faces are puzzled. &lt;/p&gt;

&lt;p&gt;At school I took ICT (Information, Communication and Technology), Maths, Economics and Art for my A Levels. I really had no idea what I wanted to do, I thought I was going to go on and do Art, but I was such a perfectionist that doing one drawing took me DAYS, I thought to myself - this ain't sustainable or good for me. I then began exploring my creative flair with ICT and designing websites in Serif WebPlus, I remember vividly thinking &lt;em&gt;this&lt;/em&gt; is cool, my Justin Bieber website pinned up on the wall in the classroom, Mum I've made it! I spiced up my database module in ICT by making a One Direction ticketing spreadsheet. It got me thinking of what could be possible for me by combining art and computers. I loved to push myself out of my comfort zone and surprise people, especially those who thought I wasn't capable.&lt;/p&gt;

&lt;h3&gt;
  
  
  University 🎓
&lt;/h3&gt;

&lt;p&gt;My pre-uni brain was a little lost, I had the course I wanted to do in my head but I wasn't sure what it was or if it even existed. I remember going onto UCAS and typing in the subjects I studied and it returned a list of courses that fitted with them, that's when I spotted the Digital Media course at the University of Leeds, it's a match! It allowed me to live my creative dreams, alongside exploring my curiosity with computers and technology.&lt;/p&gt;

&lt;p&gt;My very first module in web development was 'Interface Design' where we covered only HTML and CSS, I got really stuck and a nice person from StackOverflow screen shared with me for about 4 hours to explain everything to me. Humans are nice! 💓 Don’t be afraid to reach out to people for help, I promise you people are willing and the absolute worst outcome is they say no. &lt;em&gt;Or they tell you how angry they are for your overuse of the &lt;code&gt;&amp;lt;br&amp;gt;&lt;/code&gt; tag, not that I'm talking from experience or anything...&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;In second year I studied 'Dynamic web programming', where I learnt the fundamentals of PHP. I built a One Direction fan forum with a login system and comments section (&lt;em&gt;anyone else sensing a running theme?&lt;/em&gt;). This was where I fell in LOVE with PHP, &lt;em&gt;yes&lt;/em&gt;, you heard that right! I often get funny and confused looks when I talk about my love for PHP now but honestly I think it's because it was the first scripting language I learnt that it holds a very special place in my heart (and brain). Even now I find myself solving problems how I would have using PHP, to then google how to do the same in Javascript.&lt;/p&gt;

&lt;p&gt;I took an optional study abroad year, and was lucky enough to get a place at Queensland University of Technology in Brisbane, I studied there for one year. And what a year it was! I saw this as a great opportunity to study classes that weren't on offer to me back in the UK. It was the first time I had been exposed to Javascript and I was amazed, our first project was to create a single page with as many animations and scroll effects as possible - &lt;em&gt;a hoot&lt;/em&gt;. I also took a class called 'Programming for Visual Designers' where I learnt Processing! I built loads of cool visual artworks and an interactive game during that module and that's where I kind of solidified my interest in front-end web development.&lt;/p&gt;

&lt;p&gt;During my final year of University, I had to pick between a dissertation or web project, it was a no brainer for me, opting for the web project I built a Progressive Web App called myPlan. It was built for those diagnosed with young onset dementia to break down daily tasks into sub-tasks and help organise their day, with a catalogue of tasks to pick from but also the ability to add custom ones. I did a lot of reading into the condition and a lot of the choices I made were supported by my research.&lt;/p&gt;

&lt;p&gt;That year was &lt;strong&gt;tough&lt;/strong&gt; but I learnt a lot and it was incredibly rewarding to build a product which benefited people, it had a niche use. There were times where I felt so overwhelmed, late nights in the library banging my head against the wall trying to solve the &lt;em&gt;many&lt;/em&gt; bugs. Those on my course were either doing a dissertation or web projects which included film and animation, or building an app with Swift so I struggled on with no one at arms reach to help with JS. But that independent learning route which I was forced down has really shaped the skills I have today.&lt;/p&gt;

&lt;p&gt;Even now I'm still studying, I have a specific note on my computer called 'Learning' I add to it pretty much daily of terms I hear someone mention or cool things I see online that I want to know more about. I add to it more often than I tick things off, but it's my way of keeping track of my current interests. I would highly recommend doing something similar, if you hear a term which is alien to you, google it then or write it down to read up on later. You will learn &lt;em&gt;so&lt;/em&gt; much this way. &lt;/p&gt;

&lt;h3&gt;
  
  
  Work In The Web 🕸️
&lt;/h3&gt;

&lt;p&gt;In January of my final year I came across a 3 day development workshop called &lt;a href="https://workintheweb.com/"&gt;Work In The Web&lt;/a&gt;, ran by a digital agency in Leeds called Mixd. I applied without thinking I'd actually get a place, lo and behold - an email came through and I'd been picked.&lt;/p&gt;

&lt;p&gt;The workshop was one of the best things I have ever done, I would not be where I am today without it, both personally and professionally. I recommend it to anyone in the UK at the beginning of their web dev career, to gain a better insight into the industry - and to network!&lt;/p&gt;

&lt;p&gt;Mixd exuded enthusiasm and passion, and for the first time I felt like there was other people who saw and valued my skills and actively encouraged me to pursue web development. I left the 3 day workshop feeling inspired and motivated, I was so ready to show those people that me, yes me! could become a web developer. I got home and saw they had an opening for a &lt;em&gt;Graduate developer&lt;/em&gt;. I applied and 2 face-to-face interviews and 1 tech interview later - I was offered the job! 🎉&lt;/p&gt;

&lt;h3&gt;
  
  
  My first web developer role ⭐
&lt;/h3&gt;

&lt;p&gt;I spent 1 year working as part of a small team with the most incredible colleagues, building custom WordPress sites - putting my PHP skills to good use. I was lucky enough to have an incredible mentor during my time at Mixd, I learnt invaluable skills from him and put a lot of my confidence now down to the time he invested in me. If you ever find yourself in a situation of being offered a mentor - take it, it might not always work out, and that's fine, you tried. But a good mentor is priceless.&lt;/p&gt;

&lt;p&gt;Our clients were heavily public sector which meant they were being used by the public and accessibility had to be tip top - after that accessibility is kind of ingrained in me now. A lot of engineers see accessibility as an afterthought, but if you pledge to writing accessible code from the get go, you'll thank yourself later, and so will your users! Semantic markup is more important than you think.&lt;/p&gt;

&lt;h3&gt;
  
  
  Moving on 🚀
&lt;/h3&gt;

&lt;p&gt;Leeds and Mixd were great, but the big city was calling! Along with multiple other reasons, I was up for a new challenge. I packed my bags and moved to London, landing a software engineering role at a Fintech in their website team. My PHP days were over and I was thrown into the deep end with Javascript and React - and I &lt;em&gt;love&lt;/em&gt; it! I had done numerous online courses but I was ready to put into practice what I'd spent so much time learning. I've been in my current role for 1 year and 1 month. My team is small and talented, we all bring something different to the table and that's what I &lt;em&gt;love&lt;/em&gt;. Never underestimate the power of thinking differently to your team, it can ignite great discussions and guide projects in cool ways. I get involved with all kinds of things, from UI and UX design to identifying insights in improving our website.&lt;/p&gt;

&lt;h3&gt;
  
  
  In the now 👀
&lt;/h3&gt;

&lt;p&gt;Since starting my current role, I found myself spending less time on side projects as my day-to-day got busier, but recently, I've taken a pledge to myself to invest more time in my personal interests - outside of work. Hence - &lt;a class="comment-mentioned-user" href="https://dev.to/britnorcodes"&gt;@britnorcodes&lt;/a&gt;
 was born!&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--sOtskXkb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1283537245488721920/1KWEsynR_normal.jpg" alt="Em 💫 profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Em 💫
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        &lt;a class="comment-mentioned-user" href="https://dev.to/britnorcodes"&gt;@britnorcodes&lt;/a&gt;

      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Took the plunge and made a twitter specifically for all my tech needs 🤓💫
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      19:12 PM - 02 Jul 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1278768410529325056" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-reply-action.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1278768410529325056" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-retweet-action.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      0
      &lt;a href="https://twitter.com/intent/like?tweet_id=1278768410529325056" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-like-action.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
      9
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;
 

&lt;p&gt;So, where do I see myself in 5 years? I &lt;em&gt;hate&lt;/em&gt; this question, like with a &lt;strong&gt;passion&lt;/strong&gt;. I find it so hard narrow down all the grand plans I dream of for myself into practical plans for the future. But at the moment I'm interested in connecting with other people like me! The best unexpected perk of being in tech is the incredible community online, everyone is so eager to help and that really helped me when I was starting out. I don't like the thought of anyone not doing something because they're too intimidated to ask questions, or fear they're not good enough. Those leading the tech industry were once beginners too, they weren't born with all the knowledge - although, that &lt;em&gt;would&lt;/em&gt; be pretty great wouldn't it?&lt;/p&gt;

&lt;p&gt;I'm aware the tech community is great but it can also be &lt;strong&gt;scary&lt;/strong&gt; because it can often feel like everyone knows a lot more than you, or you don't know where to start. But I can guarantee that no one knows everything, nor are you expected to. My goal is to encourage as many people as I can to pursue a career in tech, &lt;em&gt;especially&lt;/em&gt; women. Self directed learning can be &lt;strong&gt;hard&lt;/strong&gt; because you have to trudge through all the online resources to find the ones that work for you, but I promise you they are out there. Create your own path. ✨&lt;/p&gt;

&lt;p&gt;People learn at different speeds, this took me SO long to actually process and accept, don't feel defeated because people around you are moving quicker, your time will come, keep at it. I've had my fair few blockers and days where I was ready to give up, but looking back I'm &lt;em&gt;so&lt;/em&gt; glad I didn't because now I get to do what I love &lt;em&gt;and&lt;/em&gt; I get paid for it. I'm really keen to get involved in Open Source Software so if you have any experience with this or where to start - get in touch.&lt;/p&gt;

&lt;p&gt;If you made it this far, come say hey! &lt;a class="comment-mentioned-user" href="https://dev.to/britnorcodes"&gt;@britnorcodes&lt;/a&gt;
 👋&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>codenewbie</category>
      <category>career</category>
    </item>
  </channel>
</rss>
