vote up 69 vote down star
99

For me, Head First Design Patterns was a book that made Design Patterns click for me. Once I had read it, I found I could return to GoF and take more away from it and it really helped my move on as a developer.

What book really made an impact of how you work as a developer?

Note: One book per answer; upvote any you agree with ;o)

flag
show 4 more comments

219 Answers

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

Rapid Development by McConnell

link|flag
vote up 3 vote down

Programming Perl (O'Reilly)

link|flag
vote up 3 vote down

Pragmatic Unit Testing in C# with NUnit by by Andy Hunt and Dave Thomas with Matt Hargett. It made me really understand unit testing and that affects my code in so many ways. It pushed me towards becoming better at understanding Object Orientation.

link|flag
vote up 3 vote down

This one started me off into true OOA&D.

Applying UML and Patterns: An Introduction to Object-Oriented Analysis and Design and Iterative Development - Craig Larman

These would be up there as well:

  • Patterns in Enterprise Application Architecture - Fowler
  • Domain-Driven Design - Eric Evans
link|flag
vote up 3 vote down

Programing Pearls by Jon Bentley, a collection of essays that originally appeared Communications of the ACM

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

The Pragmatic Programmer...less about the technical details that Code Complete covers well, and more about thinking at a higher level about programming.

PP and CC, and the Mythical Man-Month should be on everyone's shelves. But they should read them before they put them on the shelf. Just saying.

link|flag
vote up 3 vote down

Actually the book that had a biggest influence on me is often not liked by the programmers: I am talking about Cooper's "Inmates are running the asylum". However this book forever changed the way I look and think about the things I am building.

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

Coder to Developer, by Mike Gunderloy.

link|flag
vote up 3 vote down

Code by Charles Petzold. I don't have a traditional CS background, so its a great book for helping people like me understand the machine and what goes on under all those layers of abstraction.

link|flag
vote up 3 vote down

Test Driven Development

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

Head First Design Patterns is a great book! at first it seemed a bit controvertial but i quickly fell in love with it and carried it with me everywhere until i finished. i tried reading other head first books but none could compare. all the other books i've read were strictly technical and there was nothing fascinating about them.

link|flag
vote up 2 vote down

Code Complete 2

Design Patterns in C#

link|flag
vote up 2 vote down

Code Complete, Second Edition

www.amazon.com

link|flag
vote up 2 vote down

I think code complete is going to be a hugely popular one for this question, for me it corrected many of my bad habits and re-affirmed my good practices.

Also for my Perl background I really like Perl Best Practices from Damian Conway. Perl can be a nasty language if you don't use style and best practices, which is what I was seeing in the scripts I was reading ( and sometimes writing ) .

I like the Head First Series, they are quite good and easy to read when your are not in the mood for more serious style books.

link|flag
vote up 2 vote down

Object-Oriented Software Construction by Bertrand Meyer

link|flag
vote up 2 vote down

This will probably date me, but the "dragon book" on compilers. It was from the depths of groking that book that I started my first real project, and launched my career.

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

I suppose we could ask the same top rated question every couple of weeks and upmod all those who mention code complete or The Pragmatic Programmer.

Not that there is anythng wrong with it :-)

link|flag
vote up 2 vote down

"The Design and Evolution of C++" by Bjarne Stroustrup

Besides giving much background on C++, it is also a lengthy study on the trade-offs and design concerns involved in a large scale program.

BN.com

link|flag
vote up 2 vote down

While not strictly a software development book, I would highly recommend that Don't Make me Think! be considered in this list.

link|flag
vote up 2 vote down

Working effectively with legacy code

and

Refactoring to Patterns

link|flag
vote up 2 vote down

Extreme Programming by Kent Beck

link|flag
vote up 2 vote down

The question is, "What book really made an impact of how you work as a developer?" Without any doubt, Programming Windows with MFC, by Jeff Prosise, is the book that had the greatest impact on HOW I work as a developer. It did not teach me the fundamentals of "programming" but it opened the world of Windows platform development to me and many thousands of other developers.

I had written a little Windows code previously in the "Petzold style" before MFC was developed. I quickly decided the Windows platform we just not worth the trouble as a developer. When Prosise came out with his MFC book, I realized (along with thousands of other non-Windows programmers) that I could create an easy to use interface that users would not just understand, but actually enjoy using. I devoured the book, making so many notes in it and turning down so many corners, I eventually bought a second copy.

Prosise, Jeff. Programming Windows with MFC 2nd Ed. Microsoft Press 1999 ISBN: 1-57231-695-0

link|flag
vote up 2 vote down

Domain Driven Design by Eric Evans

link|flag
vote up 2 vote down

The Mythical Man-Month required reading for any developer. The very fact it is as old as it is and still relevant makes it necessary reading.

link|flag
vote up 2 vote down

CLR via C#, by Jeffrey Richter

link|flag
vote up 2 vote down

Programming Pearls by Jon Bentley

There is nothing like writing your own quicksort implementation to get you thinking about datastructures and algorithms.

link|flag
vote up 2 vote down

Separately, I'd mention The Third Manifesto by Hugh Darwen and CJ Date. If you're interested in understanding data (which seems uncommon among programmers) this book is a must-read. It will also make you sad when you realize just how badly broken SQL is, but it'll also help you cope with that brokenness. Knowing how a tool is broken lets you design with those deficits in mind.

link|flag
vote up 2 vote down

The most influential programming book for me was Enough Rope to Shoot Yourself in the Foot by Allen Holub.

Cover of the book

O, well, how long ago it was.

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

Martin Fowler's Refactoring: Improving the Design of Existing Code has already been listed. But I will detail why it has impacted me.

The essence of the whole book is about structuring code so that it is simpler to read and understand by humans. It teaches me strongly that the code that I write is meant for my colleagues and successors to consume and possibly learn something good out of it. It inspires me to consciously program in a manner that leaves people praising my name, and not cursing me to damnation for all eternity.

link|flag
vote up 2 vote down

Another book that has not been mentioned yet, and SHOULD be required reading for EVERY programmer, newbies on up to gurus, in ANY programming language, is Michael Howard's Writing Secure Code (2nd Edition) from MSPress.

link|flag
prev 1 2 3 4 5 8 next

Your Answer

Get an OpenID
or

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