|
|
|
(Almost) Zero to 'Rockstar' in 6 months: The Challenge
|
|
4 points
by alizaki
5539 days ago
|
|
So here's something I've been thinking about for a while now. I've always wanted to learn to program and not be reliant on others to help build things I've thought up. It's really very frustrating being the "business" guy in projects, even though I'm lucky enough to never have a shortfall of great developers to work with. I've been fooling with python, but I just don't seem to get anywhere fast grappling with it after work or on weekends, although I haven't been as focused as I could be admittedly. My Question: hypothetically, if one could take 6 months out off work/life and just devote them to learning the skills I want, what would a good suggested path be? Assume that I am practicing, reading, watching whatever you suggest 10 hours a day, 6 days a week along with any overtime you think would be needed. I know there are a couple of books everyone recommends to start with, but what I'm really looking for is as close to a lesson plan I can get! Also, I have a bit of experience writing C for an base level course in college, used to be able to write HTML way back in the day and have been around technology my whole life, so it's not like I'm coming at this standing still. Suggestions, possible plans, words of advise are all welcome, of course. |
|
I think its doable. Because of the accelerated rate, you'll obviously miss some crucial pieces but those will fall into place if you, as you should, keep at least one personal project going at any given time.
Before you read all this, head over to MIT OCW and look up an intro to programming course. They sometimes have videos (thru itunes)
Step 1 is to get someone to explain to you what exactly is the computer doing when you write println'hello world'. This is so you get the big picture. Next step is to compile a hello world program. Then a lesson on strings and then on arrays. This should introduce you to them while providing a lesson in APIs - one of the more important things. This API lesson should have you look up documentation so you know how to read docs. This will take you 2 days...give it 5 - do lots of examples.
You can probably skip this but i'd recommend it - polymorphism, typing, properties...object oriented programming. This will probably blow your mind - not in an overwhelming kind of way but in a WOW, where was this till now kind of a way.
That is the essence of coding. You can now code and follow most examples on the net.
Next you need to become a software developer. For this, you'll take time as this is a blend of skill, knowledge, and experience. You will need to learn about things like data structures and recursion, trees and big o notations, algorithms and...stuff. EVERY programmer has to take a course called Algorithms and Data Structures. I'm sure you can find it on MIT OCW. If not, google 'ece250 uwaterloo' - they assume you don't know anything and start C++ from scratch.
And thats that.