vote up 570 vote down star
834

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

Adding to the great ones mentioned above:

Patterns of Enterprise Application Architecture

Enterprise Integration Patterns

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

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

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

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

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

Perfect Software: And Other Illusions about Testing

TITLE Cover

Perfect Software: And Other Illusions about Testing by Gerald M. Weinberg

ISBN-10: 0932633692

ISBN-13: 978-0932633699

link|flag
vote up 2 vote down

The C Programming Language by Brian Kernighan and Dennis Ritchie. It is sometimes referred to as K&R, or the white bible, or K&R2 for the second edition.

link|flag
vote up 6 vote down

How influential a book is often depends on the reader and where they were in their career when they read the book. I have to give a shout-out to Head First Design Patterns. Great book and the very creative way it's written should be used as an example for other tech book writers. I.e. it's written in order to facilitate learning and internalizing the concepts.

Head First Design Patterns

link|flag
1  
I checked this one out of my local library, and returned it having made it only about 50 pages in. The "Head First" hurl-clip-art-and-sidenotes-on-every-page style may be an effective way of learning for some, but as a person with Attention Deficit Disorder, it made my head explode. I simply could not keep focus on the content. I much prefer the original Gang of Four book for the same information. – SFEley Oct 11 at 4:24
show 2 more comments
vote up 7 vote down

alt text

link|flag
vote up 3 vote down

Extreme Programming Explained: Embrace Change by Kent Beck. While I don't advocate a hardcore XP-or-the-highway take on software development, I wish I had been introduced to the principles in this book much earlier in my career. Unit testing, refactoring, simplicity, continuous integration, cost/time/quality/scope - these changed the way I looked at development. Before Agile, it was all about the debugger and fear of change requests. After Agile, those demons did not loom as large.

link|flag
vote up 2 vote down

The Practice of Programming

The practice of programming. By Brian W. Kernighan, Rob Pike.

The style shown here is excellent - the code just speaks for itself, and the whole book follows the KISS principle. Personally not my languages of choice, but still influential to me.

link|flag
vote up 56 vote down

Coders at Work by Peter Seibel. A very influential book to learn from the experience of some of the top names in the field, how they think and work.

alt text

link|flag
3  
In case anyone missed it: the author was the guest on SO podcast #69 (blog.stackoverflow.com/2009/09/podcast-69) discussing this book and other things – Jonik Oct 7 at 18:45
show 2 more comments
vote up 0 vote down

Personally, I like the handwritten notes by Edsger W. Dijkstra. A lot.

link|flag
vote up 4 vote down

The Annotated Turing was enlightening. It defines the box programmers work in. alt text

link|flag
vote up 1 vote down

Though I agree with The Pragmatic Programmer, I would also recommend The Practice of Programming. It came out around the same time and never gained the level of notoriety as the Pragmatic series, but TPoP is a great book and, most importantly, not a massive undertaking to read. Thus, the reader gets a lot of return for his/her time investment in reading/ingesting it.

link|flag
vote up 4 vote down

Apart from all the great books already recommended, there is one more book I would like to recommend.

This may be relatively unknown, however I use it every so often.

The book teaches computer architecture and how C code gets compiled to assembly code. It has great sections about the program stack, talks about low level operating system constructs and about various parts of the architecture from a programmer's perspective.

It has a great section on memory allocation and garbage collection. It also discusses network programming, profiling and much more.

One of my favorite books.

alt text

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

For Project Managers

link|flag
vote up 2 vote down

The Productive programmer. its a natural extension of "the pragmatic programer" which gets a little more into the every day details.

alt text

link|flag
vote up 2 vote down

Various insights into software engineering in the real world.

alt textalt text

link|flag
vote up 1 vote down

Dijkstra's A Discipline of Programming is a true classic. It will change the readers' way of reasoning about programs - it certainly has changed mine.

An easier read would be Gries' Science of Programming - it is along the same lines, but easier to read.

As an aside, I must mention that we are still struggling to come up with a scheme that these books propose for concurrent programs.

link|flag
vote up 2 vote down

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?

JUnit in Action

Unit testing is one thing that I really wished I knew at the start of my programming career rather than the middle of it.

As to the general "what good books have you read" offshoot of this thread:

Mastering the Requirements Process

Writing requirements is one area where I suck, this book helped a lot.

Now off to order a book to two from Amazon... ;)

link|flag
vote up 1 vote down

It seems most people have already touched on the some very good books. One which really helped me out was Effective C#: 50 Ways to Improve your C#. I'd be remiss if I didn't mention The Tao of Pooh. Philosophy books can be good for the soul, and the code.

link|flag
vote up 1 vote down

My career as a developper is starting, so I cannot directly answer the question. But as .NET developper, the book that helped me the most in framework and reusable libraries design is "Framework Design Guidelines" by Brad Abrams. The book solves a lot of issue you can encounter when you are thinking about naming and crucial design choices. This is the best way to produce high reusable assemblies in .NET.

alt text

I am pretty surprised that nobody mentioned that book. What is sure is that it has been really influential on my design and naming habits when writing reusable assemblies.

One thing I really appreciate in this book is the notes of .NET Framework developers giving details on issues they had when designing the .NET Framework, which I think are good advices as it is representative of a well designed framework.

link|flag
vote up 1 vote down

It's a brand new book and I've only just skimmed it but Growing Object-Oriented Software, Guided by Tests right now is THE book on TDD. It really concentrates on the "design" part of software development and how it is closely related to how you develop code writing tests first. I've enjoyed other books on TDD and unit testing but this takes it to a higher level, I'm pretty sure this one is destined to be a classic.

link|flag
vote up 1 vote down

"The Practice of programming" by Brian W.Kerninghan & Rob Pike.

The language is easy and also the subject matter is interesting.

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.