vote up 2 vote down star
1

I need as much knowledge as a college graduate! What books should I read? If you had to study PHP, Java, Ruby or Python, I'm even more interested in your answer.

flag

1  
Be sure to spend 15 credit-hours in the lab every semester too. – Crashworks Aug 25 at 2:18
8  
As much knowledge as a college graduate? You need either 25 kilos of marijuana or a frontal lobotomy. Boom boom, thanks for listening, I'm here all week. – paxdiablo Aug 25 at 2:23
@[Pax]: you forgot the beer. Lots and lots of beer. – Steven A. Lowe Aug 25 at 2:31
1  
Wait... Do they teach PHP now? I think I need a drink... – TokenMacGuy Aug 25 at 6:05

17 Answers

vote up 4 vote down check

in my idea of a good computer science curriculum, the focus is not on specific languages but on concepts. you should try to expose yourself to topics like data structures, algorithms and language theory. A language is something you pick up while practicing and exploring all those concepts.

link|flag
vote up 8 vote down

For what it's worth, MIT's Open Courseware program makes many of their courses available online for free- Here are their comp sci and EE courses.

link|flag
+1-That is superb answer! – Pradyumna Aug 25 at 6:19
vote up 5 vote down

Big Java by Cay Horstmann

PHP and MySQL Web Development (4th Edition) by Luke Welling and Laura Thomson

Joel Spolsky's Reading list is also good, but it is a bit dated.

And if you want to know as much as a college grad you will also want to take a look at C. The only book you will ever need for C is The C Programming Language (2nd Edition) by Brian Kernighan and Dennis Ritchie.

I also have to take a course with Assembly Language, so you may want to look at that a bit too.

link|flag
1  
+1 for K&R – las3rjock Aug 25 at 3:45
vote up 4 vote down

Thinking in Java

link|flag
3  
Or you can use the book for free here: mindview.net/Books/TIJ – chollida Aug 25 at 3:02
vote up 3 vote down

Joel Spolsky's "Reading List" is well regarded: http://www.joelonsoftware.com/items/2005/11/22.html

link|flag
Beware that the link itself says that it's a bit dated, and that most of the books are management-oriented. Many of the books are fairly timeless (Getting to Yes is an older but great read) but some (Testing Computer Software, Subversion stand out) might not be the best reads on their subjects just by virtue of being several years old. – Eric J. Aug 25 at 2:34
"is well regarded" - by Joel Spolsky! Seriously, there's two problems with this answer. #1 - only 2 of the books listed have anything to do with programming, and #2 - indirect link. The direct link is joelonsoftware.com/articles/… – Steven A. Lowe Aug 25 at 2:34
vote up 3 vote down

The only books from my computer science education that were worth the paper they were printed on were SICP, CLR, the Dragon Book. If you make it through all three, you'll be ahead of 99% of computer science graduates.

(Alternatively, just read Knuth. If you live to tell about it, you'll be ahead of 99.99% of computer science graduates. You may have trouble convincing anybody you actually understood half of it, though.)

Be sure to do all the exercises. Most of the knowledge gained in college is not from the reading, but from the doing. If you haven't written a compiler, you haven't really read the Dragon Book.

Don't bother with any books on PHP, Java, Ruby or Python:

  1. Most good colleges don't really teach languages. You're expected to pick them up on your own, when doing the coursework, and you don't need a book for that.
  2. Whatever language specifics you learn today will be obsolete in a year or two. A couple of the worst courses I had to take in college used Java 1.0; guess how much Java 1.0 I'm writing today.
  3. When you're learning computer science you want a language that gets out of the way and lets you see those concepts, not one with a couple decades of cruft. You'll have plenty of time to agonize over backwards compatibility once you get out in the real world.

There's a reason most of the Amazon reviews of SICP are 5 stars, even though most people don't use Scheme at work.

Finally, ignore all this advice and get "Dreamweaver for Dummies", because it'll pay for itself much sooner than Knuth, and there are certainly some people who managed, somehow, to graduate college not knowing anything else.

link|flag
vote up 1 vote down

If you're looking for textbook type books, you could see which books they use at MIT: http://mitcoopbooks.bncollege.com

link|flag
vote up 1 vote down

Learning Python

link|flag
vote up 1 vote down

Don't forget there's also good stuff on iTunesU - Stanford offers a lot of courses:

http://deimos3.apple.com/WebObjects/Core.woa/Browse/itunes.stanford.edu.1287736948

You may want to start with the "Programming Abstractions" series (I've not tried it yet but I plan to listen through).

People coming out of college have actually not done that much "real" programming, generally... you may be better off starting by looking through open source projects, thinking about something you want to try adding on, and learning enough to make that happen. Lots of other learning will take place as you go, and solving problems with real code as a starting point is the kind of thing that makes you hirable - as well as gives you the self understanding as to this being the right path for you.

Reading/Listening to the theory stuff too though (like the Abstractions series I mentioned) is also healthy, even if you don't understand all of it now. You just want to seep in whatever you can and slowly it will absorb...

link|flag
vote up 1 vote down

Our curriculum in college didn't focus on learning more and more languages. We basically only used Pascal (to teach the basics), C & C++ (to implement different algorithms), Java (OOP), and PHP (web).

We spent more time on data structures and algorithm analysis and how software engineering should be done properly. It helped me develop my analytical and logical skills. Those are the kinds of knowledge you can use in case you needed switch from one language or another.

The following books helped me acquire those knowledge:

link|flag
Why are you splitting things? – Delirium tremens Aug 25 at 2:23
1  
I'm guessing that you might want to know which ones should be on top of everybody else's list. Including them in one post will be biased based on my own preference. – Randell Aug 25 at 2:25
Or could it be that you want more upvotes (not saying that I wouldn't do the same thing)? – Lucas McCoy Aug 25 at 2:30
Subjective poll-type questions like this are usually community wiki and usually ask for one entry per answer, so I can understand why Randell initially split things up. – las3rjock Aug 25 at 3:39
vote up 1 vote down

When I was in school, many colleges followed MIT's curriculum. I'd recommend following those and the Stanford links. It's amazing they put these online. Don't shy away from the non-language specific courses. It may not seem directly practical right now, but it is certainly valuable.

A college Bachelor's degree generally includes at least a dozen different courses. There are basic programming courses-- I learned Pascal, and after that LISP, but now I hear Java is popular. We had an overview of different types of programming languages, and even though Ruby or Python or PHP didn't exist when I was in school, we covered the core concepts behind them.

As others have mentioned, studying a language is only the tip of the iceberg. There are algorithm courses, compilers, databases, data structures. We had a very challenging and mathematical course on the "theory" of software (proving programs correct, Big O notation). There were a set of required mathematics courses, as well as all the out non-CS stuff. And most programs include some sort of 'real world project' as well. As you may suspect, most of this material isn't directly relevant to the day-to-day work of a programmer. But they do come into play periodically and really help out.

link|flag
vote up 1 vote down

Python for Software Design: How to Think Like a Computer Scientist

Cover of "Python for Software Design"

This most recent version of the electronic book, How to Think Like a Computer Scientist: Learning with Python, is now the textbook for the "Introduction to Computer Science and Programming" course at MIT. It replaced the legendary "wizard book", The Structure and Interpretation of Computer Programs, which introduced programming using the Scheme programming language (a dialect of Lisp).

link|flag
vote up 1 vote down

Why not just scrape the syllabi from a collection of college courses? There's always google; just search for programming site:edu intitle:"java" or "ruby" or "python" or the url to this query. Interesting results.

link|flag
+1 for the beautiful Greek delta for your avitar. – duffymo Aug 25 at 9:50
Thanks @duffymo, but to be Geek about the Greek, its technically a nabla. Or in my line of work, del. – vgm64 Aug 25 at 17:56
vote up 0 vote down

You could search for a career program and then look for bibliography for each class.

link|flag
vote up 0 vote down

After getting a good understanding of your target language, download open source projects. Read and run the code. Someone's code is way better material than books. It will often lead you to ask WTF and open the door to better understanding and improved usage.

I read Whys Poignant Guide to Ruby. Despite all the extra storyline stuff, I found it entertaining and a good intro to Ruby. It's an improved "For Dummies" theme.

link|flag
vote up 0 vote down

Introduction to Programming in Java by Robert Sedgewick and Kevin Wayne.

Cover of Introduction to Programming in Java

The textbook for the introduction to computer science course at Princeton. I discovered this book even before it was published because of the case study on the small-world phenomenon, which includes sample code that implements the Kevin Bacon game.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.