Skip to main content

Escaping Tutorial Purgatory

It's an easy trap to fall in to...

What do I mean by "Tutorial Purgatory"?

This is when you end up watching video course, tutorial or reading up on a subject and putting off the "doing" part of it because you don't feel you know enough. It's very easy to get stuck telling yourself "I'll start after I finish this course - I'm still learning"

I've been there and it's a hard situation to escape but it is possible and here are a couple of pointers to help you escape it.

Udemy is a great perpetuator of tutorial purgatory with many courses being 10+ hours long, you end up feeling compelled to watch it before starting the project you want to work on.

I've seen many Udemy courses hitting the 30+ hour mark. Can you imagine watching and working your way through 30+ hours of course content in your spare time after work? How long that would take you? And this is before you even begin working on the project or product you want to create!

My advice is to find the shortest (time-wise) course. That way you learn your material quickly and can jump into your project. 

We often use the term "MVP" or "Minimum Viable Product", we should treat learning the same way with "MVN" or "Minimum Viable Knowledge" to start doing. 

A real world example was when I needed to learn React Native. On Udemy there were courses ranging from 8 to 46+ hours! Then I found a few tutorials on YouTube and Udemy under an hour and picked one and went with it. After an hour I knew enough and was ready to go and starting developing a React Native application and learnt the rest along the way.

If you have a goal in mind, this can be a a project, product or a certification to work on. Find the minimum you need to know to get started and producing. 

The best way to learn is to actually do it. As someone once put it: "would you rather have a heart surgeon who has read books for 10 years or a surgeon who's done the operation for the last 5 years?". We learn more through out mistakes and issues we run in to. Going back to my React Native situation, I could have still been watching the 46 hour course before writing a single line of code, instead I had written and published my app. 

Another thing I had found myself doing in the past stuck in tutorial purgatory is watching courses and ONLY doing that. In the end, I wouldn't remember much and would feel good about all the "learning" I had done. 

My advise: follow along the course with the instructor. If they type, so do you. If you're watching a course on building a website then you should be building the same one as the instructor.

By watching shorter courses and following them along, you can swap your mentality from a "thinker" to a "do-er". Gary Vaynerchuk made a point that stuck with me by calling people "Students". They were learning, watching and consuming content but not actually producing or doing anything. 

Don't let your ideas stays as ideas, learn what you need and get stuck right in!



Comments

Popular posts from this blog

Adding a space to your iOS App Name

How to add a space to your display name There is a cap of sorts for iOS applications where once your display name exceeds 12 characters, it will strip any spaces in it. There are a lot of posts on StackOverflow about this, however the missed one small detail on how to edit the value. What we need to do is edit info.plist. You can try this in Xcode but it doesn't work, you need to use another text editor - in my case I used Visual Studio Code. Your directory structure may vary, here I am working on a React Native project. Instead of iOS, your root folder may be your project name.  Go to: build > * Your application name * > edit info.plist The value we want to update is " CFBundleDisplayName ".  Where the space(s) are, we need to replace the space here with:      Your CFBundleDisplayName should then look like this: That is all there is to it! Hope this helps you out.

How to enable the lock screen for your Android Emulator

Here's how: When I was testing and app with media controls, I would press the lock button, once to lock the screen and a second to unlock it which would instantly unlock it and take you to the app.  By setting the option for ‘swipe’ when unlocking the screen (pressing the power button the second time) you are now presented with the lock screen and can swipe/drag the screen upwards to go the application Go to Settings --> Security --> Screen Lock Choose 'Swipe' That's all there is to it!

Xcode - ld: library not found for -lDoubleConversion

Here's how you fix this issue Ran into this with the iOS version of my React Native application, the fix is very quick and easy: We need to disable dead code stripping for our release, this is how to do it: Open XCode and press: Cmd + 1 Click on your project in the left panel Click on "Build Settings" In the "Linking" section, under the "Dead Code Stripping" section, change the setting for "Release" from "Yes" to "No"