DEV Community

Cover image for How does it feel to be a junior developer
Stefanni Brasil
Stefanni Brasil

Posted on

How does it feel to be a junior developer

When I go to events and I meet others juniors developers like me, everyone starts to talk about one thing (in fact, that’s why we get together in the first place): “it’s been so hard, but I am loving it!” So I decided to talk a little about this today and maybe help others who are in the same situation.

Your first weeks

You are so happy someone finally hired you and are excited to work with a team and develop the software. Suddenly you start to feel a lot like this:

  • You are terrified because you think you’re gonna be the intern who dropped the company’s database.
  • You hold your breath for a few seconds before typing git push origin because you are afraid you will push it to master by accident.
  • You have an idea of how to solve a problem, but you are terrified of breaking something important.
  • You move other’s cards in Trello by accident.
  • You are afraid to ask for help again to the team, they all look so busy solving complicated tasks!
  • “How am I going to ask for help if I don’t even know what is happening after spending almost 3 days trying to understand what I am supposed to do?! “
  • “How can she/he find the problem just by looking at it for like 3 seconds??”
  • “I hope I can be a great professional like this person one day!”

Some tips that may help you during this phase

After you freak out a little — or a lot — you start to think:

  • Oh no, that’s why nobody hires people without experience. They will fire me, I know NOTHING!!
  • You feel like you are a burden to the team
  • hello Darkness, my old friend

Unfortunately, this is a very common experience for junior developers. Do not let this put you down, please. This is a sign that you are persevering and you’ll be fine. Here are some tips that I’ve learned that may be helpful when working on a team:

  • Understand and study a lot about Git. Seriously.
  • If you find a command line that you don’t understand, always ask if that’s okay to use it. It’s really important to check the source of the commands and to understand how it works!
  • Write clear and self-explanatory commits and Pull Requests.
  • Read the documentation, even if you don’t understand it first time.
  • Write down commands that your team uses frequently so you don’t have to ask every time.
  • Take 1 hour per week to learn something new will help you improve your learning journey.

How to motivate yourself

For those moments when you feel like you should quit:

  • Remember that you get to every day with people who have a lot of experience and have a lot to teach you (and I am not only talking about code) and they were in the same position years ago.
  • Celebrate every small victory that you accomplish every day.
  • If you are stuck for days, ask for help.
  • Know when and how to ask for help.
  • Talk to others so you can share your feelings with other juniors and seniors too and ask for advice.
  • When you feel like you still got tons of things to learn, remember how much you’ve learned until today.
  • Work on your motivation and enjoy the process. Try your best every day, try to improve your mental health. It can become a stressful process that may make you lose all the fun about programming.

How are you doing being a junior developer? Have something to share here?Do you remember how your first internship was like? What terrified you the most? How did you overcome your fears? What do you have to say for junior programmers like me? See you next time!

This post is also here at Magnetis backstage!

Top comments (69)

Collapse
 
maxwell_dev profile image
Max Antonucci

I completely agree about taking the extra time to learn more git and command line actions. They're both extremely important and can lead to so many more disasters if used recklessly. My main priorities are often those, and the basics of whatever team technologies I understand the least - a lot of work is done in Rails, and learning the basics of that has helped me immensely.

As for dealing with the thoughts of fear and insecurity, I don't think those feelings truly go away. But they're an extra motivator for asking more questions and trying to take on progressively tougher tasks. My best response to it has been a few tips you had: reminding myself of my small wins, reminding myself of how much I've learned so far, and learn at least a little each day.

Another big tip I've learned recently is, as you improve, don't be afraid to trust your gut more. In the early stages it's easy to always distrust it since you need to do lots of research and double-checking for new work. But don't get stuck in the habit of this, since eventually it'll be what tells you when something is wrong before your brain knows it.

Collapse
 
stefannibrasil profile image
Stefanni Brasil

Hi, Max!
Thanks for sharing your experience here. The tip about trusting your gut is something that I am starting to do, having Code Review in our daily practice also gives me some confidence to do that. The best!

Collapse
 
tcratius profile image
Me, myself, and Irenne

I look forward to one day experiencing this. 😁

Collapse
 
stefannibrasil profile image
Stefanni Brasil

Hope this day comes very soon! :D

Collapse
 
erinlmoore profile image
Erin Moore

I DID accidentally push to master, and had to ask for help backing it out 🙇🏻‍♀️.

So now I always push with git push origin <branch-name>, even if there are shorter ways.

Collapse
 
moopet profile image
Ben Sinclair

I've been using git for what seems like a hundred years, and I still do that. Not only does it mean you're absolutely sure what you're doing, but if you scroll back up or look in your history to see what you did yesterday, it's explicit.

Collapse
 
stefannibrasil profile image
Stefanni Brasil

LOL, this is more common than we imagine, I've heard some people saying that too and they're not junior's anymore, so I think we are fine :D

but this also teaches a lot about git, right? I learned how to organize my commits and used

git reset

this month, it was exciting :D

Collapse
 
damcosset profile image
Damien Cosset

Wow, those first weeks statements are so on point :D

Collapse
 
stefannibrasil profile image
Stefanni Brasil

They really are, right?! :P

Collapse
 
vinaypai profile image
Vinay Pai • Edited

Great post Steff, here's some perspective from someone on the other end of the experience spectrum.

  • Dropping the db. It's great that you are cautious around the production DB, but the company should really have better processes in place. A new team member really shouldn't have that kind of access until they are more comfortable. At my last startup, I had a rule that NOBODY was allowed to run any sort of write query against the production database without someone double checking their work. That included me, the CTO. I made sure to call someone over to sanity check my queries before running them.

  • Same thing with accidentally pushing to the wrong branch. It's a structural issue. Production branches should be protected from careless pushes.

  • If you know how to solve a problem, speak up. If your team is good they will listen to you no matter your experience level, and ideas stand on their own merit. If they don't, find a better place to work.

  • "You move other’s cards in Trello by accident." - Again, seems like a UI or setup problem with Trello if it's so easy to do the wrong thing.

  • Don't be afraid to ask for help. Unfortunately, you will undoubtedly encounter prima donnas among senior developers, but the best senior developers (or senior anything, really) do embrace their roles as mentors. The only thing I ask is they you've made an earnest effort to solve the problem yourself first, and don't just go asking for help the instant you get stuck.

  • It's normal to feel like you don't know what you're doing when you're thrown into a new codebase, no matter your experience level. Every codebase that has been worked on for a while has its quirks and nuances that you only really learn over time. Good programmers understand and respect this and start by being very cautious with their changes. Bad ones think "I have 10 years of experience, I can start mucking around right away", and probably break things because of all the things they didn't know.

  • "How can she/he find the problem just by looking at it for like 3 seconds??" It's true that more experience will help you spot things quicker. Sometimes a problem that other people are stumped on will trigger something at the back of my head that I've seen a long time ago that leads to the solution. On the other hand, sometimes all it takes is a fresh pair of eyes. I was once stuck on something that seemed silly and called over the developer who sat next to me to take a look (she'd was about 2 months out of a bootcamp), and she immediately spotted something that I had become blind to from starting at it too long.

  • “I hope I can be a great professional like this person one day!” You seem to be smart and have a great attitude, I think you're well on your way!

Collapse
 
stefannibrasil profile image
Stefanni Brasil

"Unfortunately, you will undoubtedly encounter prima donnas among senior developers, but the best senior developers (or senior anything, really) do embrace their roles as mentors." THIS, this is exactly what I think! I wish there were more people who think like that, but that's not only software related, right?

Thank you so much, these are awesome tips that you are sharing. Thank you so much for this final comment, sending you the best :3

Collapse
 
jfrankcarr profile image
Frank Carr

but the best senior developers (or senior anything, really) do embrace their roles as mentors." THIS, this is exactly what I think!

Based on my recent interviews at several different companies, they seem to prefer to hire prima donna (aka know-it-alls) senior developers instead of people who would embrace a role as a mentor and guide.

Collapse
 
bgadrian profile image
Adrian B.G.

I would change a few things

  • Learn 1h per day not week
  • If you are stuck 30min max get help, usually I say 15 but for juniors is ok more, not days
  • Print cheatsheets and glue them to your desk until u know them
  • Write what you should do, steps and advices in a real notepad, and read it at the end of the week

GG, perseverance will win.

Collapse
 
stefannibrasil profile image
Stefanni Brasil

Hi, Adrian, thanks for sharing here your great advices!

Collapse
 
uegnet profile image
uegnet

What if after 8 months you still feel much of this? And it’s more like “It’s been so hard, and I’m not really enjoying it"? After 6 months you had a panic attack so bad you where almost committed to an emergency room at a mental hospital, and the depression and anxiety still lingers after 2 months .. is this field of work not for you?

Collapse
 
stefannibrasil profile image
Stefanni Brasil

Hi!
So sorry to hear about this. I think that when that happens, it's better to talk with other people who can really help you. I have anxiety and I know how that feels, but I am getting better since I started therapy last year. Please, take care. Let me know if I can help with anything else. Trust me, I know that feeling but you don't have to go through that all by yourself.

Collapse
 
uegnet profile image
uegnet

Thanks, yeah .. starting therapy soon, and I'm lucky that everybody at work have been great about the whole thing.

Just so scared that I won't be up for it. Especially since it has taken me almost 10 years to get back up from some other bad stuff, quitting my first passion education because of chronic tinnitus, aborting the first CS degree attempt because of cancer etc... you know, just to crash again.

But yeah, let's hope the therapy helps, good to hear it has helped you :)

Thread Thread
 
stefannibrasil profile image
Stefanni Brasil

that's great that people at your work are supportive! I am sure you'll figure it out, you've been through a lot, you're strong. If you need to talk more feel free to reach me. I know how talking helps. Take care :)

Collapse
 
jenbutondevto profile image
Jen

Hey! I'm sorry to hear this too. I went through something similar. I was working two dev jobs for a year, about 4 days as a swift paid internship, and 3 days as a web dev. I was employed as the web dev first, and quite frankly, I didn't enjoy it. I was slow at tickets and would give me any excuse to not do them. It actually meant that I had to work late to get the tickets done. The overwork and stress was a trigger to my severe depression, if anything, one of the major factors. I did have to have therapy which is finished now but I am still on medication.

When I was in the office as a swift intern, the work was great, I really enjoyed the language and company culture. The CTO was understanding as were the rest of the team, generally great people. I've moved on from both places and now a jr fullstack dev where I'm still happy.

Please don't doubt your skills as a dev too much, especially if it's making you sick, you were hired for a reason. And don't overwork yourself! Please also reach out if you're having a tough time. Take care! I hope you feel better soon :)

Collapse
 
petivagyok16 profile image
Peter Palocz

I agree. My first weeks/months looked exactly like you described above. :D It was exciting though, because i knew i've achieved something in my life (the first time ever!) on my own. So i knew im going to be okay somehow, i would manage to keep the job or get a new one if necessary, no matter what. CodeAcademy and some great Udemy instructors (Maximilian Schwarzmüller, Mosh Hamedani, Anthony Alicea) helped me the most. They are the best teachers i have ever met.
Keep it goin guys, it's really hard, but you can do it, everybody can do it. I wish you strength and success!

Collapse
 
stefannibrasil profile image
Stefanni Brasil

Yes, Peter!! Awesome advice =))

Collapse
 
eliabe45 profile image
Eliabe França • Edited

In the beginning I felt that my code was just too bad, not otimized enough etc. I started to work as a programmer in a startup, the entire team wasn't too experient. I've been working as a programmer since 1 year, I have improved my skills significantly since then, but there's still a lot to learn.

Legal ver uma pessoa do Brasil aqui! :D

Collapse
 
stefannibrasil profile image
Stefanni Brasil

Olá :)

Collapse
 
sironheart profile image
Steffen

I started working in a company at July the 1st of this year. I started on a Thursday, but the worst experience for me was my 2nd day. I was literally the only person who wasn't doing HomeOffice and I literally understood nothing of the code I was expected to write. I believe I didn't even made a single commit that day.

Now, a few months later I got to get a few more responsibillities. I am one of the 2 'administrator' for the development server, while also doing fullstack programming and doing fine.

My advices for a junior developer: Learn git (or at least know what the other developers are talking about), ask questions (if needed 2 times) and don't be ashamed of doing so and last but not least: know how to use a CLI like bash or zsh... if you're not a .NET Developer it will always be helpful to know the commandline and at least knowing the basics won't hurt you!

Collapse
 
stefannibrasil profile image
Stefanni Brasil

Hi, Steffen, great story! Thanks for sharing!