vote up 72 vote down star
108

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
3  
Duplicate of stackoverflow.com/questions/1711 – Huppie Sep 16 '08 at 14:24
1  
This question should really be closed ... as it is a duplicate. – mattruma Sep 16 '08 at 15:23
show 3 more comments

223 Answers

prev 1 4 5 6 7 8 next
vote up 1 vote down

As so many people have listed Head First Design Patterns, which I agree is a very good book, I would like to see if so many people aware of a title called Design Patterns Explained: A New Perspective on Object-Oriented Design.

This title deals with design patterns excellently. The first half of the book is very accessible and the remaining chapters require only a firm grasp of the content already covered The reason I feel the second half of the book is less accessible is that it covers patterns that I, as a young developer admittedly lacking in experience, have not used much.

This title also introduces the concept behind design patterns, covering Christopher Alexander's initial work in architecture to the GoF first implementing documenting patterns in SmallTalk.

I think that anyone who enjoyed Head First Design Patterns but still finds the GoF very dry, should look into Design Patterns Explained as a much more readable (although not quite as comprehensive) alternative.

link|flag
vote up 1 vote down

Craig Larman's Applying UML and Patterns. While the Gang of Four book Design Patterns is very instructive, I found that I didn't "get" how to use design patterns until I ran across Larman's book in a programming class.

link|flag
vote up 0 vote down

Without a doubt GoF's Design Patterns mainly due to the fact that I discovered that I had in fact chosen to solve particular problems using two of the patterns mentioned without knowing about the patterns before.

link|flag
vote up 0 vote down

"Basic für Kleincomputer", Robotron Verlag

link|flag
vote up 0 vote down

Tom Swan's books.

link|flag
vote up 0 vote down

Advanced MS-DOS by Ray Duncan.

link|flag
vote up 0 vote down

Probably "C for Dummies" vol 1, back in 1997 or so. Just an introduction really, but it was a good read after having picked up the taste for programming in GFA Basic on the Atari ST. The Coronado C tutorial around the same time helped too.

link|flag
vote up 1 vote down

"Head First Design Patterns" helped me to understand objects oriented programming.

This book has opened my mind :-) I've tried GoF first.I was discouraged...

But now, GoF is my next step.

Code Complete 2nd edition is very good too.

link|flag
vote up 0 vote down

Michael Abrash The Zen of Assembly Language

link|flag
vote up 0 vote down

Applying UML and Design Patterns.

It helped design patterns to click with me, and provided a justification for UML that made sense to me in the phrasing 'UML as Sketch'. Namely that UML should be used as a brief sketch of the system that has the additional benefit of you not having to explain the notation to others (they either already know UML or you give them a UML book to read)

link|flag
vote up 0 vote down

+1 for Code Complete.

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

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

Zen and art of Motorcycle Maintainence

Undoubtedly.

link|flag
vote up 0 vote down

Scrum and XP from the Trenches

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

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

My job went to India

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

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

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

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

Design Patterns

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 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
prev 1 4 5 6 7 8 next

Your Answer

Get an OpenID
or

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