Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 12, 2022 12:13 pm GMT

Experienced Programmers Struggle As Well: Ease Your Imposter Syndrome As A Junior Developer

At the beginning of their career, most developers feel inadequate. They dont have anyone to compare themselves to. They dont know whats expected of them on the job. And many tutorials or screencasts seem to be created by geniuses.

All this leads to the all-to-common imposter syndrome among programmers.

Unfortunately, theres no easy way around this. Even experienced developers know this feeling of inadequacy. But one of my former team leads suggested how Senior developers can help Junior devs to ease the pain:

Quote Jonathan Stoye

Part of overcoming imposter syndrome is the understanding that everyone puts on their pants one leg at a time. Watching experienced developers making mistakes, running in the wrong direction, or searching on Google can be very helpful for a Junior developer. There's no magic. Most developers aren't geniuses. And over time, you can get to their level too.

Obviously, its hard to get this pair-programming experience before you find a job with a good and caring team. So I thought I could expose myself a bit here.

I recorded more than 20 hours of screencasts of me building a React application as a preparation for my upcoming React Job Simulator. You can see what kind of tools I use including Next.js, TypeScript, Storybook, and GitHub Actions. But more importantly, you can see that I make mistakes and run into problems all the time (despite a decade of professional experience as a developer).

So let me expose myself. Here are a few takeaways that might ease your imposter syndrome.

Table Of Contents

  1. Things take way longer in reality than in scripted videos
  2. Experienced developers search on Google all the time
  3. We all struggle with simple problems at times
  4. Takeaways

React Job Simulator

Things take way longer in reality than in scripted videos

When you watch React videos you might have the impression that developers work super fast. But more often than not these developers have built the application already before. They have run into most issues before and know how to overcome them.

This makes the videos easy to watch but might skew expectations towards yourself. But let me tell you that reality is often very different.

CleanShot 2022-08-09 at 13.35.34 2.png

Another example: it takes me 10 hours (starting with this video) to build a simple collapsible sidebar navigation. I would have estimated it at 2 hours tops. But again and again, I'm thrown off track because I run into issues with the application and testing setup (e.g. TypeScript, Storybook, Cypress & Jest).

From my experience, progressing this slowly is common especially when you create a new project or start working on an existing codebase. At some point when you know how things are done and where they belong your writing code starts to flow more and more. Until you hit the next brick wall of course.

Experienced developers search on Google all the time

You might think that Senior developers know it all by heart. They can create a component/context/portal/reducer with one brush and along the way add typings and tests without a second thought.

But no, even experienced devs cant remember loads of stuff. You dont use everything on a daily basis. So you forget things. And sometimes it just doesnt stick even if you Google it over and over again.

CleanShot 2022-08-09 at 13.13.06.png

Here are a few examples from my screencasts:

  • Here I need to look up how React context works. I dont use it that often so I just forget. Instead of Googling I also like to simply copy & paste from another file in the project.
  • Here Im stuck on a simple TypeScript configuration problem. The solution was actually simple (just disable the isolatedModules flag in the tsconfig file). But I couldnt see the forest for the trees. Instead of simply looking at the docs (one of the top results on Google) I randomly open tutorials and StackOverflow questions only to settle on a hacky workaround.

We all struggle with simple problems at times

You might think: Sure also experienced developers struggle. But the problems they struggle with are much tougher!

And yeah, thats true. But even with years of experience, youll have a sufficient number of face-palm moments. You might work on something for days only to find out that you built an inferior version of an existing npm package. You might Google for hours for a solution to your broken CSS only to find out you forgot to import the stylesheet.

CleanShot 2022-08-09 at 13.27.12.png

Here are a few examples of my screencasts:

Why not use box-sizing?

Takeaways

Hopefully, these examples were enough to convince you that (most) developers are only humans. But obviously, there are also lots of things that you learn over time. Here is a short list of some of the most important things I do differently now compared to myself early in my career:

  • Read error messages carefully. Often the solution to your problem lies within.
  • Google is your friend but use the docs as a starting point instead of searching for tutorials right away.
  • If you get stuck take a step away, go for a walk, take a nap, or do whatever you like. The solution to your problem often comes while your brain rests.
  • Review your own code after taking some time off. You gain a new perspective on your code and can detect problems easier.
  • Debug problems systematically and not by changing random code all over the place.

React Job Simulator


Original Link: https://dev.to/profydev/experienced-programmers-struggle-as-well-ease-your-imposter-syndrome-as-a-junior-developer-36ad

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To