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

1 2 3 4 5 8 next
vote up 154 vote down check

Code Complete

link|flag
2  
I'm reading code complete right now! It's cleared up a lot of the grey mist areas for me (should I name this variable numRecords..recordsCount...ah-hah!) – Mike Robinson Apr 27 at 13:16
4  
Doesn't make much sense to select one answer as "accepted" for a subjective poll like this, does it? – Jonik May 3 at 13:04
vote up 0 vote down

One I didn't already see on here was xUnit Test Patterns: Refactoring Test Code by Gerard Meszaros. This book really helped me see unit testing from a fresh perspective.

link|flag
vote up 0 vote down

Domain Driven Design By Eric Evans is a wonderful book!

link|flag
vote up 0 vote down

Peter Norton's Assembly Language Book for the IBM PC

alt text

I had spent countless nights in front of the pc (DOS), exploring unknown worlds :-D

link|flag
vote up 0 vote down

Beginning Visual C++

When I first started programming in a OOP languages, I found this book not only to be a comprehensive book about C++ and MFC, it was also has one of the best explanations of Object Oriented concepts I've seen.

When I talk to developers who are just starting out programming in an object oriented language, I tell them to read this book.

link|flag
vote up 0 vote down

An introduction to GW Basic. With out it I never would have learned how to program and any other books wouldn't have done me any good.

link|flag
vote up 1 vote down

Three books come to mind for me.

  • The Art of Unix Programming by Eric S. Raymond.
  • The Wizardry Compiled by Rick Cook.
  • The Art of Computer Programming by Donald Knuth.

I also love the writing of Paul Graham.

link|flag
vote up -3 vote down

Another Code Complete fan here!

link|flag
1  
You could express "me, too!" by simply voting up stackoverflow.com/questions/72406/…, instead of adding a duplicate answer – Jonik May 3 at 13:07
vote up 1 vote down

Has to be Code Complete. I had the good fortune of buying as I started my first steps as a programmer. I learned so much from it I immediately re-read it. I firmly believe it transformed by skills in a short space of time.

I have recommended it to various junior programmers and university students but sadly my advice always seems to fall on deaf ears. shame really its just so packed with lessons learned from practical experience. It really is a treasure trove of great advice.

link|flag
vote up 1 vote down

I bough this when I was a complete newbie and took me from only knowing that Java existed to a reliable team member in a short time

link|flag
vote up 0 vote down

Even though i've never programmed a game this book helped me understand a lot of things in a fun way.

link|flag
vote up -2 vote down

Code Complete

link|flag
vote up -1 vote down

Design Patterns

link|flag
vote up -2 vote down

Code Complete

link|flag
vote up -1 vote down

Design Patterns

link|flag
vote up 0 vote down

Object-Oriented Programming in Turbo C++. Not super popular, but it was the one that got me started, and was the first book that really helped me grok what an object was. Read this one waaaay back in high school. It sort of brings a tear to my eye...

link|flag
vote up 1 vote down

The Scelbi-Byte Primer

I pored over the source code listings in this book many times until, one day, I suddenly grokked 8080 assembly language programming.

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

Hard to say, but the last programming book i found really interesting was "Beautiful Code" by O'Reilly

link|flag
vote up 0 vote down

Fortran IV with Watfor and Watfiv by Cress, Dirkson and Graham.

This book taught me my first programming language that I programmed onto punch cards at the time. After 3 years, the book was all tatters because I had used it so much.

alt text

Fortran was a great language! It had a super optimizer and produced very fast code. It is still very popular in Great Britain and FTN95 is now a very full-featured and capable compiler. I sometimes wish I could have continued to use it, but Delphi is a more than adequate replacement.

link|flag
vote up 1 vote down

I think it was after "On Lisp" by Paul Graham that I actually understood how much fun I could have while coding. It made me want to look for different ways of writing programs.

link|flag
vote up 0 vote down

My job went to India

link|flag
vote up 0 vote down

As a self taught programmer without any formal college classes, Code Complete (Vols. 1 and 2) and Rapid Development both made me think about the software development process in new ways. They solidified some ideas I had learned by trail and error, and provided new insights.

Steve MConnell's writing style is one of the most entertaining out there when it comes to programming books.

link|flag
vote up 0 vote down

I am surprised there is no mention yet of this book: "Starting Forth", by Leo Brodie. After all Forth, being a stack-based language, should fit the audience on this site...

Admittedly, Forth is a weird language and not very popular these days. But this book is a joy to read. And it has cartoons! The book, as well as Brodie's other book, "Thinking Forth", are both available free on the web.

[http://home.iae.nl/users/mhx/sf.html][1] [http://thinking-forth.sourceforge.net/][2]

[1]: "Starting Forth" home page [2]: "Thinking Forth" home page

link|flag
vote up 1 vote down

Even though I had been programming rofessionally for years, Rocky Lhotka's "Business Objects" series about his CSLA framework was the book that opened my eyes.

His ideas he got me excited about software development patterns and theory again. It set me on the path of a new interest in learning how to be a better developer, and not just learning about the latest gee-whiz control or library. (Don't get me wrong, I still love a good technical book too - you gotta keep up!)

link|flag
vote up 0 vote down

Scrum and XP from the Trenches

link|flag
vote up 1 vote down

Zen and art of Motorcycle Maintainence

Undoubtedly.

link|flag
vote up 0 vote down

Keep in mind that I'm not a designer, but Tom Peter's "design" has really stuck with me. While it doesn't deal with coding, or development per se, the book is a fantastic read for anyone in the development field.

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

+1 for Code Complete.

link|flag
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.