Ask HN: Computer science for the self taught programmer
11–20 of 41 posts
Re: Ask HN: Computer science for the self taught programmer
#12I've found The Little Schemer[1] to be very approachable and effective for grokking common CS concepts. [1]: http://www.amazon.com/The-Little-Schemer-4th-Edition/dp/0262...
Also, I want to point out that "essential readings" is not the right attitude. In order to really make progress you're going to need to get your hands dirty and work though some examples. One very good exercise is to write an interpreter for a language you invent.
Re: Ask HN: Computer science for the self taught programmer
#13Computer Science is not just algorithms. Generally speaking, Comp Sci consists of: Algorithms/Data Structures Computational Complexity Discrete Math Programming Languages (both application and the concepts behind them) System Architecture Networks Compilers Operating Systems Databases Parallel Programming Artificial Intelligence Graphics As for what to learn, here is THE BEST link: http://matt.might.net/articles/what…
Re: Ask HN: Computer science for the self taught programmer
#14What is it that you wish to learn? If you're a self-taught programmer who wants to learn (to use an extreme example) bricklaying, then you won't have much use for the standard undergrad CS reading list. Similarly, if you want to be a better programmer, the list will be different to that of the standard undergrad CS reading list. Can you tell us what your goal here is? Do you actually want to do CS, or do you want to…
Re: Ask HN: Computer science for the self taught programmer
#15Re: Ask HN: Computer science for the self taught programmer
#16Computer Science is not just algorithms. Generally speaking, Comp Sci consists of: Algorithms/Data Structures Computational Complexity Discrete Math Programming Languages (both application and the concepts behind them) System Architecture Networks Compilers Operating Systems Databases Parallel Programming Artificial Intelligence Graphics As for what to learn, here is THE BEST link: http://matt.might.net/articles/what…
Last time I checked with a university, they dropped half of the hardcore stuff, and teach more Java/Python. YMMV.
Re: Ask HN: Computer science for the self taught programmer
#17Then I would pick up Randall Hyde's books on "How to Write Great Code" series - he starts out with machine fundamentals (stuff you would typically learn in an Assembly or computer engineering course minus the Assembly).
Then I would learn some type of Assembly (again I recommend Randall Hyde).
Then, IMHO follow @BlackJack's comment of subject matter.
NOTE: I'm a self educated programmer.
Re: Ask HN: Computer science for the self taught programmer
#18Earlier quoted context omitted.
Last time I checked with a university, they dropped half of the hardcore stuff, and teach more Java/Python. YMMV.
A sample size of 1 is not representative. If the university is more interested in teaching "programming," then that's fine, but if you want a solid grasp of computer science , then most of those subjects are still necessary.
It doesn't really matter what universities do or don't teach. If a subject is of interest you should learn it. I thought everything you and the linked article listed made sense.
Re: Ask HN: Computer science for the self taught programmer
#19Re: Ask HN: Computer science for the self taught programmer
#20If you're not intimidated by a little C, I highly recommend "Computer Systems: A Programmer's Perspective"[1] by Bryant and O'Hallaron from Carnegie Mellon. It was personally recommended to me by a PhD student from CM when I inquired about CS resources that would be directly pertinent to programmers, and it completely exceeded my expectations. [1] http://csapp.cs.cmu.edu/