DEV Community

Cover image for 9 Step Solution to Escape Tutorial Hell Permanently
Ashutosh Mishra
Ashutosh Mishra

Posted on • Originally published at hackernoon.com

9 Step Solution to Escape Tutorial Hell Permanently

Tutorial Hell is real and it's one of humanity’s worst known sufferings. You can easily find lots of beginner developers burning, out there, in the fire of tutorials.

Tutorial Hell

Fortunately, there's a way out. You can work your way up on the ladder of self learning and project building and this will help you escape tutorial hell. Let me explain how can we do so.

How to really escape Tutorial Hell?

1. Build atomic projects

Great projects are not finished in a day, they are built day by day in small proportions. And you have to do the same if you want to become a great programmer - DON'T BUILD A BIG PROJECT ALL AT ONCE

Initially, what you want is to build a super small project or a bunch of super small projects. These are what I call Atomic Projects.

Try to think of a big website, let's say YouTube.

A sample YouTube screenshot

If we try to break the above image into various small projects, we will see that it has:

  • A top navbar with logo, search button, notification icon, etc.
  • A left navbar with YouTube premium, Films, Gaming links, etc.
  • A topic bar with All, Mixes, Music, JavaScript, etc as topics.
  • A big section with links to a total of 8 videos.

Each video has its own card like section which includes thumbnail, title, video length, channel name, channel logo, views, and date published.

In the above list, I gave you ideas for 5 different atomic projects instead of one large project. You can build all of them separately and join them together once finished.

Also, use the same mental model to break other big projects that you want to build into smaller chunks.

2. Teach yourself and others

Self-teaching is important. No one else will teach you everything you require. Sometimes teaching yourself also includes teaching others. When you teach something to others, you repeat that concept in your mind which results in a better understanding of it.

If you're thinking that you are not ready to teach others, you might be wrong. If you are even one step ahead of someone else, you are completely ready to teach them about that extra step.

Man saying let me hit you with some knowledge

To teach is to learn twice, if you are teaching someone, you'll have to revisit the concepts and communicate in an easy way, which will also give structure to your understanding of that particular concept.

3. Give yourself time

Don't try to cover 100 miles in one step. Sometimes things just take time, especially when you are new to programming. You have to give your brain some time to digest concepts.

If you are trying too hard, you are simply stopping yourself to learn. Take some time and explore other points which I have mentioned in this article. You will find that most of the time those concepts will start to click after that.

4. Learn to solve bugs

Debugging is a lifesaver. If you take some time to learn about debugging and how to solve errors quickly, how to work with browser dev tools, and use console.log() often, your suffering will be somewhat reduced.

No matter how great a developer you become, you will still have bugs. Instead of brooding over writing bug-free code, learn how to solve them quickly.

5. Stare at your code

Man staring

I know this is what you usually do when you are stuck in tutorial hell but I am not talking about mindlessly looking at your screen. I am talking about thoughtfully staring at your code and thinking

  • How does your code work?
  • Can you do something better?
  • If you are given the chance to write it again, what will you do? etc.

When you think actively on these questions, your brain forms certain connections and neurons which will help you grasp those concepts and make you a rockstar developer.

6. Read the documentation

Give reading documentation a try. You might be too attached to watching videos or text tutorials that you can't do anything without them.

Cat reading "The Art of Military Strategy"

A baby has to eventually learn to walk on their own, and so do you as a developer. Learn to solve your own problems, learn to build your own projects. Documentation will be your best friend on this journey.

You can also go back to the videos or blogs to understand certain concepts if docs don't click with you yet. But try to make your learning smoother without getting into tutorial hell.

7. Ask for help

Asking for help isn't shameful. We all need it at some point in time. If you are really struggling and nothing else is working, try talking to other developers, especially the ones who are senior to you in terms of knowledge and understanding of the concepts. Professional experience is not necessarily required.

Create a Twitter, Showwcase, Slack, and Discord account. Join technical communities there and try to connect with developers who can help you solve your problem. Build a genuine connection with them, and ask your questions if they are ready to help you.

8. Write Technical Blogs

Coding is important, but can you write a technical article explaining those concepts to others? Writing blogs has innumerable benefits. It helps you better understand the topics you are writing about, build your personal brand, differentiate you from other non-blogging developers, and open the door to various professional opportunities.

Girl typing something on the computer

If you know even a single thing in programming, web development, etc. you are perfectly ready to start your own blog. There are various great platforms that will help you get started:

  • Hackernoon
  • Hashnode
  • Dev.to
  • Showwcase etc

Don't think much about perfection initially, just post your first blog. You'll learn everything eventually as you write more.

9. Make learning a habit

A career in tech = lifelong learning. You cannot survive long enough if you don't like learning. Sooner or later, you have to fall in love with learning to make your journey smoother.

It may be possible that you are not feeling confident to work on your own projects because you have not understood certain concepts. In that case, go back to the basics and learn those programming concepts again. Once you’re confident, come back to hack your project.

May you escape your tutorial hell successfully

I am rooting for you

You may find this hard initially but as you practice and work more, you will learn how things work and definitely become a great developer.

I wish you very good luck in your journey of escaping tutorial hell. If you follow the above points seriously, you will most likely get rid of tutorial hell.

Happy Coding!

Top comments (2)

Collapse
 
rcooper47 profile image
ryan cooper

Step 2 has helped me a lot. Building a thing and coming back to improve it after a few weeks of learning >>>

Collapse
 
ashutoshmishra profile image
Ashutosh Mishra

That's the way!