Do the DS&A stuff. Learn the common data structures and their big-O. Do some Leetcode questions. You quickly discover that there were things you could have done better, and you realize pretty fast that a huge swath of problems are actually solvable with a small number of solutions. Other one is systems. Maybe less relevant for some people, but it's worth having a deeper model for how the OS works. How does virtual me…
Ask HN: As a self-taught developer, what are your self-directed learning tips?
11–20 of 72 posts
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#12Every five years or so, my wife asks me, "What do you need to learn now for the next 10 years of your career?" If you're self taught, you can teach yourself the next thing. You don't have a solid CS background? You can teach yourself that. Go look at, say, the list of MIT courses for a CS degree. You don't have to take the MIT classes. But which of the things do you know, at least to some degree? The ones you don't k…
How do you learn if you don't take exams? I mean how do you know if you understand a concept if you don't have someone assessing your knowledge
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#13Every five years or so, my wife asks me, "What do you need to learn now for the next 10 years of your career?" If you're self taught, you can teach yourself the next thing. You don't have a solid CS background? You can teach yourself that. Go look at, say, the list of MIT courses for a CS degree. You don't have to take the MIT classes. But which of the things do you know, at least to some degree? The ones you don't k…
How do you learn if you don't take exams? I mean how do you know if you understand a concept if you don't have someone assessing your knowledge
The next step is to google "demo projects for test automation", pick one, and apply that knowledge. If you still need more, pick another.
This will be your proof of basic knowledge.
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#14Every five years or so, my wife asks me, "What do you need to learn now for the next 10 years of your career?" If you're self taught, you can teach yourself the next thing. You don't have a solid CS background? You can teach yourself that. Go look at, say, the list of MIT courses for a CS degree. You don't have to take the MIT classes. But which of the things do you know, at least to some degree? The ones you don't k…
How do you learn if you don't take exams? I mean how do you know if you understand a concept if you don't have someone assessing your knowledge
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#15This could be in the form of a tech blog or giving a presentation to your team. There are also meetup groups, social media, and other outlets. Mentoring junior developers is another great way to stay current.
If you've been focused on front end for a while then try giving a talk at your company about something orm, db, or api related. In doing research you will learn, and you'll find yourself digging for more information to answer potential questions.
In short: help others learn. You'll learn a lot yourself along the way.
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#16If you're at a large company, look around for open positions that look interesting on other teams and talk to those team leads about what skills they would want. Maybe they'd even be willing to have you on board as a "trainee." If you're genuinely good at self-teaching, you will be an asset even without the skills built in.
If there aren't positions available at your current employer, you'll have to try to decide what skills are in demand and pick one, and you'll have to spend your personal time on it. My approach has always been to build something with the tech I want to learn. Usually just toys (a music player to learn GTK; many garbage video games and websites to learn various languages & toolkits) but sometimes useful stuff, too (a blog post demonstrating reverse-engineering a video game; many little unixy tools to make my dayjob easier; porting a Linux video game controller driver to macOS). In my opinion, just doing exercises isn't a good way to learn or demonstrate your abilities to an employer. Projects you own & and can talk about are way more interesting.
Also, consider that you might just be burning out on tech. I know I'm getting there. Ten-plus years in an industry is a long time, not everyone's built to do the same kind of work for their whole life. I'm keeping my eyes open for something in another field that grabs me.
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#17Every five years or so, my wife asks me, "What do you need to learn now for the next 10 years of your career?" If you're self taught, you can teach yourself the next thing. You don't have a solid CS background? You can teach yourself that. Go look at, say, the list of MIT courses for a CS degree. You don't have to take the MIT classes. But which of the things do you know, at least to some degree? The ones you don't k…
How do you learn if you don't take exams? I mean how do you know if you understand a concept if you don't have someone assessing your knowledge
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#18As a result of being curious and working on things that interest me, there’s practically no area of software development that I haven’t touched. I’ve written Windows device drivers, firmware for an IoT product, hacked on the LLVM source, wrote a (really basic) hypervisor, and made countless web apps. All with no CS degree.
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#19Try out a new IDE, or workflow.
Read some code in an open source project that you use a lot in your current work.
The purpose of all these is to gain a greater understanding of what is possible! This is something as a self-taught programmer I do often.
Re: Ask HN: As a self-taught developer, what are your self-directed learning tips?
#20Every five years or so, my wife asks me, "What do you need to learn now for the next 10 years of your career?" If you're self taught, you can teach yourself the next thing. You don't have a solid CS background? You can teach yourself that. Go look at, say, the list of MIT courses for a CS degree. You don't have to take the MIT classes. But which of the things do you know, at least to some degree? The ones you don't k…
How do you learn if you don't take exams? I mean how do you know if you understand a concept if you don't have someone assessing your knowledge
Exams are a hacky stand-in for actually using a concept to solve real world problems.