vote up 591 vote down star
877

If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?

I expect this list to be varied and to cover a wide range of things. For me, the book would be Code Complete. After reading that book, I was able to get out of the immediate task mindset and begin to think about the bigger picture, quality and maintainability.

Suggest your programming books

flag
37  
One of the most important question ever asked on stackoverflow :) – Sylvain Jun 9 at 19:30
3  
Browsing this thread make me release how ugly most programming related books are. Very good thread thou! – Carl Bergquist Aug 5 at 12:09
show 3 more comments

284 Answers

prev 1 3 4 5 6 7 10 next
vote up 2 vote down

Ooh, a toss-up between Bentley's "Programming Pearls" and Kernighan and Ritchie's "The C Programming Language".

link|flag
show 2 more comments
vote up 2 vote down

Mr. Bunny's Big Cup O' Java

link|flag
vote up 2 vote down

This isn't a direct answer to the question, because I feel it's already been answered above, however, one of the books that definitely had an impact on how I code is Code Reading, Volume 1: The Open Source Perspective.

alt text

link|flag
vote up 2 vote down

I think I grew up in a different generation than most here....

One of the most influential books I read, was APUE.

Or pretty much anything by W. Richard Stevens.

link|flag
vote up 2 vote down

I'd have to second Refactoring: Improving the Design of Existing Code. It was the single biggest help for me to get unstuck while moving from a procedural mindset to a OOP one. During that time I was to focused on getting the design and model correct from the get go, and wasted a lot of time doing so. After reading through this book a few lights turned on, or at least shined bright enough, for me to realize my follies. Do the best you can now that fits the time, the code will change and many times in ways you couldn't foresee to begin with. The real kicker is that this always happens, no matter what, and to just not worry about it. In short, this book helped ground me and get my head out of the clouds.

alt text

link|flag
vote up 2 vote down
  • -1 For Code Complete
  • +1 For Pragmatic Programmer
  • +1 For SICP

I don't know if it was because I read the Pragmatic Programmer first, but I thought Code Complete was the biggest book I've ever read that didn't really ever say anything. I mean there is a lot of text there, but no substance in my opinion. You get a lot more out of the 300 pages of the Pragmatic Programmer than you will ever get out of the 800 pages of Code Complete.

I also have to second Structure and Interpretation of Computer Programs. It is definitely is the most influential book on programming that I have ever read.

link|flag
vote up 2 vote down

I'd recommend The Dilbert Principle: A Cubicle's-Eye View of Bosses, Meetings, Management Fads & Other Workplace Afflictions for a good cry. Too close to home to be funny though..

link|flag
vote up 2 vote down

Software Tools by by Brian W. Kernighan and P. J. Plauger

It had a profound influence on how I write software.

link|flag
vote up 2 vote down

to get advanced in prolog i like these two books:

The Art of Prolog

The Craft of Prolog

really opens the mind for logic programming and recursion schemes.

link|flag
vote up 2 vote down

Lean Software Development by Mary and Tom Poppendieck is definitely one for every developers bookshelf

link|flag
vote up 2 vote down

If you are doing anything in Unix/Linux/MacOS etc, you must read Advanced Programming in the Unix Environment (also known by the acronym APUE), by the late W Richard Stevens. If you don't know how file descriptors work or what sessions are, or all the things you should do when you daemonize yourself (admit it, you don't), then this book will tell you.

You'll feel amatuerish for a bit afterwards, but if you want to consider yourself a professional programmer (in any language) in the Unix environment you need to read this.

link|flag
vote up 2 vote down

The Pragmatic Programmer

And its best advice is to invest in your own knowledge by reading more books :-)

link|flag
vote up 2 vote down

"clean code" by uncle bob is pretty good: http://books.slashdot.org/article.pl?sid=08/09/23/2243216&from=rss

link|flag
vote up 2 vote down

Facts and Fallacies of Software Engineering by Robert L. Glass is a really excellent book. I had been a professional hacker for almost 10 years before I read it, and a I still learned a ton of stuff.

link|flag
vote up 2 vote down

Discrete Mathematics For Computer Scientists

Discrete Mathematics For Computer Scientists by J.K. Truss.

While this doesn't teach you programming, it teaches you fundamental mathematics that every programmer should know. You may remember this stuff from university, but really, doing predicate logic will improve you programming skills, you need to learn Set Theory if you want to program using collections.

There really is a lot of interesting information in here that can get you thinking about problems in different ways. It's handy to have, just to pick up once in a while to learn something new.

link|flag
vote up 2 vote down

it was neat to see some people mention books i'd never heard of before, particularly SICP. i also think that little schemer is an awesome awesome book. i haven't seen anyone list this one yet. the art of unix programming.

the art of unix programming

link|flag
show 1 more comment
vote up 2 vote down

OK, so the question is not "what's the best programming book", but "if you could tell yourself what to read in the beginning of your career"...

Probably one of "On Lisp" and SICP, plus one of CLRS or "Algorithms: a creative approach" by Udi Manber.

The first two will teach lots of programming techniques, patterns, and really open up one's mind to his/her own creativity; the other two are different. They're more theoretical, but also very important, focusing on design of correct and efficient algorithms (and requiring substantially more math).

I see lots of people recommending the three first books when the subject of "good programming books" pops up, but the last one (by Manber) is a great book, and few people know it. It's a shame! Manber focuses on the incremental development of algorithms through theorem proving using induction.

link|flag
vote up 2 vote down

Systemantics: How Systems Work and Especially How They Fail. Get it used cheap. But you might not get the humor until you've worked on a few failed projects.

The beauty of the book is the copyright year.

Probably the most profound takeaway "law" presented in the book:

The Fundamental Failure-Mode Theorem (F.F.T.): Complex systems usually operate in failure mode.

The idea being that there are failing parts in any given piece of software that are masked by failures in other parts or by validations in other parts. See a real-world example at the Therac-25 radiation machine, whose software flaws were masked by hardware failsafes. When the hardware failsafes were removed, the software race condition that had gone undetected all those years resulted in the machine killing 3 people.

link|flag
vote up 2 vote down

After K&R, I'll second that vote for Programming Pearls.

Why is the Brooklyn Bridge still standing while Galloping Gertie self-destructed in weeks? Every engineer should be fluent in the skill of making "back of the envelope" calculations and mentally keeping an eye on both the "forest and the trees" of their projects. The author Bently emphasizes their importance in every essay. Standing in line at a restaurant? Estimate your wait using the same math used in data queue analysis. How much water flows out of the mouth of the Mississippi river? Four different people use four unrelated methods to estimate an answer, all applicable to CPU processing speed calculations. And so on.

These are vital, fundamental skills that, sadly, are going the way of the slide rule.

link|flag
vote up 2 vote down

I am still waiting for my copy of LiSP.

link|flag
vote up 2 vote down

Etudes for Programmers by Charles Wetherell, More Programming Pearls (Jon Bently),

link|flag
vote up 2 vote down

For me it was Design Patterns Explained it provided an 'Oh that's how it works' moment for me in regards to design patterns and has been very useful when teaching design patterns to others.

link|flag
vote up 2 vote down

Not the most influential, but worth a look is Youth by J.M.Coetzee.

The narrator of Youth, a student in the South Africa of the 1950s, has long been plotting an escape from his native country: from the stifling love of his mother, from a father whose failures haunt him, and from what he is sure is impending revolution. Studying mathematics, reading poetry, saving money, he tries to ensure that when he arrives in the real world, wherever that may be, he will be prepared to experience life to its full intensity, and transform it into art. Arriving at last in London, however, he finds neither poetry nor romance. Instead he succumbs to the monotony of life as a computer programmer, from which random, loveless affairs offer no relief. Devoid of inspiration, he stops writing. An awkward colonial, a constitutional outsider, he begins a dark pilgrimage in which he is continually tested and continually found wanting.

youth cover

link|flag
vote up 2 vote down

Hands down Head First Design Patterns!

It not only teaches you about design patterns, but also gives you real world problems they solve. Most notable, it walks you through the wrong ways to solve the problems, and the common mistakes, which I think is most beneficial.

link|flag
show 3 more comments
vote up 2 vote down

alt text

Not the most important, but a very fundamental one

link|flag
show 1 more comment
vote up 2 vote down

Well, if I had to choose a single book it is definitely "Code Complete". To take the "righteous path" as a programmer - "Pragmatic Programmer" is also great.

A book that was an "eye-opener" for me, although I didn't expect it from such a book, is "The C++ Programming Language" by Bjarne Stroustrup.

And, finally, I would mention two Fowler's "classics" - "Patterns of Enterprise Architecture" and "Refactoring".

link|flag
vote up 2 vote down

Algorithms in C++ was invaluable to me in learning Big O notation and the ins and outs of the various sort algorithms. This was published before Sedgewick decided he could make more money by dividing it into 5 different books.

C++ FAQs is an amazing book that really shows you what you should and shouldn't be doing in C++. The backward compatibility of C++ leaves a lot of landmines about and this book helps one carefully avoid them while at the same time being a good introduction into OO design and intent.

link|flag
vote up 2 vote down

Solid Code Optimizing the Software Development Life Cycle

Although the book is only 300 pages and favors Microsoft technologies it still offers some good language agnostic tidbits.

link|flag
vote up 2 vote down

I read most of the books having an high score on this question - but not all of them (thanks God !) and I added the others one to my Amazon Wish List right away !

(Someone should create a list on Amazon for these books... Maybe a list named : "Stackoverflow best books ever" ? Anyone know how to do that ?)

To me, the best book ever has been Code Complete. It was a revelation. I bought the 2nd edition in english and then in French and I still think it should be a mandatory reading in any computer science school. Data structure is cool but Code complete, no joke, is much more important...

Then, my second best book was Writing Solid Code - having learn how to be understood, it was great to know how to write solid code.

Then a lot of very nice books but no one to mention here. Until 2001, I think : Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries. A jewel ! I read this book many times and it's still on my desk, just beside my LCD, along with Code Complete (really !). I Love the way it has been written (love the comment that has been added here and there - books should all be written like that !)

But well, I forget the very first great books I've read ! The ones who make me love computer science, with passion :

  • Compute! (C64 magazine - Will never forget Jim Butterfly :o)
  • Borland C++ User Guides (the old ones, circa 1991, those who tried to introduce object oriented programming, very nicely written).
  • Most Microsoft Developpement Tools User Guides, circa 1990-1995. Don't know who were writing them, but they was pretty cool ! I remember reading them late in the night, on saturdays...

Well, excellent question :o)

link|flag
prev 1 3 4 5 6 7 10 next

Your Answer

Get an OpenID
or

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