<?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: Scott</title>
    <description>The latest articles on DEV Community by Scott (@scottstern06).</description>
    <link>https://dev.to/scottstern06</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%2F366160%2F304d78ff-24ce-4372-b612-5622fc5b2ff6.png</url>
      <title>DEV Community: Scott</title>
      <link>https://dev.to/scottstern06</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/scottstern06"/>
    <language>en</language>
    <item>
      <title>How to get experience to get your first job as a dev</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Wed, 01 Dec 2021 16:20:49 +0000</pubDate>
      <link>https://dev.to/scottstern06/how-to-get-experience-to-get-your-first-job-as-a-dev-1b87</link>
      <guid>https://dev.to/scottstern06/how-to-get-experience-to-get-your-first-job-as-a-dev-1b87</guid>
      <description>&lt;p&gt;Ahhhhhh...the age old question of the chicken and the egg.&lt;/p&gt;

&lt;p&gt;One of the most frustrating things you're told when getting a job is you need experience.&lt;/p&gt;

&lt;p&gt;But how do you get experience when NO ONE WILL GIVE YOU EXPERIENCE?!&lt;/p&gt;

&lt;p&gt;Well, in most industries youre SOL.&lt;/p&gt;

&lt;p&gt;But in software development there are a few really good options.&lt;/p&gt;

&lt;p&gt;Because you are getting better at a skill that allows you to build things, you can do exactly that.&lt;/p&gt;

&lt;p&gt;However...&lt;/p&gt;

&lt;p&gt;Building a todo list or portfolio will only get you so far.&lt;/p&gt;

&lt;p&gt;So how do we get experience?&lt;/p&gt;

&lt;p&gt;With open source....&lt;/p&gt;

&lt;p&gt;Contributing to open source is the CLOSEST thing to getting actual work experience that will impress your hiring managers and fellow engineers.&lt;/p&gt;

&lt;p&gt;Contributing to open source was the main thing that propelled my success after i graduated from a bootcamp.&lt;/p&gt;

&lt;p&gt;So GO CONTRIBUTE!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;If you want more:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/gettek"&gt;https://www.facebook.com/groups/gettek&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here is a &lt;a href="https://engjobresources.carrd.co/"&gt;link&lt;/a&gt; to get my top 10 interview resources for FREE.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>tooling</category>
      <category>programming</category>
    </item>
    <item>
      <title>the command line command that saves me hours per week</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Wed, 17 Nov 2021 22:20:42 +0000</pubDate>
      <link>https://dev.to/scottstern06/the-command-line-command-that-saves-me-hours-per-week-2dmc</link>
      <guid>https://dev.to/scottstern06/the-command-line-command-that-saves-me-hours-per-week-2dmc</guid>
      <description>&lt;p&gt;The command that saves me hours per week&lt;/p&gt;

&lt;p&gt;Knowing your tools can make or break your productivity.&lt;/p&gt;

&lt;p&gt;But let’s talk about the command line first.&lt;/p&gt;

&lt;p&gt;It’s FOUN-DA-TIONAL to your success as a developer or engineer.&lt;/p&gt;

&lt;p&gt;Why?&lt;/p&gt;

&lt;p&gt;This is your way to interface with your computer, run files, test stuff out, push your code to git, and so on.&lt;/p&gt;

&lt;p&gt;Ya sure you can use an abstraction for these things like an IDE or git user interface like GitTower.&lt;/p&gt;

&lt;p&gt;But…it really stunts your growth as a developer if you can’t use the terminal.&lt;/p&gt;

&lt;p&gt;You’re gonna see this everywhere in your day to day.&lt;/p&gt;

&lt;p&gt;Not only are you using it to build something small. But if you need to connect to a server and investigate. You’re gonna want to know how to figure out where you are and how to navigate to get your job done.&lt;/p&gt;

&lt;p&gt;There’s nothing like SSH’ing(connecting) into a server and feeling shid outta luck because you dont know what to do.&lt;/p&gt;

&lt;p&gt;Anyways…&lt;/p&gt;

&lt;p&gt;Back to the command that saves me hours per week…probably more.&lt;/p&gt;

&lt;p&gt;It’s called &lt;code&gt;"grep"&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;This is just a fancy way of saying…&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Hey!!! Computer!!! Filter out a bunch of stuff and show me &lt;br&gt;
what I care about.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I use this when listing files…a lot. Or checking the contents of a file. So I don’t need to manually use my eyeballs to go read stuff I don’t have the time or patience for.&lt;/p&gt;

&lt;p&gt;Work smarter not harder....amiright? 😉&lt;/p&gt;

&lt;p&gt;Something I use in the wild looks like:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;gt; ls | grep thatthingicareabout&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This will list all of the files in my directory and then filter all folders or files that contain the title “thingthaticareabout”.&lt;/p&gt;

&lt;p&gt;With all of that being said…&lt;/p&gt;

&lt;p&gt;I literally just finished my first offer &lt;strong&gt;&lt;em&gt;Mastering the Command Line Basics in Under 20 minutes&lt;/em&gt;&lt;/strong&gt; to set YOU up for success no matter where your career takes you.&lt;/p&gt;

&lt;p&gt;This offer includes the most important commands I use on a daily basis and HOW to use them.&lt;/p&gt;

&lt;p&gt;So…&lt;/p&gt;

&lt;p&gt;If you want to save hours per week so you can focus on solving actual problems and get your engineering career off on the &lt;br&gt;
right foot…&lt;/p&gt;

&lt;p&gt;&lt;a href="https://commandline-basic.carrd.co/"&gt;&amp;gt;&amp;gt;&amp;gt; Check it out!!!!&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  If you want more:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Here is a &lt;a href="https://engjobresources.carrd.co/"&gt;link&lt;/a&gt; to get my top 10 interview resources for FREE&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>tooling</category>
      <category>programming</category>
    </item>
    <item>
      <title>How mastering your tools can make or break you as a dev</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Mon, 15 Nov 2021 17:06:37 +0000</pubDate>
      <link>https://dev.to/scottstern06/how-mastering-your-tools-can-make-or-break-you-as-a-dev-3m22</link>
      <guid>https://dev.to/scottstern06/how-mastering-your-tools-can-make-or-break-you-as-a-dev-3m22</guid>
      <description>&lt;p&gt;I was working on my first offer on how to make your first contribution to open source.&lt;/p&gt;

&lt;p&gt;But then...I realized that a huge blocker in devs with experience across the board is not mastering their tools&lt;/p&gt;

&lt;p&gt;And...if you cant use the command line, you probably wont be able to make your first contribution to open source.&lt;/p&gt;

&lt;p&gt;When Im talking about tools, I am talking about the tools we use on a daily basis to get our job done.&lt;/p&gt;

&lt;p&gt;Like.....&lt;/p&gt;

&lt;p&gt;...using the command line&lt;/p&gt;

&lt;p&gt;...using git&lt;/p&gt;

&lt;p&gt;....using our text editor&lt;/p&gt;

&lt;p&gt;....etc etc&lt;/p&gt;

&lt;p&gt;Now, why is this so important?&lt;/p&gt;

&lt;p&gt;Glad you asked ;)&lt;/p&gt;

&lt;p&gt;Being a developer is so mentally intense your tools need to be second nature.&lt;/p&gt;

&lt;p&gt;Like a brush to an artist, or a sword to a samurai.&lt;/p&gt;

&lt;p&gt;If youre struggling with your tools you cannot free your mind to solve the hard problems that exist in engineering.&lt;/p&gt;

&lt;p&gt;So...&lt;/p&gt;

&lt;p&gt;With all that being said...I thought it would be valuable to put together a quick resource on Mastering the Command Line in Under 30 Minutes.&lt;/p&gt;

&lt;p&gt;I put the commands in there that I use most often on a daily basis to help you learn almost all of the commands you need to be a working developer or engineer.&lt;/p&gt;

&lt;p&gt;Mastering the command line is E-SSENTIAL to being a developer. I probably spend most of my time in the terminal.&lt;/p&gt;

&lt;p&gt;I see new developers scared to dive in to the world of the command line...&lt;/p&gt;

&lt;p&gt;But I promise....its simple as long as you know what youre supposed to do and it will make your life as a developer so much easier.&lt;/p&gt;

&lt;p&gt;Comment below if this is something you would be interested in :)&lt;/p&gt;

&lt;h3&gt;
  
  
  If you want more:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Here is a &lt;a href="https://engjobresources.carrd.co/"&gt;link&lt;/a&gt; to get my top 10 interview resources for FREE&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>productivity</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Fastest way get your first developer job</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Thu, 11 Nov 2021 19:07:44 +0000</pubDate>
      <link>https://dev.to/scottstern06/fastest-way-get-your-first-eng-gig-92b</link>
      <guid>https://dev.to/scottstern06/fastest-way-get-your-first-eng-gig-92b</guid>
      <description>&lt;p&gt;Do you know the shortest path between two points?&lt;/p&gt;

&lt;p&gt;...its a straight line.&lt;/p&gt;

&lt;p&gt;When trying to get your first job as a software developer theres a lot of stuff you dont know. &lt;/p&gt;

&lt;p&gt;It might seem like a good idea to learn python, and ruby, and javascript, and java (because java kinda sounds like javascript)&lt;/p&gt;

&lt;p&gt;Well...when money is tight and you need to get a job its crucial to reflect on your goal (getting a job) and how you can get there from your current situation.&lt;/p&gt;

&lt;p&gt;I recommend focusing on basic frontend technologies using HTML, CSS, and Javascript to build a simple game.&lt;/p&gt;

&lt;p&gt;Idk something simple like every time you click a die it rolls a new number 1-6.&lt;/p&gt;

&lt;p&gt;Simple and fun.&lt;/p&gt;

&lt;p&gt;Then deploy it.....&lt;/p&gt;

&lt;p&gt;Thats valuable.&lt;/p&gt;

&lt;p&gt;Whats not valuable is...going through ANOTHER tutorial on something youll never use in your career.&lt;/p&gt;

&lt;p&gt;Anywhoooooo...&lt;/p&gt;

&lt;p&gt;Its not about how hard you work its about how hard you work doing the RIGHT things.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;If you want more:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Here is a &lt;a href="https://engjobresources.carrd.co/"&gt;link&lt;/a&gt; to top 10 interview resources&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>codenewbie</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>career</category>
    </item>
    <item>
      <title>Whats your biggest blocker getting your first software engineering job?</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Wed, 10 Nov 2021 16:08:56 +0000</pubDate>
      <link>https://dev.to/scottstern06/whats-your-biggest-blocker-getting-your-first-software-engineering-job-1b2e</link>
      <guid>https://dev.to/scottstern06/whats-your-biggest-blocker-getting-your-first-software-engineering-job-1b2e</guid>
      <description>&lt;p&gt;Getting your first job out of a bootcamp or being self taught is no easy task...but its possible.&lt;/p&gt;

&lt;p&gt;What is your biggest blocker making that next step?&lt;/p&gt;

&lt;p&gt;-Scott &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Want more?&lt;/em&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Here is a &lt;a href="https://engjobresources.carrd.co/"&gt;link&lt;/a&gt; to top 10 interview resources&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>career</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>My top resources for interviewing</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Sun, 17 Oct 2021 00:01:25 +0000</pubDate>
      <link>https://dev.to/scottstern06/my-top-resources-for-interviewing-33o4</link>
      <guid>https://dev.to/scottstern06/my-top-resources-for-interviewing-33o4</guid>
      <description>&lt;p&gt;This week I finally got my shid together and sat down to compile a list of things I thought were valuable when interviewing.&lt;/p&gt;

&lt;p&gt;Resources and some mindset stuff...like how to get yo'self unstuck in an interview, should you apply to engineer or developer roles, etc etc&lt;/p&gt;

&lt;p&gt;So, my gift to you...&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engjobresources.carrd.co/"&gt;&amp;gt;&amp;gt;&amp;gt; LINK HERE&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Talk soon&lt;/p&gt;

&lt;p&gt;Scott&lt;/p&gt;

</description>
      <category>career</category>
      <category>javascript</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Its october...should you be applying to jobs right now?</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Thu, 07 Oct 2021 00:22:34 +0000</pubDate>
      <link>https://dev.to/scottstern06/its-october-should-you-be-applying-to-jobs-right-now-49g7</link>
      <guid>https://dev.to/scottstern06/its-october-should-you-be-applying-to-jobs-right-now-49g7</guid>
      <description>&lt;p&gt;Its October...you know what that means.&lt;/p&gt;

&lt;p&gt;Pumpkin spiced latte season!&lt;/p&gt;

&lt;p&gt;As we start heading into the end of the year, it gets harder and harder to interview for jobs because companies usually punt to start interviewing at the beginning of the year when their budget renews.&lt;/p&gt;

&lt;p&gt;This doesn't mean you should stop interviewing and lose hope. &lt;/p&gt;

&lt;p&gt;Im telling you this to set expectations and adjust accordingly&lt;/p&gt;

&lt;p&gt;Happy job hunting!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;P.S. Want more? Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>My top interviewing resources for new engineers.</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Thu, 23 Sep 2021 17:00:30 +0000</pubDate>
      <link>https://dev.to/scottstern06/my-top-interviewing-resources-for-new-engineers-1f3f</link>
      <guid>https://dev.to/scottstern06/my-top-interviewing-resources-for-new-engineers-1f3f</guid>
      <description>&lt;p&gt;Ive been thinking a lot lately about what were my favorite resources to get going when I was job hunting...especially when I first got into software development.&lt;/p&gt;

&lt;p&gt;There is so much information on the best way to prep for a job search.&lt;/p&gt;

&lt;p&gt;Algorithms, portfolio, blah blah blah.&lt;/p&gt;

&lt;p&gt;The catch is it all works and it all doesnt work at the same time.&lt;/p&gt;

&lt;p&gt;You bring your own set of skills to the table and need more help in one area more than others.&lt;/p&gt;

&lt;p&gt;So...theres no one size fits all.&lt;/p&gt;

&lt;p&gt;With all of this being said...&lt;/p&gt;

&lt;p&gt;Ive been thinking about putting a list together of my favorite interview resources and some things to think about when prepping for your next job search.&lt;/p&gt;

&lt;p&gt;If youd be interested in this please comment below :)&lt;/p&gt;

&lt;p&gt;P.S. Want more? Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>productivity</category>
      <category>career</category>
      <category>testing</category>
    </item>
    <item>
      <title>We just reached our first 100 members!!!!</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Tue, 07 Sep 2021 00:50:05 +0000</pubDate>
      <link>https://dev.to/scottstern06/we-just-reached-our-first-100-members-4ki4</link>
      <guid>https://dev.to/scottstern06/we-just-reached-our-first-100-members-4ki4</guid>
      <description>&lt;p&gt;I started a Facebook group a few months ago...the intention was to help people with interviews and share my knowledge and experience to help people grow in their craft.&lt;/p&gt;

&lt;p&gt;Ya know, stuff like resources I think are important, what languages to prioritize, how to get into open source, how to get your first job as an engineer, etc etc.&lt;/p&gt;

&lt;p&gt;Well on September 1 we hit our first 100 members!&lt;/p&gt;

&lt;p&gt;I honestly couldnt be more excited, we have such a great group of supportive people growing and learning together.&lt;/p&gt;

&lt;p&gt;So...if youd like to join&lt;/p&gt;

&lt;p&gt;Its as easy as clicking on the link below.&lt;/p&gt;

&lt;p&gt;Talk soon!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Scott&lt;/p&gt;

</description>
      <category>career</category>
      <category>programming</category>
      <category>productivity</category>
      <category>javascript</category>
    </item>
    <item>
      <title>were never done</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Tue, 31 Aug 2021 17:58:23 +0000</pubDate>
      <link>https://dev.to/scottstern06/were-never-done-3eae</link>
      <guid>https://dev.to/scottstern06/were-never-done-3eae</guid>
      <description>&lt;p&gt;I have friends, my mom, significant others ask me all of the time if I'm done..&lt;/p&gt;

&lt;p&gt;Lol....we're never done as engineers.&lt;/p&gt;

&lt;p&gt;What we have are priorities, we do them and we move forward.&lt;br&gt;
Getting comfortable knowing that we are "never done" is huge. &lt;/p&gt;

&lt;p&gt;Its important to assess what you have to do, prioritize the top few things and get them done.&lt;/p&gt;

&lt;p&gt;How you prioritize depends on the situation.&lt;/p&gt;

&lt;p&gt;However, when I first started this gave me SO MUCH ANXIETY!&lt;/p&gt;

&lt;p&gt;I have so much to do! I don't have enough time!&lt;/p&gt;

&lt;p&gt;I wish someone told me that feeling would never go away. And to be honest, the technology industry moves so fast I feel the same way about learning new technologies, buzz words etc (ill cover this in another post)&lt;/p&gt;

&lt;p&gt;So learn to be comfortable knowing that its never over.&lt;/p&gt;

&lt;p&gt;Its important to have a goal, and reverse engineer your way to where you are.&lt;/p&gt;

&lt;p&gt;Want to get a job? Ok what kind of job? Where are my knowledge gaps? How have my interviews been going? What feedback have I been getting?&lt;/p&gt;

&lt;p&gt;Now, one foot in front of the other march forward.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Want more? Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>productivity</category>
      <category>javascript</category>
    </item>
    <item>
      <title>How to get someone to give you feedback on code you wrote.</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Sun, 29 Aug 2021 01:11:11 +0000</pubDate>
      <link>https://dev.to/scottstern06/how-to-get-someone-to-give-you-feedback-on-code-you-wrote-i6d</link>
      <guid>https://dev.to/scottstern06/how-to-get-someone-to-give-you-feedback-on-code-you-wrote-i6d</guid>
      <description>&lt;p&gt;Do not copy and paste it and send it to them on email, iMessage, whatever....it's a pain in the a$$ to read and give feedback.&lt;/p&gt;

&lt;p&gt;Github has this thing called Gists. Use them, love them, share them.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://gist.github.com/"&gt;https://gist.github.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next time you want someone to give you feedback, copy your code into a gist and send it ovahhhhh.&lt;/p&gt;

&lt;p&gt;This way they can comment on the code and reference specific lines.&lt;/p&gt;

&lt;p&gt;Dont forget to leave some context on what youre trying to accomplish...they might see a better way to solve the problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Want more? Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Scott&lt;/p&gt;

</description>
      <category>career</category>
      <category>productivity</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Breadth vs depth in the job search</title>
      <dc:creator>Scott</dc:creator>
      <pubDate>Fri, 27 Aug 2021 03:52:49 +0000</pubDate>
      <link>https://dev.to/scottstern06/breadth-vs-depth-in-the-job-search-3if</link>
      <guid>https://dev.to/scottstern06/breadth-vs-depth-in-the-job-search-3if</guid>
      <description>&lt;p&gt;Breadth vs Depth when getting a job in the first 3 years of your career....&lt;/p&gt;

&lt;p&gt;It's really important to be good at something. In the beginning I tried learning everything..which was nice and all and gave me a good wholistic picture. But if you NEED to get a job ASAP, it was the opposite thing to do.&lt;/p&gt;

&lt;p&gt;I had spent a bunch of time, kind of playing around in rails, kind of playing around with frontend, kind of playing around with database stuff, learning algorithms. Didnt know how they all fit together but i was going to interviews and getting my a$$ handed to me. &lt;/p&gt;

&lt;p&gt;It took me a while to figure this out. I needed to focus on one thing. That was frontend development.&lt;/p&gt;

&lt;p&gt;Why?&lt;/p&gt;

&lt;p&gt;You have very limited shot at impressing these people. You need to KNOW you shite.&lt;/p&gt;

&lt;p&gt;If you dont have professional experience, youre already at a disadvantage. &lt;/p&gt;

&lt;p&gt;So...you need to give them a reason to hire you....crush that interview.&lt;/p&gt;

&lt;p&gt;Short story long....in the beginning of your career, focus focus focus on ONE thing. Sure sprinkle in some other stuff here and there to grow, but until you're sure you can get a job in a short amount of time doing your craft. Keep getting better at the one thing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Want more? Come join our Facebook group to help you get your first job as a software engineer, career development, and so much more!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.facebook.com/groups/310120400851953"&gt;https://www.facebook.com/groups/310120400851953&lt;/a&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
