DEV Community

Cover image for Getting out of tutorial hell
anes
anes

Posted on

Getting out of tutorial hell

Introduction

We have all been there; You are watching the next hours long tutorial on language X or on framework Y, but for some odd reason you feel like you don't know anything in the end.
That's what I call "tutorial hell" and with this article I hope I can teach you how I was able to leave tutorial hell and productively learn new languages.

Why don't tutorials work?

The reasons can be vastly different from person to person, as everyone has their own style/pace of learning. Nonetheless here are some reasons I found that cause tutorials to be ineffective:

Pace

Due to the tutorials needing to be made for a broad audience the pace will be off for most people: It either starts at the wrong skill-level or is overall just too fast/slow.
That can be very frustrating, as having to skip around the video all the time costs a lot of time and feels like you did nothing in the end.

Lack of interactivity

The biggest problem for me personally was, how little you have to think on your own when following the videos.
You simply just type whatever the person in the video is typing while their voice attempts to explain what exactly is happening, in vain.
The lack of solving the coding problems yourself causes you to not learn how you would approach a new problem. That in turn renders you unable to make products on your own.

Over-simplification

Something I always tried to fight with my articles like Frameworks hurt junior devs (and why math is important) is the neglect for properly understanding a topic.
Being able to create 100 different Web-Apps in Rails using Devise (the authentication gem) doesn't mean that you actually understand what is happening and what you're doing.
This shallow knowledge might be fine for a while, but it won't be long until you hit a, for you, unfixable problem because you actually have no idea what you are making. You only know how you are making it.

The "Question Framework" as your savior

In a YouTube video about exactly this topic I heard the YouTuber use the name "Question Framework" to something I have been doing for a while now. I liked the name a lot, so I decided to adopt it.

What is the "Question Framework" and how does it work?

The Question Framework attempts to teach you, the user, something in a more interactive way by letting you figure out and solve problems on your own by asking the right questions.
There are a few easy steps which you strictly have to follow:

  1. Set an end goal
  2. Ask yourself "What do I need to do next?"
  3. Google how to do that specific task
  4. Repeat step 2 And it's as easy as that! An example is how I taught myself rust:
  5. Build a command line tool that reminds you about peoples birthdays
  6. I asked myself "How do I create a new rust app?"
  7. I googled it and found out I can simply run the command rust new appname
  8. I asked myself "How do I read a text file and save it to a variable?"
  9. I googled and found out that read_to_string(&dir).expect("Unable to read file"); does the job
  10. Next I asked myself "How do I parse the file to users?"
  11. I googled...

Well, you get the idea. By following this principle you will probably need a lot longer to create your first product, but creating the 2nd one will be much easier, as you already had to face problems and think about solutions on your own.
For anyone interested, the rust project is here

Conclusion

Next time you want to learn a new skill, try to challenge yourself with the Question Framework. This approach to learning new languages enables you to get a much deeper and more useful understanding of concepts and languages.

Top comments (2)

Collapse
 
dariocasciato profile image
DarioCasciato

how little you have to think on your own when following the videos.

This was the problem for me when I was learning to code firmware. You don't really learn anything from these videos, because you don't have to think on your own.
I had my learning breakthrough when I had the idea of a project, and just started to google how to do certain things and then slowly building together the code.

Nice Article!

Collapse
 
aneshodza profile image
anes

Thanks very much for your input! I think "learning by doing" is the right approach for us coders.