<?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: Amanda Giannelli</title>
    <description>The latest articles on DEV Community by Amanda Giannelli (@giannellitech).</description>
    <link>https://dev.to/giannellitech</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%2F553476%2Fe023eb5d-3b7f-4161-acb0-826204513c9b.png</url>
      <title>DEV Community: Amanda Giannelli</title>
      <link>https://dev.to/giannellitech</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/giannellitech"/>
    <language>en</language>
    <item>
      <title>Keeping Your Fork Up-to-date</title>
      <dc:creator>Amanda Giannelli</dc:creator>
      <pubDate>Wed, 31 Mar 2021 20:13:26 +0000</pubDate>
      <link>https://dev.to/giannellitech/keeping-your-fork-up-to-date-klh</link>
      <guid>https://dev.to/giannellitech/keeping-your-fork-up-to-date-klh</guid>
      <description>&lt;p&gt;When you fork a repository, you are creating your own copy to manage. Development will continue on the main repository so your fork may fall behind. &lt;/p&gt;

&lt;h2&gt;
  
  
  Today's quick lesson:
&lt;/h2&gt;

&lt;p&gt;Keeping your forked repository up to date with the main repository&lt;/p&gt;

&lt;h2&gt;
  
  
  Steps
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Clone your fork&lt;br&gt;
&lt;code&gt;$ git clone git@github.com:[user]/[repo].git&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Add the upstream&lt;br&gt;
&lt;code&gt;$ git remote add upstream git://github.com/[user]/[repo].git&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Get the latest upstream&lt;br&gt;
&lt;code&gt;$ git fetch upstream&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Bring your fork up to date using &lt;code&gt;merge&lt;/code&gt; OR &lt;code&gt;rebase&lt;/code&gt; &lt;br&gt;
(pick &lt;strong&gt;one&lt;/strong&gt;, you can read more about the differences &lt;a href="https://www.atlassian.com/git/tutorials/merging-vs-rebasing"&gt;here&lt;/a&gt;)&lt;br&gt;
&lt;code&gt;$ git merge upstream/[remote-branch] [local-branch]&lt;/code&gt;&lt;br&gt;
-OR-&lt;br&gt;
&lt;code&gt;$ git rebase upstream/[remote-branch] [local-branch]&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Done! 🎉 Your local fork is now up to date. For future updates, you will only need steps 3 and 4 as you have already established the upstream. &lt;/p&gt;

&lt;p&gt;I hoped this helped you. If there are other quick tips you'd like, or more in depth topics you'd like me to cover, leave a comment or reach out to me, &lt;a href="https://twitter.com/GiannelliTech"&gt;@giannelli.tech&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading! 👩‍💻&lt;/p&gt;

&lt;p&gt;&lt;span&gt;Photo by &lt;a href="https://unsplash.com/@yancymin?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Yancy Min&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/github?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>beginners</category>
      <category>git</category>
    </item>
    <item>
      <title>What's in a Pomodoro? 🍅</title>
      <dc:creator>Amanda Giannelli</dc:creator>
      <pubDate>Fri, 26 Mar 2021 15:21:53 +0000</pubDate>
      <link>https://dev.to/giannellitech/what-s-in-a-pomodoro-34jc</link>
      <guid>https://dev.to/giannellitech/what-s-in-a-pomodoro-34jc</guid>
      <description>&lt;p&gt;Pomodoros are an excellent time-management and productivity tool to keep in your arsenal.&lt;/p&gt;

&lt;h1&gt;
  
  
  Background
&lt;/h1&gt;

&lt;p&gt;Two years ago I took a free class on Coursera called &lt;a href="https://www.coursera.org/learn/learning-how-to-learn"&gt;Learning How To Learn&lt;/a&gt; by &lt;a href="https://en.wikipedia.org/wiki/Barbara_Oakley"&gt;Barbara Oakley&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Barbara talks you through the different types of memory and the learning modes of the brain. She then shows how to use these modes to your advantage so that you can learn better, overcome procrastination, and boost memory recall.  &lt;/p&gt;

&lt;p&gt;I won't go into all the details of the course - I highly recommend checking it out for yourself - but my favorite technique from the course was &lt;em&gt;Pomodoros&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is a Pomodoro?
&lt;/h2&gt;

&lt;p&gt;A &lt;strong&gt;Pomodoro&lt;/strong&gt; is a time management technique. You work on a task in short, timed intervals, usually 25 minutes, then treat yourself to a break. The name was inspired by a tomato-shaped kitchen timer used by the originator of &lt;a href="https://en.wikipedia.org/wiki/Pomodoro_Technique"&gt;the technique&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;During a Pomodoro you focus only on the task at hand - no distractions! No messages, email, phone, etc. If something does come up you make the choice to save it for later or handle it now.  If you handle it now, the Pomodoro is cancelled. &lt;/p&gt;

&lt;h2&gt;
  
  
  How to Pomodoro
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Achieve your Pomodoro with these 6 easy steps! &lt;/p&gt;
&lt;/blockquote&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;🤔 Decide what task you want to work on &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;⛔ Turn off all distractions (as best you can) &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;⏳ Set your timer for 25 minutes &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;🚧 Work! work! work! 'til the timer goes off &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;🌴 Take a 3-5 minute break &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;🔁 Repeat (as needed)&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The &lt;a href="https://en.wikipedia.org/wiki/Pomodoro_Technique"&gt;original technique&lt;/a&gt; recommends four Pomodoro's per session, or set. Make a checkmark on a piece of paper every time you finish a Pomodoro. When you have four check marks take a longer break, 15-30 mins, then start over from step 1. &lt;/p&gt;

&lt;p&gt;In my experience one of two things happens during the 25 minutes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;You make progress and feel motivated. Maybe you finish even the task 🎉&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You make very little (or no) progress. Maybe you realize this task is beyond your abilities and you'll need outside help. Or the task is going to take way longer than anticipated 😭&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If you're in the 2nd group, that's ok. Take a break and decide if you want to keep going right now. If you do, awesome! Set that timer and keep going.  If not, then put the task to the side, if possible. Do something else for a bit and pick the original task back up later. &lt;/p&gt;

&lt;h2&gt;
  
  
  Why breaks are important
&lt;/h2&gt;

&lt;p&gt;Ever been told by an instructor to read over the whole test before you start? &lt;/p&gt;

&lt;p&gt;Ever been stuck on a problem only to wake up in the middle of the night with an idea to move you forward?&lt;/p&gt;

&lt;p&gt;Taking a break from the current task allows our brains &lt;em&gt;assimilate&lt;/em&gt;, or absorb and process, what we're working on. This is true even if you move on to something else in the meantime. Your brain needs time to process what you have learned / worked on in order to connect the dots for the next step. &lt;/p&gt;

&lt;p&gt;Admittedly, I do not always heed my timer. Sometimes I am so in the zone when it goes off that I keep going. I try to be mindful of this and take a break as soon as I'm at a good stopping point. &lt;/p&gt;

&lt;h2&gt;
  
  
  Timers ⏳
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;TL;DR: Use whatever works for you.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;When I first implemented Pomodoros I used the basic timer in the clock app on my phone, and there are plenty of apps in any app store. Recently, however, I made the switch to a &lt;em&gt;manual&lt;/em&gt; Pomodoro timer.&lt;/p&gt;

&lt;p&gt;Why manual? I feel my phone timer is too easily dismissed and, to be honest, the phone can be a distraction on it's own. I thought a manual timer would help set clear boundaries for the task:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;The act of physically turning the timer is a definitive start.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The classic kitchen timer ring, that can't be immediately silenced, is a clear signal to take a break. &lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A few weeks ago, in a stars-align moment, &lt;a href="https://twitter.com/nitya"&gt;Nitya (@nitya)&lt;/a&gt; posted a picture of her new mobile desk, and highlighted &lt;em&gt;her&lt;/em&gt; &lt;a href="https://twitter.com/nitya/status/1361720501194940419"&gt;Pomodoro timer&lt;/a&gt;. Nitya's sentiments matched my own, so I finally took the leap and bought the &lt;a href="https://twitter.com/GiannelliTech/status/1362969790642589705"&gt;same one&lt;/a&gt;. 😉&lt;/p&gt;

&lt;h2&gt;
  
  
  The Experiment &amp;amp; Results
&lt;/h2&gt;

&lt;p&gt;Over the past few weeks I have tested out my little penguin friend with great success. &lt;/p&gt;

&lt;p&gt;My hypothesis was correct. I am definitely more productive during a Pomodoro. Setting the timer helped me better connect with the task, and the crazy ringing sound definitely snaps me out of it.&lt;/p&gt;

&lt;p&gt;What I did not expect was that I would enjoy the ticking sound. It may not be for everyone, but the ticking sound helped maintain my focus. I think it's because the ticking acts as a constant reminder that you're supposed to be working. ⌛&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Procrastination, got you down? Try &lt;strong&gt;&lt;em&gt;Pomodoros&lt;/em&gt;&lt;/strong&gt;! You'll be surprised at how effective they can be. 🍅&lt;/p&gt;

&lt;p&gt;If interested, here is a link to the timer I purchased: &lt;a href="https://www.amazon.com/gp/product/B0072GHH42"&gt;Penguin Timer 🐧&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;span&gt;Photo by &lt;a href="https://unsplash.com/@avincp?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Avin CP&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/tomato?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>productivity</category>
    </item>
    <item>
      <title>Change the Terminal Name in VSCode</title>
      <dc:creator>Amanda Giannelli</dc:creator>
      <pubDate>Wed, 10 Mar 2021 15:51:05 +0000</pubDate>
      <link>https://dev.to/giannellitech/change-the-terminal-name-in-vscode-30a8</link>
      <guid>https://dev.to/giannellitech/change-the-terminal-name-in-vscode-30a8</guid>
      <description>&lt;p&gt;In working with &lt;a href="https://redwoodjs.com/"&gt;RedwoodJS&lt;/a&gt; I often have a few running terminals that I switch between. By default the terminal name is usually the type running (&lt;code&gt;bash&lt;/code&gt;, &lt;code&gt;powershell&lt;/code&gt;, &lt;code&gt;node&lt;/code&gt;, etc.) so it can be confusing when you have multiple terminals to run simultaneously. &lt;/p&gt;

&lt;h1&gt;
  
  
  Today's quick lesson:
&lt;/h1&gt;

&lt;p&gt;Changing the terminal name in VS Code&lt;/p&gt;

&lt;h1&gt;
  
  
  Steps
&lt;/h1&gt;

&lt;ol&gt;
&lt;li&gt;Select the terminal you want to rename&lt;/li&gt;
&lt;li&gt;Press &lt;code&gt;CTRL+Shift+P&lt;/code&gt; / &lt;code&gt;⇧⌘P&lt;/code&gt; and search for terminal rename&lt;/li&gt;
&lt;li&gt;Enter the name you want and press enter &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Done. Your terminal has been renamed! 🎉&lt;/p&gt;

&lt;p&gt;I hoped this helped you. If there are other quick tips you'd like, or more in depth topics you'd like me to cover, leave a comment or reach out to me, &lt;a href="https://twitter.com/GiannelliTech"&gt;@giannelli.tech&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading! 👩‍💻&lt;/p&gt;

&lt;p&gt;Photo by &lt;a href="https://unsplash.com/@codestorm?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Safar Safarov&lt;/a&gt; on &lt;a href="/s/photos/code?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>vscode</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Setting The Default Terminal In VS Code</title>
      <dc:creator>Amanda Giannelli</dc:creator>
      <pubDate>Tue, 09 Mar 2021 14:09:53 +0000</pubDate>
      <link>https://dev.to/giannellitech/setting-the-default-terminal-in-vs-code-95c</link>
      <guid>https://dev.to/giannellitech/setting-the-default-terminal-in-vs-code-95c</guid>
      <description>&lt;p&gt;Sometimes you want a tutorial that is straight and to the point. You want the &lt;em&gt;how&lt;/em&gt;, not the who, what, where, when, why. &lt;/p&gt;

&lt;p&gt;Today's quick lesson: setting the default terminal in VS Code. &lt;/p&gt;

&lt;h1&gt;
  
  
  Steps
&lt;/h1&gt;

&lt;ol&gt;
&lt;li&gt;Open VS Code&lt;/li&gt;
&lt;li&gt;Press &lt;code&gt;CTRL+Shift+P&lt;/code&gt; / &lt;code&gt;⇧⌘P&lt;/code&gt;  and search for &lt;code&gt;terminal select default shell&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Make your selection and press enter (In my case I chose &lt;code&gt;Git Bash&lt;/code&gt;)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;All of your new terminals will now default to your choice 🎉 &lt;/p&gt;

&lt;p&gt;I hoped this helped you. If there are other quick tips you'd like, or more in depth topics you'd like me to cover, leave a comment or reach out to me, &lt;a href="https://twitter.com/GiannelliTech"&gt;@giannelli.tech&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading! 👩‍💻&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Photo by &lt;a href="https://www.pexels.com/@pixabay?utm_content=attributionCopyText&amp;amp;utm_medium=referral&amp;amp;utm_source=pexels"&gt;Pixabay&lt;/a&gt; from &lt;a href="https://www.pexels.com/photo/blur-bright-business-codes-207580/?utm_content=attributionCopyText&amp;amp;utm_medium=referral&amp;amp;utm_source=pexels"&gt;Pexels&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>tutorial</category>
      <category>beginners</category>
      <category>devjournal</category>
      <category>todayilearned</category>
    </item>
    <item>
      <title>Being A `n00b` Is Okay, Really</title>
      <dc:creator>Amanda Giannelli</dc:creator>
      <pubDate>Tue, 09 Feb 2021 21:16:04 +0000</pubDate>
      <link>https://dev.to/giannellitech/being-a-n00b-is-okay-really-bgd</link>
      <guid>https://dev.to/giannellitech/being-a-n00b-is-okay-really-bgd</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;span&gt;Photo by &lt;a href="https://unsplash.com/@adigold1?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Adi Goldstein&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/code?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I have been a back-end software engineer for 10+ years and, to be honest, I lost the passion I once had. After having my daughter in September, and spending three straight months of nothing but eat-sleep-baby, returning to (remote) work in December was nerve-wracking, yet exciting. This was the longest I had been away from work, ever, and in a way it felt like my first day. I decided to take advantage of those first-day-feels, embrace being a &lt;code&gt;n00b&lt;/code&gt; again, and try to find that passion I used to have.&lt;/p&gt;

&lt;p&gt;If you're starting out or, like me, you've lost your way a bit over the years, here are my tips for embracing your inner &lt;code&gt;n00b&lt;/code&gt; to find what excites you.&lt;/p&gt;

&lt;h3&gt;
  
  
  Install the &lt;a href="https://api.daily.dev/get?r=agiannelli"&gt;daily.dev&lt;/a&gt; extension
&lt;/h3&gt;

&lt;p&gt;Every developer needs this extension installed in their browser. &lt;strong&gt;Period.&lt;/strong&gt; It is an excellent resource for dev news across the web and every day I am inspired by the articles I read. (Plus, they make like it a game where you "level up" if you read so many days in a row 😉) If you're not quite sure what you're interested in, browse daily.dev at least once a day and I promise you'll find something.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://api.daily.dev/get?r=agiannelli"&gt;Download it now&lt;/a&gt; - you won't regret it!&lt;/p&gt;

&lt;h3&gt;
  
  
  Start a new &lt;a href="https://twitter.com/GiannelliTech"&gt;twitter&lt;/a&gt; account
&lt;/h3&gt;

&lt;p&gt;My original twitter account is old. I signed up when Twitter was barely a toddler and you were limited to 140 characters. I am no where near the same person I was when I started that account and the thought of going through the people I followed was too much work. It wasn't &lt;em&gt;sparking joy&lt;/em&gt; so I &lt;a href="https://konmari.com/what-is-konmari-method/"&gt;konmari'd&lt;/a&gt; it. &lt;/p&gt;

&lt;p&gt;By starting anew I was able to follow accounts based on my interests today, and through them, find others to follow. &lt;/p&gt;

&lt;h3&gt;
  
  
  Attend events
&lt;/h3&gt;

&lt;p&gt;I can recall attending one meetup in my career. I was still a junior developer and I went with coworkers after work. The only thing I remember is that it was held at Spotify headquarters in NYC and I thought that was pretty cool. 🤷‍♀️&lt;/p&gt;

&lt;p&gt;With the world of virtual events, it's a lot easier to find something that will interest you. When daily.dev announced they were holding their first event, &lt;a href="https://daily.dev/posts/icymi-recap-of-the-monthly-dev-1"&gt;The Monthly Dev #1&lt;/a&gt;, I knew I had to attend - and I'm glad I did. &lt;/p&gt;

&lt;p&gt;So attend a meetup or two! &lt;em&gt;(Hint: &lt;a href="https://www.eventbrite.com/e/the-monthly-dev-2-by-dailydev-registration-138397862733?aff=ebdsoporgprofile"&gt;The Monthly Dev #2&lt;/a&gt; is next month!)&lt;/em&gt; You never know what you will be exposed to or what tidbit of information will inspire you. I was so inspired, in fact, that it led me to my next step... &lt;/p&gt;

&lt;h3&gt;
  
  
  Get involved with &lt;strong&gt;&lt;em&gt;something&lt;/em&gt;&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;The first presenter at The Monthly Dev was David Price (&lt;a href="https://twitter.com/thedavidprice"&gt;@thedavidprice&lt;/a&gt;) showcasing &lt;a href="https://redwoodjs.com/"&gt;RedwoodJS&lt;/a&gt;. As a mostly back-end dev that wants, but has struggled, to enter the world of front-end, Redwood was &lt;em&gt;exactly&lt;/em&gt; what I had been looking for. &lt;/p&gt;

&lt;p&gt;I drank the kool-aid without hesitation. I joined the &lt;a href="https://community.redwoodjs.com/"&gt;community&lt;/a&gt; and started the &lt;a href="https://redwoodjs.com/tutorial/welcome-to-redwood"&gt;Tutorial&lt;/a&gt; right after the meetup ended. After only a week of interacting with the community, I'm a &lt;a href="https://github.com/redwoodjs/redwoodjs.com/pull/544"&gt;contributor&lt;/a&gt; for the first time in my life. (Remember - it's all about baby steps!) I'm an admitted fan girl and I tell everyone about &lt;a href="https://redwoodjs.com/"&gt;Redwood&lt;/a&gt;. &lt;code&gt;#noshame&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;(I plan on writing more on Redwood in the near-future, but in the meantime definitely &lt;a href="https://redwoodjs.com/"&gt;check it out&lt;/a&gt;. 😉)&lt;/p&gt;

&lt;h3&gt;
  
  
  Start writing
&lt;/h3&gt;

&lt;p&gt;This is my first public blog post ever. I am so judgmental of myself that I have written at least 40 different versions of this post - but guess what? In attempting to write this one post, I now have a folder full of half-started ideas. Progress.&lt;/p&gt;

&lt;p&gt;Even if you're not quite sure what to write about yet, the brainstorming process can be very powerful. &lt;code&gt;#juststart&lt;/code&gt; You end up going places you wouldn't expect and the plan you thought you wanted changes. &lt;/p&gt;

&lt;h3&gt;
  
  
  To sum up...
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;#juststart&lt;/code&gt; has been my motto since December and, so far, it is serving me well. Think of it as the alternative to "Feel the fear and do it anyway". It only takes that first (baby) step to put you on your path, really. (I know, I didn't believe it either...)&lt;/p&gt;

&lt;p&gt;So, install &lt;a href="https://api.daily.dev/get?r=agiannelli"&gt;daily.dev&lt;/a&gt;. Find new people to follow on twitter (&lt;a href="https://twitter.com/GiannelliTech"&gt;hi&lt;/a&gt;! 👋). And see where it goes!&lt;/p&gt;

&lt;p&gt;Embrace your inner &lt;code&gt;n00b&lt;/code&gt; and &lt;code&gt;#juststart&lt;/code&gt;.&lt;/p&gt;

</description>
      <category>womenintech</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
