vote up 5 vote down star

What are the best programming related books that you have read, i.e. ones that are technology agnostic and have had an impact on the way you develop software?

I'm thinking about books perhaps like Clay Shirky's Here Comes Everybody, which may have changed the way you do some social software, or Steve Krug's Don't Make Me Think, which may have changed the way you do usability.

And I'm also thinking about more "touchy feely" books rather than things like "hard" design or process books, i.e. not things like Code Complete.

Please could you provide reasons why they changed the way you do things?

flag

2  
Should be community wiki – Chad Birch May 5 at 15:52
I have to wonder how much these books have really changed the way people write software and then if that's really good thing. – BobbyShaftoe May 5 at 15:53
I think this question has been asked before. – Robert S. May 5 at 15:54
1  
I voted to close: "exact duplicate". I know that this is a slightly different question but I think that our existing "good books" list is quite sufficient. – Andrew Hare May 5 at 15:56
It seems to have already turned into the usual "what's your favorite programming book?" anyway, voting to close. – Chad Birch May 5 at 15:56
show 3 more comments

closed as exact duplicate by Andrew Hare, Chad Birch, Bill Karwin, John Rasch, Michael Haren May 5 at 16:04

18 Answers

vote up 1 vote down check

-Code Complete

-Refactoring (somewhat oo-oriented)

-Programming Pearls

-GOF

-Computational Beauty of Nature

-Infinity and the Mind (Rudy Rucker)

-Metamagical Themas (Hofstader)

link|flag
vote up 8 vote down

The Pragmatic Programmer, comes to mind.

link|flag
vote up 6 vote down

It makes me sad every time one of these questions is asked and The Art of Computer Programming isn't an immediate answer.

link|flag
1  
Probably because it is about actual computer science and not fluffy nonsense or sociological jibber jabber pseudoscience. :) – BobbyShaftoe May 5 at 15:55
@Bobby: Far be it for us to treat our profession as a hard science... – Pesto May 5 at 16:00
I work in the IT organization of a state government. This is far from science. – Robert S. May 5 at 16:04
@Out Into Space: Knowing the government, you'd perhaps do better with a book about evaluating the quality of documentation based upon its weight. – Pesto May 5 at 16:33
@Pesto: we have a 400 volume series on that very topic. – Robert S. May 5 at 20:17
show 1 more comment
vote up 4 vote down

1) Refactoring: Improving the Design of Existing Code by Martin Fowler, Kent Beck..

2) The Mythical Man-Month: Essays on Software Engineering

Also see this list : Essential Language Agnostic Computer Programming Books

link|flag
vote up 3 vote down

Code Complete of course. It made me stop writing awful software.

I'm also a big fan of Software Estimation by the same author.

link|flag
vote up 3 vote down

Definitely Code Complete, 2nd edition.

alt text

link|flag
could you resize that image to a reasonable size (about half as big in both dimensions)? – SquareCog May 5 at 16:02
Oh, yes, sorry about that :) – hmemcpy May 5 at 18:39
vote up 2 vote down

Structure and Interpretation of Computer Programs uses Scheme as its medium, but it is very much about programming itself, not about any specific technology.

And I've linked to the full text online in html! Check it out!

link|flag
vote up 2 vote down

Head First Design Patterns is a great introduction to Design Patterns. (examples are in java)

alt text

link|flag
Why exactly is that girl there? – Yuvi Sep 6 at 11:28
vote up 1 vote down

I like Martin Fowler's books Refactoring and Patterns of Enterprise Application Architecture.

I also recomment you to read something about classic GoF design patterns. But original GoF's book is rather difficult to read. I like M. Grand version.

link|flag
vote up 1 vote down

Since the title is "programming related" and not strictly "how to program" I would recommend : alt text

Here's an excerpt from the preface:

So while I hope that programmers will enjoy this work, it is meant equally or more for the rest of us. It poses a question and tells a tale. Why is good software so hard to make? Since no one seems to have a definitive answer even now, at the start of the twenty-first century, fifty years deep into the computer era, I offer, by way of exploration, the tale of the making of one piece of software -- a story about a group of people setting their shoulders once more to the boulder of code and heaving it up the hill, stymied by obstacles old and new, struggling to make something useful and rich and lasting.

link|flag
vote up 0 vote down

Introduction to Algorithms

link|flag
vote up 0 vote down

The "Gang Of Four" and the Design Patterns book. Should be required reading for anyone getting into software development.

Code Complete from MS Press is another highly recommended book for developers.

link|flag
vote up 0 vote down

Probably the biggest for me is Hofstadter's Godel, Escher Bach, which is a philosophical exploration into computer programming and the wonderful things present within. His story on recursion is one that I will share if I ever become a programming guru and teach younglings.

That, and Frederick Brook's Mythical Man Month.

link|flag
vote up 0 vote down

My top 5 would be

1- Code Complete
2- Code Complete
3- Code Complete
4- Code Complete
5- Code Complete

Every programmer should have this book.

link|flag
vote up 0 vote down

I think The Art of Computer Programming must count as language-agnostic, considering the language used in it only runs on a "hypothetical computer" (though people have since written emulations for it).

link|flag
vote up 0 vote down

Michael Feathers book

Working Effectively with Legacy Code (Robert C. Martin Series) (Paperback)

has given me hope about our terrible no test spaghetti code base.

http://www.amazon.com/Working-Effectively-Legacy-Robert-Martin/dp/0131177052

link|flag
vote up 0 vote down

The Art of Software Testing by Glenford J. Myers.

link|flag
vote up 0 vote down

The Practice of Programming by Kernighan and Pike

The CLR(S) "Introduction to Algorithms"

link|flag

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