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

The Pragmatic programmer was pretty good. However one that really made an impact when I was starting out was :

Windows 95 System Programming Secrets"

I know - it sounds and looks a bit cheesy on the outside and has probably dated a bit - but this was an awesome explanation of the internals of Win95 based on the Authors (Matt Pietrek) investigations using his own own tools - the code for which came with the book. Bear in mind this was before the whole open source thing and Microsoft was still pretty cagey about releasing documentation of internals - let alone source. There was some quote in there like "If you are working through some problem and hit some sticking point then you need to stop and really look deeply into that piece and really understand how it works". I've found this to be pretty good advice - particularly these days when you often have the source for a library and can go take a look. Its also inspired me to enjoy diving into the internals of how systems work, something that has proven invaluable over the course of my career.

Oh and I'd also throw in effective .net - great internals explanation of .Net from Don Box.

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

Test Driven Development

link|flag
show 1 more comment
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 6 vote down

I'm really surprised that nobody has mentioned Advanced Programming in the UNIX Environment by W. Richard Stevens. It's not necessarily the book that had the most impact on me, but it definitely deserves a place among many of the other greats mentioned here.

Even though I mostly did (and do) Perl programming, reading this book really helped me understand more about what's going on under the hood. It covers a ton of really critical low-level concepts like File IO, system files (passwd, group, etc), process control, signals, and so on.

Having some idea of how this stuff works at the C level is very useful, even if you never write any C code, because every language you use (on a Unix system) is using these APIs under the hood.

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

Fowlers Patterns of Enterprise Application Architecture. Code Complete was a good read but it simply confirmed my thought and practices rather than taught me a lot new material. It's a great book to give someone who needs a clue.

link|flag
vote up 14 vote down

Richard Feynman, "Surely You're Joking, Mr. Feynman"

link|flag
vote up 0 vote down

Effective Java by Joshua Bloch

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

For me "Memory as a programming concept in C and C++" really opened my eyes to how memory management really works. If you're a C or C++ developer I consider it a must read. You will defiantly learn something or remember things you might have forgotten along the way.

http://www.amazon.com/Memory-Programming-Concept-C/dp/0521520436

link|flag
vote up 0 vote down

"Writing Solid Code: Microsoft's Techniques for Developing Bug-Free C Programs (Microsoft Programming Series)" by Steve MacGuire.

Interesting what a large proportion the books mentioned here are C/C++ books.

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

How to think like a computer scientist: learning with python

May not be the most advanced book on the world but it made me understand programming concepts that I couldn't, especially object oriented topics.

link|flag
vote up 0 vote down

Read the faq: Avoid asking questions that are subjective

link|flag
vote up 0 vote down

Inside the c++ object model by Stanley Lippman http://www.amazon.com/Inside-Object-Model-Stanley-Lippman/dp/0201834545

link|flag
vote up 1 vote down

The Art of Computer Programming, by Donald Knuth, especially volumes I and II. (Oops, is that two books?)

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

The Practice of Programming

link|flag
vote up 0 vote down

Code Complete. I realize I am the 900th person to say it, but it deserves the statement.

Additionally, The Art of Computer Programming might be a close second for me personally.

link|flag
vote up 1 vote down

The Art of Computer Programming by Donald Knuth.

I had to read this at University and I bitched and moaned, like everyone else. But by the end of the course I praised the book, simply for the fact that it shows you why you can't create inefficient loops (conditionals, etc) in code.

On the lighter side, The Pragmatic Programmer is a close runner-up.

link|flag
vote up 0 vote down

As a C++ programmer I liked Scott Meyer's but, despite of lesser production value of presented solutions, much bigger impact made "Modern C++ Design" by Andrei Alexandrescu. Very good book.

As a theoretical cs hobbyist the most important for me were Don Knuth's books, especially Concrete Mathematics, which showed me a wide range of interesting tricks.

Few days ago I finished reading Beautfiful Code (Andy Oram & Greg Wilson) and I found many interesting ideas there.

I looked in the bookstore at Head First series, metioned by posters before me and didn't like the series at all. I don't know why. The best book about patterns is, in my opinion, Design Patterns by the Gang of Four.

link|flag
vote up 0 vote down

Code Complete 2

link|flag
vote up 0 vote down

Amiga ROM Kernel Manuals :)

link|flag
vote up 0 vote down

Actually, two books stand out. The first was Code Complete. Despite its age, this is still a very useful book, and the chapter on the dangers of premature optimisation is worth the price of the book on its own.

The second one was The Psychology of Everyday Things (now called The Design of Everyday Things, I think), which changed the way I think about user interfaces when designing applications. It made me more user-focused.

link|flag
vote up 0 vote down

Head First Design Patterns +1

link|flag
vote up 0 vote down

Head First Design Patterns here too

link|flag
vote up 3 vote down

Coder to Developer, by Mike Gunderloy.

link|flag
vote up 0 vote down

"The C++ Programming Language" by Bjarne Stroustrup

link|flag
vote up 0 vote down

Dreaming in Code Has probably had the most profound impact in the last 6 months.

link|flag
vote up 0 vote down

Most of the books listed here are rather old, for example: The Mythical Man-Month (1995) Code Complete (1993) Effective C++ by Scott Meyers (1998)

Isn't there any recent classic out there, let's say from 2007-2008 ?

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.