vote up 71 vote down star
105

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 2 3 4 5 8 next
vote up 1 vote down

This might not count as a "development book" but I have to throw it in anyway: Hackers by Stephen Levy. I found that it spoke to the emotional side of programming.

link|flag
vote up 1 vote down

Agile Software Development with Scrum by Ken Schwaber and Mike Beedle.

I used this book as the starting point to understanding Agile development.

link|flag
vote up 1 vote down

Structure and Interpretation of Computer Programs

link|flag
vote up 1 vote down

Turbo Pascal 7! "I can make the computer do things?!?!?!"

link|flag
vote up 1 vote down

Not to mention books that have already been mentioned MANY times, one of the best books on what NOT to do is AntiPatterns (Refactoring Software, Architectures and Projects in Crisis) from Wiley.

link|flag
vote up 1 vote down

Thinking in Java - I'm a .net developer now :-)

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

Zen and art of Motorcycle Maintainence

Undoubtedly.

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

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

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

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

Many of the books listed could fit the bill. If restricted to one, I'd probably pick "UNIX Programming Environment" by Kernighan and Pike as THE most influential, though "Software Tools" and "The Elements of Programming Style" were also extremely influential on me when I started, a long time ago (80s). Slightly more recent influences would include "The C Programming Language" and both "Code Complete" and "Writing Solid Code" (90s). Current influences (00s) would include - not in order:

  • The Art of Unix Programming
  • Test-Driven Programming
  • Refactoring
  • Pragmatic Programmer
  • The Practice of Programming
  • Working Effectively with Legacy Code
link|flag
vote up 0 vote down

The Interpretation of Object-Oriented Programming Languages by Ian Craig

Because it showed me how much more there was to OO than standard C++/Java idioms

link|flag
vote up 0 vote down

Programming in C - K & R

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

Close call: Extreme Programming Explained, Kent Beck, or Refactoring, Martin Fowler.

link|flag
vote up 0 vote down

Another vote here for Head First Design Patterns

link|flag
vote up 0 vote down

The Mythical Man-Month here as well. Despite being an old book, a lot of the stuff in there is still true and only new development methods like agile, xp, tdd may change some of this finally. It explains in detail why adding new developers to a late project will make the project even later. It will not improve your coding skills, but after being a developer for a few years, this will open your eyes for sure and explain a lot of the problems you have faced before.

link|flag
vote up 0 vote down

Thinking in Java (Patterns) , Bruce Eckel

link|flag
vote up 0 vote down

Professional Excel Development This book showed how to make high quality applications within one of the most ubiquitous programming platforms available.

link|flag
vote up 0 vote down

Programming Perl by Larry Wall

link|flag
vote up 0 vote down

Cocoa Programming for Mac OS X by Aaron Hillegass

link|flag
vote up 0 vote down

The Pragmatic Programmer, probably.

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.