vote up 595 vote down star
883

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 6 7 8 9 10 next
vote up 0 vote down

Structure and Interpretation of Compunter Programs(SICP) of course. Such a good book.

And the book Functional Programming Using Standard ML, Prentice-Hall, 1987 by Åke Wikström. Åke's book taught me the importance to abstract, that the human brain can only handle like 4-6 concepts at the same time. Abstraction makes it possible to generalize and therefore handle more concepts at the same time.

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

I saw a review of Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools on a blog talking also about XI-Factory, I read it and I must say this book is a must read. Altough not specifically targetted to programmers, it explains very clearly what is happening in the programming world right now with Model-Driven Architecture and so on..

link|flag
vote up 0 vote down

Beginning C# 3.0: An Introduction to Object Oriented Programming

This is the book for those who want to understand the whys and hows of OOP using C# 3.0. You don't want to miss it.

link|flag
vote up 1 vote down

I'm reading now Agile Software Development, Principles, Patterns and Practices. For those interested in XP and Object-Oriented Design, this is a classic reading.

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

Here's an excellent book that is not as widely applauded, but is full of deep insight: Agile Software Development: The Cooperative Game, by Alistair Cockburn.

What's so special about it? Well, clearly everyone has heard the term "Agile", and it seems most are believers these days. Whether you believe or not, though, there are some deep principles behind why the Agile movement exists. This book uncovers and articulates these principles in a precise, scientific way. Some of the principles are (btw, these are my words, not Alistair's):

  1. The hardest thing about team software development is getting everyone's brains to have the same understanding. We are building huge, elaborate, complex systems which are invisible in the tangible world. The better you are at getting more peoples' brains to share deeper understanding, the more effective your team will be at software development. This is the underlying reason that pair programming makes sense. Most people dismiss it (and I did too initially), but with this principle in mind I highly recommend that you give it another shot. You wind up with TWO people who deeply understand the subsystem you just built ... there aren't many other ways to get such a deep information transfer so quickly. It is like a Vulcan mind meld.
  2. You don't always need words to communicate deep understanding quickly. And a corollary: too many words, and you exceed the listener/reader's capacity, meaning the understanding transfer you're attempting does not happen. Consider that children learn how to speak language by being "immersed" and "absorbing". Not just language either ... he gives the example of some kids playing with trains on the floor. Along comes another kid who has never even SEEN a train before ... but by watching the other kids, he picks up the gist of the game and plays right along. This happens all the time between humans. This along with the corollary about too many words helps you see how misguided it was in the old "waterfall" days to try to write 700 page detailed requirements specifications.

There is so much more in there too. I'll shut up now, but I HIGHLY recommend this book!

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

Difficult to get your hands on it now, but Software Tools by Brian W. Kernighan and P.J. Plauger, is always time well spent.

link|flag
vote up 0 vote down

I would not read a book. I would read someone else's code, then find a proper simple book for that language. That's what I did at the beginning of my passion. In my case, I dug into Commodore 64 BASIC code from journals (at that time, source was shared on dead-tree support, and it was up to you to type it). I then received a BASIC book as a gift (I was a child back then) and started tinkering, but this after I mindlessly typed in all the code, and checked what it did.

I did the same when I learned C. I first started with source code from a chat server, and then bought C for dummies (yep, fast and dirty, but I went somewhere). From there, I continued tinkering and at the same time getting additional knowledge from books.

link|flag
vote up 0 vote down

I think the Best Software Writings will also be a really good read.

link|flag
vote up 8 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
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 0 vote down

OCaml for Scientists

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

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

Concepts, Techniques and Models of Computer Programming

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

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

For me it was Code Craft.

link|flag
show 1 more comment
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 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 6 vote down

alt text

Christopher Alexander - The Timeless Way of Building

link|flag
show 1 more comment
vote up 10 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 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 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 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 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 5 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
prev 1 6 7 8 9 10 next

Your Answer

Get an OpenID
or

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