vote up 569 vote down star
833

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
29  
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

277 Answers

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

This book really set up a fundermental view that a programmer need to know about computer.

alt text

link|flag
vote up 2 vote down

Since I'm a C# programmer and most generic books already has been mentioned I'd like to recommend Bill Wagner's book "More Effective C#.

I think most people that develop composite WPF-applications also should have a look at Microsoft's Composite Application Guidance (also known as Prism):

Composite Application Guidance

link|flag
vote up 4 vote down

I don't know if it were already suggested but:

alt text

link|flag
vote up -1 vote down

Rich Dad Poor Dad, to realize that programming is just another job, and one that can be outsourced at that, and to focus on "minding my own business" instead rather than trading dollars for hours.

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

First read the best books regarding your language of choice and then regarding you OS of choice.

Then once you get the grasp of the language, please go through these language agnostic books. 1) Code Complete - Steve McConnell http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670

2)Design Patterns: Elements of Reusable Object-Oriented Software - Erich Gamma Erich Gamma , Richard Helm, Ralph Johnson, John M. Vlissides http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612/ref=sr_1_1?ie=UTF8&qid=1248974754&sr=8-1

3)The Pragmatic Programmer - Andrew Hunt and Dave Thomas http://www.amazon.com/Pragmatic-Programmer-Journeyman-Master/dp/020161622X/ref=sr_1_1?ie=UTF8&qid=1248974843&sr=8-1

4)Refactoring: Improving the Design of Existing Code - Martin Fowler, Kent Beck, John Brant, and William Opdyke http://www.amazon.com/Refactoring-Improving-Existing-Addison-Wesley-Technology/dp/0201485672/ref=sr_1_1?ie=UTF8&qid=1248974905&sr=8-1

link|flag
vote up 2 vote down

Don't know if anyone mentioned it but I would recommend the book from Uncle Bob Martin.

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

Adding to the great ones mentioned above:

Patterns of Enterprise Application Architecture

Enterprise Integration Patterns

link|flag
vote up 3 vote down

alt text

This last year I took a number of classes. I read

The Innovator's Dilemma (disruptive tech)
The Mythical Man Month (managing software)
Crossing the Chasm (startup)
Database Management Systems, The COW Book
Programming C#, The OSTRICH Book
Beginning iPhone Developmen, The GRAPEFRUIT Book

Each book was amazing but the Innovator's Dilemma by Clayton Christensen (1997!!!) is really a fantastic book, and it got me really thinking about the modern software world. The challenge addressed is disruptive technology, and how disk drive companies and non-technical companies are always disrupted by new, game changing technology. It gives one a new perspective when thinking about Google, probably the biggest 'web' company. Why do they have their hands in EVERYTHING? It's because they don't want to have their position disrupted by something new. The preview on google is plenty to get the idea. Read it!

link|flag
vote up 8 vote down

I'm amazed that no one has suggested The Story About Ping yet.

If this text is displayed then the link to the image may be broken - apologies to Lynx users.

link|flag
vote up 8 vote down

I know this is a graphics book, but I am a graphics programmer and have been my whole career. Plus it's written in 'C' :)

It's as fundamental to me as the original K&R C Programming Language book.

Computer Graphics: Principles and Practice in C (2nd Edition) alt text

link|flag
vote up 3 vote down

All the Thinking in... books.

Bruce Eckel is THE genious of pedagogy! It's so easy to understand the implementation of polymorphism in C++. It contains all that you should known about C++, basic and advanced concepts. Way better than the Stroustrup's. I learnt Java with him too.

And last but not the least:

The C++ one is free !

http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html

link|flag
vote up 2 vote down

Clean Code by Robert Martin.

This book completely changed the way I wrote code (for the better). The first couple of chapters are the best.

link|flag
vote up 8 vote down

Pragmatic Thinking and Learning: Refactor Your Wetware by Andy Hunt.

link|flag
2  
Maybe not as important as "The Pragmatic Programmer", but still very much recommended. +1 – Jonik Jul 23 at 14:00
vote up 5 vote down

alt text

Christopher Alexander - The Timeless Way of Building

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

I'm with many others. The C Programming Language (K&R) is probably one of the most influential book of programming :)

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
vote up 3 vote down

For me it was Code Craft.

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

One of my personal favorites is Hacker's Delight, because it was as much fun to read as it was educational.

I hope the second edition will be released soon!

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 4 vote down

Kernighan & Plauger's Elements of Programming Style. It illustrates the difference between gimmicky-clever and elegant-clever.

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 1 vote down

Concepts, Techniques and Models of Computer Programming

link|flag
vote up 0 vote down

I have found that the first edition of The C++ programming language had a big influence on my programming. I also own the second and third version. There are other C++ books I really liked, such as The Design and Evolution of C++.

link|flag
vote up 0 vote down

"Introduction to Functional Programming", Philip Bird and Richard Wadler. (First Edition)

I am still reading this book. I am liking it very much.

link|flag
vote up 0 vote down

OCaml for Scientists

link|flag
vote up -1 vote down

I'm sorry, I have to reject the question. If I could go back and tell myself which one book to read, I wouldn't. I would tell myself to constantly keep up with the latest trends in books and to read voraciously. All the books in the section are great books, but reading just one wouldn't help you.

Or, alternatively, the best book to read is the Internet. Then go from there and read books people recommend.

link|flag
vote up 7 vote down

The Elements Of Computing Systems

This book walks the reader through the process of building a computer system given NAND gates and flip flops. It gives a good introduction to the "big picture".

The Elements Of Computing Systems

link|flag
show 1 more comment
prev 1 2 3 4 5 10 next

Your Answer

Get an OpenID
or

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