up vote 1414 down vote favorite
3483
share [g+] share [fb]

If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?

I expect this list to be varied and to cover a wide range of things.

To search: Use the search box in the upper-right corner. To search the answers of the current question, use inquestion:this. For example:

inquestion:this "Code Complete"
link
256  
One of the most important question ever asked on stackoverflow :) – Sylvain Jun 9 '09 at 19:30
7  
Browsing this thread make me realize how ugly most programming related books are. Very good thread though! – Carl Bergquist Aug 5 '09 at 12:09
19  
Interesting this is, while the title reads "What is the single most influential book every programmer should read?", there are quite a few books suggested that deal with language specific topics. By definition, and by question as it was put, the books suggested here should deal with language agnostic topics, which proves most programmers have yet to learn how to read. – ldigas Oct 2 '09 at 19:54
17  
If I could go back in time and tell myself to read something, it better be a newspaper or sports fact book that I carried with me. Anything else is a waste of good time travel. :-) – jmucchiello Nov 8 '09 at 9:38
29  
You know, if I wasn't worried about getting down voted a WHOLE lot I would trollishly go and suggest Twilight. "Its ALSO about people who are pale and avoid the sun!" – Jacob Bellamy Feb 12 '10 at 0:20
show 29 more comments
feedback

locked by Robert Harvey Sep 26 '11 at 15:39

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as not constructive by casperOne Jan 11 at 13:32

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

328 Answers

1 2 3 4 5 11

Code Complete (2nd Ed) by Steve McConnell

cover

  • "The encyclopedia of good programming practice, Code Complete focuses on individual craftsmanship -- all the things that add up to what we instinctively call "writing clean code." This is the kind of book that has 50 pages just talking about code layout and whitespace." --Joel (NB imo there's more to it than semantics)
link
105  
You should already know everything in this book. Really. – Tim Williscroft Jan 12 '09 at 6:22
406  
Everyone always recommends this book, but no one ever says why, which leaves me with the opinion that everyone must have been brainwashed. :P – chaiguy Jan 17 '09 at 3:19
76  
I read this book 3 years into my career. I hadn't taken a software engineering course nor a programming language constructs course but had taken some intro CS courses. It is by far the best single book I've ever read for becoming a better programmer. It won't make you a specialist but it will make you much more than a tinkerer. – Arnshea Apr 25 '09 at 16:11
115  
The problem with this book is that for a beginner, it doesn't really make sense as the concepts are a little advanced. By the time you are ready to be able to read it, you should already know and practice 99% of the concepts in the book. – esac Apr 30 '09 at 1:46
56  
That's the deal with common sense suggestions, like those found in this book. Every so often you need to be reminded of them to fall back in line. – JohnFx Jun 17 '09 at 15:56
show 50 more comments
feedback

The Pragmatic Programmer; it's more about your trade, and how to apply it than the code per se, but it's still very good.

This is a great book for programmers who have learned the mechanics of programming, maybe in college, but don't quite feel secure deciding what to do. It's like the difference between drafting and architecture. What you learned in that class in college was drafting, and you can draw beautifully, but if you still feel like you wouldn't quite know where to begin if someone told you to write a P2P music-swapping network all by yourself, this is the book for you.

--Joel

The Pragmatic Programmer

link
121  
I personally rate this over Code Complete because it's at a higher level conceptually and is concise - easy to read and start benefiting from (Code Complete's dense detail is great when you want it). Due to this however, the book is aging a lot quicker - hopefully a new edition is on the way? – Gordon Hartley Oct 24 '08 at 18:12
5  
Well Harriyott, it'd have better be good, I've just ordered it on your recommendation! :D – Spedge Oct 29 '08 at 14:34
49  
Very overrated! – Jahanzeb Farooq Oct 8 '09 at 11:09
10  
An overrated book that tosses the field back into the 70s and 80s. – omouse Feb 17 '10 at 18:38
14  
@cloudhead and others: If all you got from this book is that you should use Perl (sometimes you really could) or any other outdated language or technology, than read it again, maybe after some time. You didn't get it! – Bojan Milenkoski Feb 27 '10 at 22:16
show 24 more comments
feedback

enter image description here

Personally, Structure and Interpretation of Computer Programs is by far the most influential programming book I have ever read.

Some classics like Code Complete, Refactoring and Design Patterns teach you the effective working habits and the painstaking details of the trade. Others, like Peopleware, Psychology of Computer Programming and The Mythical Man-Month delve into the psychosocial aspects of software development. Numerous others deal with algorithms. These books all have their place.

SICP, however, is in a different league. It is a book that will enlighten you. It will evoke in you a passion for writing beautiful programs. Moreover, it will teach you to recognize and appreciate that very beauty. It will leave you with a state of awe and an unquenchable thirst to learn more. Other books may make you a better programmer; this book will make you a programmer.

And in the meanwhile, you will learn a thing or two about functional programming (side effects won't be introduced until chapter three), lazy evaluation, metaprogramming (well, metalinguistic abstraction), virtual machines, interpreters, and compilers.

Some think that SICP is not a beginner's book. Personally, I probably wouldn't have appreciated the book in full without having some programming experience under my belt, but I would definitely recommend it for a beginner. The book is, after all, written for the famous 6.001, the introductory programming course at MIT. It may require an intellectual effort (especially if you do the exercises - and you should), but the reward is well worth the price.

Not convinced? Read the Foreword or the Preface to the First Edition. The full text is freely available on the web.

It's available online for free, and there are even video lectures to go along with it.

link
20  
Note that MIT is no longer using this (see lambda-the-ultimate.org/node/1840 ) but that in no way detracts from it being a great book. – pjz Sep 23 '08 at 21:12
11  
Duly noted. It's a shame. Same happened to my school as well - they even had the audacity to replace it with a Java course. – Antti Sykäri Oct 6 '08 at 15:47
67  
17  
Also the SICP lecture videos. youtube.com/results?search_query=sicp – Jared Updike Jun 11 '09 at 23:21
10  
The reviews on Amazon are incredible. Just about half of the people loved it, and the other half hated it. There are almost no fence sitters. – Wayne Conrad Jan 10 '10 at 19:48
show 8 more comments
feedback

The C Programming Language by Kernighan and Ritchie.

The C Programming Language Book

It is concise, easy to read, and it will teach you three things: the C programming language, how to think like a programmer, and the low-level computational model. (It is important to understand what's going on "under the hood".)

link
28  
I didn't get to The C Programming Language until fairly late in my education, and it was a real eye opener. Having been programming in both C and C++ for a couple of years, I burned through the book going "so THAT's what's going on!" on essentially every page. Highly recommended. – Electrons_Ahoy Oct 15 '08 at 16:56
53  
K&R also set a very high standard for consiseness and readability. I wish other languages had similar reference manuals. It's a mark to aim for when writing documentation. – mpez0 Dec 18 '08 at 18:45
38  
If you invent a new language and the manual is longer than K+R, you have done something wrong. – Martin Beckett Feb 3 '09 at 17:36
22  
"teach you ... the low-level computational model." This is absolutely wrong. It most definitely does NOT teach you the low level computational model. It teaches you the c abstract machine model which is considerably different from what modern compilers produce or how that assembly executes on modern processors. This mindset perpetuates double checked locking bugs amongst others. If you want to understand the low level, read a modern compiler book (not dragon) and Hennesy and Patterson. All that said, K&R is a great book. – Jason Watkins Jun 9 '09 at 20:16
5  
And why exactly should I read this? – UpTheCreek Oct 22 '09 at 12:25
show 18 more comments
feedback

Introduction to algorithms (Cormen, Leiserson, Rivest, Stein) aka CLRS - Code Complete teaches you how to program correctly, The Mythical Man-Month teaches you how to manage correctly, Design Patterns teaches you how to design correctly...

This book teaches you how to write think about algorithms.

Introduction to algorithms cover image

In my mind, code is just a tool, not the essence. The main part of developing software (IMO) is creating new algorithms or re-implementing existing ones. Other than that it's just assembling Lego bricks or creating "management" layers. I still dream about the workplace that would allow me to invest most (>50%) of my time in writing algorithms, leaving the management details to other people...

link
24  
I used this book extensively in my undergraduate career. It it written as a text book not a reference book. This means that many of the central concepts are "left as an exersize for the reader". Great book for schools, I don't recommend it as a reference book. – alumb Sep 16 '08 at 16:36
2  
Epic bible, a 1200 page introduction. Truly massive. – moffdub Oct 18 '08 at 14:26
8  
This book is a hard read and is overkill for a typical software developer. But it does provide a good overview in general on how to design algorithms. The typical job of business apps will not even use a fraction of the information in this book though. – Cervo Jan 2 '09 at 16:49
37  
> This book teaches you how to write code. I have to disagree. It teaches you algorithms, not how to implement them. Sedgewick's books are better about this. – Blaisorblade Jan 13 '09 at 3:22
9  
I have to disagree with most commentators (to date) - Without this book, or the rigorous way it teaches algorithms, I would've been hopelessly lost when the time came to move beyond "get data from server, transform and output in a nice html". When it came to writing algorithms, this book gave me the best tools for the job. The added bonus of having actual GOOD and understandable content is what puts this over the top (as opposed to "the art of programming" series). However, IMO, "how to create a hash map" is not as important as "how to think about creating a hash map". – Ran Biron May 3 '09 at 8:27
show 24 more comments
feedback

I personally think Design Patterns by the Gang of Four is a very useful book. It's not about the "meta" aspects of programming like so many of the other suggestions, but it emphasises encapsulating good programming techniques as patterns, and has since encouraged others to come up with new patterns and antipatterns to use in programming dialogue.

Now for a rider....

@kevin, @modesty: Great answers! If I could place a 3-vote like on uservoice, I'd gladly use it here.

To the naysayers who downmodded them, I say: please, grow a sense of humour! :-)

link
8  
For lurkers and archive (because modesty/Shawn's answer got deleted, and who knows if Kevin's will too): modesty/Shawn's answer is Lolita, and Kevin's is HTML for Dummies. :-) – Chris Jester-Young Sep 21 '08 at 9:33
7  
This book is good, but I've all too often been the victim of someone over-eager to apply the patterns it contains. – PeterAllenWebb Oct 16 '08 at 17:01
49  
I like the Gang of Four (GoF) book. For most beginners I would recommend the O'Reilly 'Head First Design Patterns' as it is a bit easier to digest than the GoF. The difference between the two is the GoF is written by very intelligent researchers and the Head First is written by very good teachers! – Danielb Mar 18 '09 at 15:45
63  
This is an awful book to give to a programmer who is just starting out. This book is for people who've already made factories and singletons and visitors and never knew what to call them. The jargon of patterns is as useful as the jargon baseball statistics to someone who has never played/watched baseball. A child first learning baseball doesn't need to understand a WHIP or batting average. Those are tools he will pick up as he becomes more familiar with the game. Even if it only gives him the knowledge that there is such a thing as a singleton, there are better books to start with. – jmucchiello Nov 8 '09 at 9:52
12  
@Chris: this book can also be dangerous to seasoned programmers. The main risk is what happened to some fellow programmer of mine : think backward. He picked a pattern at random (well, not really) and forced the problem to match it, instead of thinking of the real problem. There is nothing in this books to avoid this pitfall and it is more easy than it seems. Another related pitfall is considering the GoF book covered every possible design patterns, instead of just picked a selection of common ones. Also some patterns are nowaday considered harmfull, typically singleton. – kriss May 25 '10 at 13:36
show 14 more comments
feedback

I think I would have to recommend Refactoring: Improving the Design of Existing Code.

Refactoring: Improving the Design of Existing Code

link
125  
I have to agree, my favorite programming quotation comes from this book: "Any fool can write code that a computer can understand. Good programmers write code that humans can understand." - Martin Fowler – Justin Standard Dec 2 '08 at 19:31
6  
It sure changes the way you think – Leyu Jun 3 '09 at 12:46
5  
While I respect Martin Fowler, I don't think much of this particular book. The problem is that the book was written in part to prompt tool developers into adding refactoring tools. Refactoring in general is a good idea, but you only need a list of refactoring names if you need to know which option to select to get your tool to do it for you - otherwise you just need a mental model of how the code should be structured at the end. In C++, even now, refactoring tools aren't widespread or particularly powerful. – Steve314 Sep 24 '10 at 20:12
6  
@Steve314 Many of the refactoring tools that exists nowadays were written after this book. – OscarRyz Dec 1 '10 at 21:40
3  
Bought it. Sold it a week later. I'd never seen so much verbiage about so many trivial things. – user207442 Jun 16 '11 at 22:18
show 7 more comments
feedback

In podcast 12, Jeff and Joel list a myriad of recommended books. Personally though I highly recommend The Mythical Man-Month.

image

link
18  
I found this book interesting, but a little single minded. Make sure to get the "anniversary" edition, the author corrects many of the outdated principals in the additional chapters. – alumb Sep 16 '08 at 16:33
12  
I found it good but overrated too. – Jahanzeb Farooq Oct 8 '09 at 11:07
7  
This is a book that requires reading every other year or so by any software practitioner. There are excellent insights if you read carefully. – Xepoch Nov 2 '09 at 21:00
9  
While I can certainly see how it was groundbreaking for its time, I think that the author's presentation loses his audience. He assumes that the audience is familiar enough with projects such as OS/360 to immediately grasp his points about them, and metaphors are heavily Biblical. I'd argue that, as a Software Engineering book, it's in poor form in assuming the audience to be Christian, that it's showing its age and largely inaccessible to those who weren't in the industry at the time, and that its insight is now much better documented elsewhere. A classic, perhaps, but far from timeless. – T.R. Feb 28 '10 at 6:01
70  
I keep misreading the title as "The Mythical Man-Moth" which automatically makes me interested. – Zack The Human Mar 26 '10 at 5:46
show 8 more comments
feedback

The Art of Computer Programming if only for the effort Knuth put into it.

First Volume Hardcover

link
71  
Are there any people who read this? I guess this is what you call a book to use, not to read... – nojevive May 22 '09 at 21:51
14  
Upvoted just to get it above the silly zen book. Knuth's book is one I'll actually read and keep on my shelf. – Dietrich Epp Jun 2 '09 at 5:22
82  
@sakra: Trolling is an art. And if you read this book programming might become an art for you too. – Peter Coulton Sep 16 '09 at 16:29
52  
@sakra: Maybe you're doing it wrong ;-) – nikie Oct 2 '09 at 17:24
11  
I read it every night before bed. It makes such an interesting, smooth read - much like reading the manual to my Microwave – Chris S Oct 7 '09 at 22:01
show 18 more comments
feedback

I'm surprised no one's mentioned the Dragon Book by Aho et al. (or if it has been mentioned, I missed it).

Compilers (The Dragon Book) by Aho et al Newer Version

I will never forget the first edition's cover. This book made me realize just how magically awesome compilers truly are. :)

link
30  
Buy this book. Probably the best undergraduate text out there. Also, take compilers when doing an undergraduate Computing Science degree. It is often a hard course, but really worth it in the end. – alumb Sep 16 '08 at 16:38
11  
Absolutely. I think I learned more in that one semester of compilers that just about the rest of the program combined. And I still have that book on the shelf, too. – Electrons_Ahoy Oct 15 '08 at 17:07
3  
I agree, I have never had to write a compiler but out of all the courses I did for my degree Compiler Writing was my favourite and this book was probably why. – tpower Oct 16 '08 at 10:21
2  
I've got the second edition of this book, it's just mind-blowing. My favorite computing-related book. Not for everyone though, if you don't care about compilers, don't go for it. – Raoul Supercopter Jul 4 '09 at 9:21
12  
Everyone that claims they'll never use this stuff because they aren't writing compilers is missing out. Writing a compiler requires solving some of the most universal practical problems in programming. There are good, well-understood, general solutions to these problems, and any programmer will benefit from familiarity with them. And I'm not the only one who thinks so: steve-yegge.blogspot.com/2007/06/rich-programmer-food.html – Steve S Sep 22 '09 at 14:15
show 15 more comments
feedback

I know that Design Patterns by the Gang of Four is a standard text, but rather than try and read that brick of a book start with the easier Head-First Design Patterns, and once you have got your head around the basic principles, progress to the great GoF bible...

link
172  
I find the head-first series sickeningly unreadable. – Draemon Dec 18 '08 at 5:34
48  
I found Head-First Design Patterns very biased towards food based businesses, I'm not sure what they were trying to say about developers! – Antony Scott Mar 6 '09 at 21:42
24  
@Sylvain - it's not meant to be a reference book, it is merely an introduction to design patterns that I believe is easier to study than the GOF book. Yes, once you have got your head around design patterns use the GOF book as your reference... – Calanus Jun 23 '09 at 12:22
117  
Any techie book with a picture of an attractive female on the cover automatically makes me think that the publisher doesn't take their market seriously. – Ether Oct 12 '09 at 17:29
6  
@Mark Kadlec: ... if you like women with large heads. ;-) – harschware Jan 13 '10 at 23:50
show 25 more comments
feedback

For a truly deep read, I'd suggest Douglas Hofstadter's Gödel, Escher, Bach. He dives pretty deep into many of the issues that programmers face every day- recursion, verifiability, proof, and boolean algebra. Great read, a little off the beaten path, occasionally challenging, and extremely rewarding once you fight through it and process what you've read.

Godel-Escher-Bach Cover

link
12  
This is THE book that propelled me into a career in software development. Really timeless. – Guido Domenici May 5 '09 at 12:42
11  
This is one of the best books I have EVER read, funny and very insightful.. – Jamie Lewis Jun 7 '09 at 17:54
6  
This is one my favorite books of all time. – embdeddCoder Jul 8 '09 at 21:37
8  
This book will make you a better programmer, matematician, musician and philosopher all at once. I recomend this book to everyone I know, not only programmers. His other book, Metamagical Themas is also highly recomended. – Tirpen Oct 2 '09 at 20:01
9  
Very challenging, very rewarding. I call it one of the "head explody" kind of books, as in "Man's mind, once stretched by a new idea, never regains its original dimensions." - Oliver Wendell Holmes – Ether Oct 12 '09 at 17:47
show 19 more comments
feedback

Clean Code

Clean Code has a lot in common with Code Complete but it's more concise and practical with lots of clear examples.

link
44  
I'm judging thibook strictly by the cover: It's awesome! – Alex Baranosky Jul 31 '09 at 6:07
9  
+1: An excellent book! – TrueWill Sep 18 '09 at 3:15
9  
I found this book inspirational. It is a good book to recommend to developers who are starting to feel rundown managing a legacy code base and instills a sense of ownership and pride in refactoring it to make it "clean". – Gord Feb 23 '10 at 16:44
4  
+1: No book has made me think more about the code I write than this. – Johnsyweb May 17 '10 at 12:01
2  
This one really did make an immediate and drastic alteration to the way I wrote code. And I'm somebody who has had a long interest in "best practices". – rtpHarry Jan 5 '11 at 17:07
show 12 more comments
feedback

Effective C++ and More Effective C++

From the early days of my career, Scott Meyer's Effective C++ and later More Effective C++ both had an immediate impact on my programming ability. As a friend put it at the time, those books allow you to short cut the process of developing programming skills that otherwise would have taken years.

alt text

In the last year, the book with the biggest impact on my thinking has been The Cathedral and the Bazaar which taught me a lot about how the open source development process works and how to get rid of bugs from my code.

link
6  
+1 for Scott Meyer's "Effective"s (there's also "Effective STL") – orip Dec 5 '08 at 8:44
2  
The effective STL isn't quite such a breakthrough, there are generally fewer gotchas in STL than C++. – Martin Beckett Feb 3 '09 at 17:34
3  
@BillyONeal, true but the EffC++ books gave you a lot of insight you wouldn't have without a deep knowledge of C++. The STL errors can be summed up by "RTFM". The STL is confusing and complicated but it's documented confusing and complicated - the effective C++ books describes side effects you wouldn't have though of. – Martin Beckett Mar 26 '10 at 17:52
5  
This book is high on my list not only because it helped with C++, but it revolutionized the organization of programming books! Brilliantly done and massively influential. – Michael Easter Mar 27 '10 at 13:38
3  
This book is not on my list because it deals almost exclusively with enumerating and working around the deficiencies of C++, but treats them as though C++ problems are problems of computing itself. It is useful if you must use C++, but it suggests that the numerous and egregious faults of C++ are obstacles to computing in general. It is not a good book for learning how to program. And it makes a lot of really bad attempts at humor and folksiness. – Tim Schaeffer Jun 7 '10 at 19:50
show 6 more comments
feedback

I recommend CODE by Charles Petzold. In this age of tools and IDEs that abstract a lot of complexity away from the programmers, this one is an eye opener.

book cover

link
14  
I read this over the summer. It's a brilliant book that explores the digital revolution from the ground up. Lots of 'a-ha' moments are crammed into this gem. – tyshock Sep 24 '08 at 15:46
3  
The book every engeneer should read, not only programmer! – AnSGri Dec 14 '08 at 11:56
3  
I find it's useful for both managers (who aren't programmers) and increasingly new graduate programmers who don't seem to know whats under the hood. – Martin Beckett Feb 3 '09 at 17:32
3  
I think this is even more important than Code Complete... how can anyone code anything if they didn't understand how all the parts in the computer fits together?? ... When they've know how to work their tools is when they should continue on to readability and maintenance issues in Code Complete ... I just hate when people try to enforce all the rigorous practices on newbies without even telling them why and they are already struggling with solving the simple problems they've been tasked to do! – chakrit Aug 5 '09 at 20:58
3  
I bought this book based on this post. I just finished reading it a couple of days ago. Definitely well worth it. Thanks! – Jason Down Sep 2 '09 at 4:46
show 9 more comments
feedback

I really recommend programming pearls, it's got some amazing stuff in it, although I'm not ashamed to admit that I didn't understand half of it!

alt text

link
5  
Contains the clearest explanation of heapsort ever written. Which just shows how perfect the book is. – Loadmaster Nov 23 '09 at 3:15
27  
Matt - I can appreciate that you do not understand half of it. A great book will stretch your comprehension abilities. And as you change, your interpretation and understanding of a great book will change as well. Many great books are very difficult to understand, but the parts that are understood resonate deeply. – galaxywatcher Dec 21 '09 at 12:16
1  
This is a great book in the tradition of Bell Labs, and has an excellent explanation of the art of "back of the envelope" calculations that could be applied to any engineering principle. It also has a second follow-up volume, Confessions of a Coder. – Sabuncu Nov 26 '10 at 11:00
show 4 more comments
feedback

Working Effectively with Legacy Code

by Michael Feathers. I don't think that any book has affected my opinion of how I code more than this one. It explicitly tells you how to deal with someone elses code but implicitly you'll learn what to avoid (and why).

Edit: Makes sense now.

alt text

link
4  
I agree - I wish I had read that book earlier. – David Grant Oct 13 '08 at 14:21
17  
Agree. Too many developers talk about writing software with a clean slate. But I'd think that almost all developers spend some time eating other people's dog food (or is that dog poo?). – Bernard Dy Dec 23 '08 at 16:23
7  
+1. I've worked with a PM who was obsessed with the "clean slate" thing - even keeping new recruits away from the old codebase in case they picked up bad habits from it. The company is now stuck with a bunch of half-functional rewrites but no improvement in functionality, and is dying. – finnw Jan 26 '09 at 16:26
1  
It's funny, but it seems like whenever I'm told I'll be reusing code from another project, the reuse always ends up being a "refactoring" per say...like I inherit C++ code that is clearly written by a C programmer who completely violates the single responsibility principle. In the end, the class structure might contain similar logical code, but it looks like a completely different (and object oriented) beast. – Gary Feb 24 '10 at 12:34
1  
I hope this one gets less and less important over time but it's pretty important, now. – MaxGuernseyIII Mar 23 '10 at 6:36
show 5 more comments
feedback

For me the most influencal book is "Zen and the Art of Motorcycle Maintenance" by Robert Pirsig. It is all about no matter what you do, always strive for perfection, know your tools and task at hand inside-out, and, most of all, have fun (because if you are having fun, everything automatically leads to better results).

alt text

This book has a more recent edition (2000).

Two great long-quotes from it

Quality -- you know what it is, yet you don't know what it is. But that's self- contradictory. But some things are better than others, that is, they have more quality. But when you try to say what the quality is, apart from the things that have it, it all goes poof! There's nothing to talk about. But if you can't say what Quality is, how do you know what it is, or how do you know that it even exists? If no one knows what it is, then for all practical purposes it doesn't exist at all. But for all practical purposes it really does exist. What else are the grades based on? Why else would people pay fortunes for some things and throw others in the trash pile? Obviously some things are better than others -- but what's the ``betterness''? -- So round and round you go, spinning mental wheels and nowhere finding anyplace to get traction. What the hell is Quality? What is it?

 

Mountains should be climbed with as little effort as possible and without desire. The reality of your own nature should determine the speed. If you become restless, speed up. If you become winded, slow down. You climb the mountain in an equilibrium between restlessness and exhaustion. Then, when you're no longer thinking ahead, each footstep isn't just a means to an end but a unique event in itself. This leaf has jagged edges. This rock looks loose. From this place the snow is less visible, even though closer. These are things you should notice anyway. To live only for some future goal is shallow. It's the sides of the mountain which sustain life, not the top. Here's where things grow.

Get it here

link
8  
Great choice. This book has influenced my programming in more ways than I can count. I keep trying to explain to people around me about "Gumption loss", but they don't seem able to get it unless they read the book. – endian Oct 21 '08 at 16:33
72  
You guys have drank some wacky kool aid. I've read this book and it's value to programmers specifically is weak at best. Still a good book though. – Factor Mystic Jun 7 '09 at 23:39
47  
-1: Irrelevant. And if you're going to post philosophy books, at least post good ones. – TrueWill Sep 18 '09 at 3:13
17  
Cool title, overrated content. – UpTheCreek Oct 22 '09 at 12:27
19  
Peter M: "Having read this book 2 or 3 times, my opinion is that is not worth the paper that it is printed on." So, the first two times, the book was worth re-reading. Then BANG! Completely worthless. – Ralph Lavelle Dec 1 '09 at 6:21
show 16 more comments
feedback

Peopleware

Demarco and Lister demonstrate that the major issues of software development are human, not technical. Their answers aren't easy--just incredibly successful. New second edition features eight all-new chapters.

alt text

link
2  
I discovered the Psychology of Computer Programming (without double "of") from my university library. The library lady had to bring it to me from somewhere down the celler - nobody had borrowed it for ages. I read it, and thought, what is wrong with people - this book is just magnificent! – Rene Saarsoo Feb 8 '09 at 20:17
22  
It's quite a pity almost everyone dismisses the "developers need a quiet working environment" chapters. :( – Ether Oct 12 '09 at 17:31
4  
While I agree with what DeMarco and Lister wrote, it was very frustrating for me to read. I am not in a position to implement any of the suggestions, such as private offices. Thus I got very little of value from this book. – aaaa bbbb Oct 22 '10 at 19:02
2  
@Ether not really, Agile practices like pairing aren't wildly quiet. But what's needed is time to think without being disturbed by things outside the flow, and that's harder to do. People seem to think that because you're talking you can be interrupted. We've also started using pomodoro where I work, and if the counter's counting down then you are asked not to interrupt. Kind of works. I think the lone person in the quiet isn't that productive, but I admit I do use pink noise and noise-cancelling headphones sometimes. :) – Ghoti Mar 9 '11 at 19:00
show 5 more comments
feedback

Coders at Work by Peter Seibel. A very influential book to learn from the experience of some of the top names in the field, how they think and work.

alt text

link
6  
In case anyone missed it: the author was the guest on SO podcast #69 (blog.stackoverflow.com/2009/09/podcast-69) discussing this book and other things – Jonik Oct 7 '09 at 18:45
2  
I'm only halfway through and it's already on my list. – easement Oct 12 '09 at 16:07
2  
I just finished it a couple of days ago. It has restored my faith in the superiority of the human brain over corporate systems. – Christopher Mahan Nov 8 '09 at 9:52
4  
One of the best aspects of this is that it puts down in print some of the foundational aspects of computing that are mostly an oral history. One thing that isn't really made explicit is that this book is very hevily slanted to the old bearded unix hacker orgins of computing. Very little of it talks about current work. Not that this is a bad thing--just that the book IMHO should be more upfront about what it's about. Lots of lisp, lots of C, lots of reverence Knuth. – Kevin Won Jan 30 '10 at 19:52
5  
I found this book kind of dry. Some coders were more interesting than others. Much of it droned on and on though, even for the guys I found interesting. – Cervo Aug 6 '10 at 21:18
show 4 more comments
feedback

ok, this is a slightly off-center answer, but believe it or not, it was on the reading list for a compsci course way back in the day. An excellent role model and a good book about curiosity.

Surely You're Joking, Mr. Feynman!

link
1  
it's a really cool book. Richard Feynman is a character :D – Alex Baranosky Jul 31 '09 at 6:05
14  
Yes, I also really like this book. Great stories in there. Not really programming related, though. – Peter Stuifzand Sep 30 '09 at 20:25
2  
I love Feynman. Hilarious fellow. – wesgarrison Dec 21 '09 at 15:42
8  
+100, excellent book – Alex May 1 '10 at 18:52
5  
Yes, it's a great book by Feinman. There is a chapter where Feynman is put in charge of the department that runs the computers (pre transistor machines), and how they worked to solve computational difficulties (one machine per operation). That was fun. Other then that it's really inspirational to read about how Feynman approaches everything that he does. It's amazing how he keeps things simple at such lofty heights. – HaskellElephant Jul 11 '10 at 14:10
show 8 more comments
feedback

Effective Java 2ed will teach you how to write beautiful and effective code. It's a Java book, but there are many cross-language concepts.

link
12  
+1 A great book, probably my favorite Java book. Not "most influential", but has much needful tactical advice on how to write elegant and stable Java code. Bloch is a master. – Dave Sims Dec 14 '09 at 18:04
4  
Cross-language for any value of Object Oriented Language. But for Java programmers, it's an absolute must-have – Steen Mar 9 '10 at 21:47
4  
the single most important book for java developers. not to learn the language, but to learn how to use it – Sean Patrick Floyd May 31 '10 at 7:48
2  
This is really a book about API design, cleverly disguised as a book about the Java programming language. I enjoyed it so much, I read it twice. – Don May 30 '11 at 15:42
show 4 more comments
feedback

Surprised that no one has mentioned Martin Fowler's Patterns of Enterprise Application Architecture yet

alt text

link
9  
+1: You could just read anything by fowler and come out winning. – SnOrfus Nov 23 '09 at 18:18
3  
+1 The influence of this book on current practice is staggering. – Dave Sims Dec 14 '09 at 18:02
2  
Its a great book. But, for me not the answer to the question: "tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?". You already have to be pretty clued up and experienced about programming to understand it fully. – JW. Jan 13 '11 at 5:18
show 3 more comments
feedback

I agree with Cristian, I think we should not forget SICP, I think every programmer should use it, al least as an exercise, you can complement it with;

The Little Schemer
alt text and

The Seasoned Schemer

alt text

I also include in the reading list Code Complete, Applying UML and Patterns: An Introduction to Object-Oriented Analysis and Design and the Unified Process and Design Patterns and Design Patterns: Elements of Reusable Object-Oriented Software

link
1  
I'd have liked to be taught in LISP in my beginnings – nmiranda Aug 13 '09 at 17:47
1  
I picked up The Little Schemer because it had such high praise, and was disappointed. It certainly has a unique format, but it can be a pain to navigate. – Daniel Yankowsky Oct 11 '09 at 5:14
2  
The Little Schemer is one of my favorite CS books of all time and I definitely think it deserves to be higher in the list. The amount of power it delivers in such brevity is amazing. – rcampbell Oct 31 '09 at 19:46
4  
Schemer Series actually taught me how to program. If it werent for this book (and HtDP), I would still be writing spaghetti code, I would still be jumping to write that first line of code without thinking about all the actual design steps, I would have never groked SICP , I would have never appreciated the beauty of Scheme and functional programming , I would have never learned how to think recursively, I would have never appreciated the power of abstraction. Like they say in the forward "The price [was] worth paying for the sheer joy of the discovery process, the elegance of the result...] – kunj2aan Dec 7 '09 at 15:40
show 2 more comments
feedback

Why's (Poignant) Guide to Ruby !!!!!

Chunky bacon.

link
18  
I enjoyed the beginning, but as I got further into it, the less helpful it was. – Phoenix Oct 10 '08 at 7:56
49  
It's probably fun to read if you're not already a programmer, but it's tedious if you're already a programmer and just want to know the overall language syntax (in which case, the PickAxe is a lot more useful) – Simon Howard Oct 18 '08 at 17:03
12  
That's two hours I'll never get back... – Michael Myers Dec 18 '08 at 20:04
17  
That book was written by a raving lunatic. I loved it. ;) – Alex Baranosky Jul 31 '09 at 5:31
12  
@mmyers: That's two hours I'll never give back. – Caffeine May 7 '10 at 9:37
show 12 more comments
feedback

book cover

The Inmates Are Running The Asylum: Why High Tech Products Drive Us Crazy and How to Restore the Sanity, or any of Alan Cooper's books.

Because most programmers produce more WTFs/minute in the user interface than they do in the source code.

link
7  
Can't upvote this enough. – Anderson Imes Oct 2 '09 at 18:51
4  
I agree with Anderson - this deserves at least 3 up votes. Brilliant! – Stuart Helwig Feb 11 '10 at 23:20
1  
Definitely the best book I ever read on IT. I have read all the others such as Steve McConnell, Knuth, and many more, but this one beats them all! But not a book for nerds, as this is a book about how to make great commerical products, not hobby projects. – Zubair Feb 18 '10 at 10:42
1  
Great. Also a bit irritating and confrontational here and there. Which is exactly why it is so good. – Teun D Jul 9 '10 at 12:07
show 3 more comments
feedback

@lurks

The Art Of UNIX Programming by Eric S. Raymond

It is useful regardless operating system you use.

link
4  
People get turned off by some of Raymond's antics, but this is a damn good book. I keep a printout of the 17 basics of Unix philosophy taped above my desk. They are invaluable (at least the ones that have aged well). The best part is it's free, search for it. – rshepherd Oct 31 '10 at 3:09
4  
Also available online faqs.org/docs/artu Love this one: Rule of Representation: Fold knowledge into data, so program logic can be stupid and robust. – Yuval Rimar Jan 14 '11 at 22:18
show 5 more comments
feedback

Many of the books already mentioned opened my eyes and influenced me, but a book every programmer should read is Test-Driven Development by Example. It really showed me the importance of unit tests and TDD and got me started very quick.

cover

link
11  
I don't care how good or elegant your code is. If you don't have tests you might as well have not written the code. This book should be much higher than it is. People talk about writing software that users like (Inmates run the asylum) or really effective code that is of good design and robust (Effective *) but it all really doesn't matter if your software is consistently buggy. – Adam Gent Jul 1 '10 at 19:01
3  
I think it speaks volumes about our industry that this entry comes so late and with so few votes. Testing is much more important than anything else we do, yet it's the first thing that get's neglected. – Aaron Digulla Aug 26 '10 at 7:32
1  
I really think TDD is overrated crap that makes bad developers write bad code that works. I really don't think this is worth time, but I'll look for a PDF somewhere and give it a chance to prove me wrong. – Camilo Martin Nov 18 '10 at 17:13
2  
@Camilo, I agree that the TDD Koolaid is getting too strong these days. But the book is still very good. Kent Beck does not overstate the importance and role of unit testing the way so many these days do. – Charlie Flowers Mar 1 '11 at 1:05
show 3 more comments
feedback

Practices of an Agile Developer

Working in the Real World.

Practices of an Agile Developer Book Cover

link
1  
It's similar, but focus more on the "practices". Venkat does a great job and if you ever have the opportunity to hear him speak ... do it! =) – mattruma May 5 '09 at 12:31
6  
I thought this book sucked. It is full of fluff about how each practice should feel. To me this book felt more like a talk from an inspirational speaker than a useful technical manual. – joeforker Sep 9 '09 at 20:06
1  
Definitely loved this book, and it paid such great dividends to me as a programmer I bought it for four other teammates -- as for how things should feel, their comments made perfect sense to me -- intuition and aesthetics are crucial programming tools, IMO. – JohnJ Feb 11 '11 at 17:08
show 5 more comments
feedback

Strunk, William. Elements of Style

elements of style

link
33  
I heard someone talking about this book on NPR: "When it comes to 'shall' and 'will,' Strunk and White gives the following example: 'A swimmer in distress cries, "I shall drown; no one will save me!" But a suicide says, "I will drown; no one shall save me!" And I say, "You two pedantic know-it-alls deserve to drown."'" – Beska Aug 14 '09 at 18:27
3  
+1 Ha! So many parallels between good coding and good writing. – Dave Sims Dec 14 '09 at 18:06
9  
@Beska: In the spirit of pedantry, you should use single quotes on the inner quote of a quoted quote. ;) – Geoff Feb 26 '10 at 16:47
10  
A good reference on the problems with "The elements of Style" is itre.cis.upenn.edu/~myl/languagelog/archives/001604.html – Zayenz May 17 '10 at 8:29
10  
This is not a good book. Read this critique, you'll enjoy it: chronicle.com/article/50-Years-of-Stupid-Grammar/25497 – Charlie Flowers Mar 1 '11 at 1:02
show 3 more comments
feedback
1 2 3 4 5 11

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