DEV Community

Cover image for Do Something Wrong
Avery Swafford
Avery Swafford

Posted on

Do Something Wrong

When I was a child, I would help my dad with everything, working on the cars, working in the yard, etc. I remember on a particular day, trying to help organize tools with him, and being inexperienced in the matter, I kept placing tools in the wrong place. In a frustrated tone, I said “I can’t do anything right” to which my dad replied “You have to be doing something, in order to do something wrong”.

Tutorials are necessary

Tutorials are great, coding bootcamps are great and code along videos are great. You must have at least a decent understanding of at least the fundamentals of programming and basic syntax to get started. In taking an online course I learned so much about HTML, CSS, JavaScript, and React. When I started in 2018, an online course/academy was a great way to get me introduced to web development, I needed something to kickstart my journey. I wouldn’t be where I am today if it wasn’t for the bootcamp.

But in my journey as a self taught developer, I’ve come to realize that tutorials will not make you a good developer on their own. It can also be hard to get out of just following along.

Tutorials should be laying the foundation and set you in the right direction for when you are developing on your own.

When I made my first React app

App Screenshot

After hours and hours of courses, I finally decided to create an app. This app wasn’t a code along, I had found an API that would take a URL you gave it, and respond back with a shortened URL.

So I started with npx create-react-app, and began to work on my own. I implemented state, worked with the shrtco.de API to send and retrieve data, and utilized the “react-promise-tracker” and “react-spinners” libraries to add a nice little spin animation while waiting for the promise of the shortened link to return to the user.

Did I run into problems? Oh yes. I remember struggling nearly every step of the way. But I realized something, I was starting to actually understand the code behind my app. When I ran into trouble, I had to read the docs, Google around, and troubleshoot on my own. I felt like I learned more running into issues building the app, than I did when I was taking web courses.

You can see my app here: Live | Source.

Don’t judge, this was my early stages of web dev, I didn’t care how it looked, I just wanted it to work 😬.

Build something

"You have to be doing something, in order to do something wrong."

Part of what took me so long to build something on my own was what I believe, the fear to fail. Starting something, and not being able to complete it, or figure it out. But when I set out to build a very simple app setting a realistic goal, it boosted my confidence along with learning a lot along the way.

So if you are tired of taking courses, tutorials, bootcamps, and want to take your learning to the next level. I suggest building something. Set a realistic goal (don't rebuild Twitter at first), a goal that will push you while also aligning with your current skill set. When you "do something wrong", just remember this is the developer life, we run into issues, and we solve them.

Top comments (6)

Collapse
 
giovanniincammicia profile image
Giovanni Incammicia

Great tip, I totally agree with you. In fact, the problem is that tutorials always work. They are meant to work out of the box. This means that by following them, you only experience the good stuff of a technology.

Real life is different though. To become really good at something (whatever that is), you have to build something. This is the only way to get errors, problems and bugs that, when solved, really teach you something.

I mean, everyone is good at following tutorials that work. The game-changer is always to learn how to solve stuff that doesn't work.

Collapse
 
aswaff profile image
Avery Swafford

That's a great way to word it, tutorials always work!

Building things, has made a huge difference in how I write and understand code.

Solving stuff that doesn't work, I think that might be a good definition of what exactly a developer does!

Collapse
 
swzy profile image
Samuel Yi

Simple advice but I like the way you framed the “tutorial hell” problem as more of an emotional/confidence issue. I agree that the best “North Star” for learning is often to just start, if only to set the context for what you are learning properly.

Collapse
 
aswaff profile image
Avery Swafford

Absolutely, its great to learn from the tutorials and courses, but you have to apply what you learn. Like what you said, it helps to see the context of a complicated concept.

Like with my app above, even as basic as it is, I got to implement and see the usefulness, and basic idea of State, a concept that I had learned in a course.

Collapse
 
cwraytech profile image
Christopher Wray

Totally agree! Thanks for the post and sharing your experiences.

Collapse
 
aswaff profile image
Avery Swafford

Thanks!