What is the single most influential book every programmer should read? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T17:53:09Z http://stackoverflow.com/feeds/question/1711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read 545 What is the single most influential book every programmer should read? NotMyself 2008-08-04T23:50:22Z 2009-11-08T08:48:02Z <p>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?</p> <p>I expect this list to be varied and to cover a wide range of things. For me, the book would be Code Complete. After reading that book, I was able to get out of the immediate task mindset and begin to think about the bigger picture, quality and maintainability.</p> <p>Suggest your programming books</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1713#1713 693 Answer by Justin Standard for What is the single most influential book every programmer should read? Justin Standard 2008-08-04T23:51:07Z 2009-09-09T19:53:57Z <p><a href="http://cc2e.com/" rel="nofollow">Code Complete by Steve McConnell</a></p> <ul> <li>"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." --<a href="http://www.joelonsoftware.com/navLinks/fog0000000262.html" rel="nofollow">Joel</a> (<em>NB imo there's more to it than semantics</em>)</li> </ul> <p><a href="http://cc2e.com/" rel="nofollow"><img src="http://cc2e.com/%5Fimg/cc2e-cover-small.gif" alt="Code Complete 2" /></a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1715#1715 2 Answer by saniul for What is the single most influential book every programmer should read? saniul 2008-08-04T23:51:58Z 2008-08-04T23:51:58Z <p>+1 for Code Complete</p> <p>Also: <a href="http://beta.stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer" rel="nofollow">What books would you recommend for a beginning Software Developer?</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1719#1719 149 Answer by John Downey for What is the single most influential book every programmer should read? John Downey 2008-08-04T23:53:17Z 2009-10-01T18:18:51Z <p>In <a href="http://blog.stackoverflow.com/2008/07/podcast-12/" rel="nofollow">podcast 12</a>, Jeff and Joel list a myriad of recommended books. Personally though I highly recommend <a href="http://rads.stackoverflow.com/amzn/click/0201835959" rel="nofollow">The Mythical Man-Month</a>. </p> <p><img src="http://upload.wikimedia.org/wikipedia/en/f/fd/Mythical%5Fman-month%5F%28book%5Fcover%29.jpg" alt="image" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1723#1723 -2 Answer by NotMyself for What is the single most influential book every programmer should read? NotMyself 2008-08-04T23:55:29Z 2008-08-04T23:55:29Z <p>John,</p> <p>I am curious, why do you feel every developer should read The Mythical Man-Month? It is on my reading list but I have yet to read it.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1727#1727 105 Answer by hemil for What is the single most influential book every programmer should read? hemil 2008-08-05T00:03:22Z 2009-06-02T14:39:56Z <p>I recommend <a href="http://www.charlespetzold.com/code/index.html" rel="nofollow">CODE by Charles Petzold</a>. In this age of tools and IDEs that abstract a lot of complexity away from the programmers, this one is an eye opener.</p> <p><img src="http://www.charlespetzold.com/code/code.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1729#1729 154 Answer by Peter Coulton for What is the single most influential book every programmer should read? Peter Coulton 2008-08-05T00:07:28Z 2009-02-23T08:09:45Z <p><a href="http://www-cs-faculty.stanford.edu/~uno/taocp.html" rel="nofollow">The Art of Computer Programming</a> if only for the effort Knuth put into it.</p> <p><img src="http://upload.wikimedia.org/wikipedia/en/6/62/ArtOfComputerProgramming.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1731#1731 5 Answer by shsteimer for What is the single most influential book every programmer should read? shsteimer 2008-08-05T00:08:37Z 2008-08-05T00:08:37Z <p>@John, NotMyself</p> <p>+1 for <a href="http://rads.stackoverflow.com/amzn/click/0201835959" rel="nofollow">Brooks' MMM</a></p> <p>Its a classic book with many lessons regarding software projects that, though written over 30 years ago, are still relevant today. Brooks' writing style is easy to read and very friendly, and though there are parts where I find myself rolling my eyes at the datedness, there are many more times when I find my self nodding in agreement to the fact that what he is saying is still very relevant. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1735#1735 587 Answer by Xenph Yan for What is the single most influential book every programmer should read? Xenph Yan 2008-08-05T00:15:14Z 2009-09-09T19:55:23Z <p>The <a href="http://www.pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow">Pragmatic Programmer</a>; it's more about your trade, and how to apply it than the code per se, but it's still very good.</p> <ul> <li>"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." --<a href="http://www.joelonsoftware.com/navLinks/fog0000000262.html" rel="nofollow">Joel</a></li> </ul> <p><a href="http://www.pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow"><img src="http://www.pragprog.com/images/covers/190x228/tpp.jpg?1184184147" alt="The Pragmatic Programmer" /></a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1737#1737 -1 Answer by John Downey for What is the single most influential book every programmer should read? John Downey 2008-08-05T00:22:02Z 2008-08-05T00:22:02Z <p>@NotMyself</p> <p>It contains a lot of really useful information on how to make sure your software project doesn't fail and what tends to trip up even the best development teams.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1743#1743 120 Answer by Chris Jester-Young for What is the single most influential book every programmer should read? Chris Jester-Young 2008-08-05T00:33:29Z 2009-10-07T21:37:34Z <p>I personally think <em><a href="http://c2.com/cgi/wiki?DesignPatternsBook" rel="nofollow">Design Patterns</a></em> 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.</p> <p><img src="http://images.amazon.com/images/P/0201633612.01.LZZZZZZZ.jpg" width="200"></p> <p>Now for a rider....</p> <p>@kevin, @modesty: Great answers! If I could place a 3-vote like on uservoice, I'd gladly use it here.</p> <p>To the naysayers who downmodded them, I say: please, grow a sense of humour! :-)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1751#1751 37 Answer by Orion Edwards for What is the single most influential book every programmer should read? Orion Edwards 2008-08-05T00:41:27Z 2009-09-30T19:03:34Z <p><a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's (Poignant) Guide to Ruby</a> !!!!!</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1785#1785 31 Answer by yoliho for What is the single most influential book every programmer should read? yoliho 2008-08-05T01:22:46Z 2008-08-07T07:33:43Z <p>I have a different answer -- I really liked Joel's <a href="http://www.joelonsoftware.com/articles/BestSoftwareWriting.html" rel="nofollow"><strong>Best Software Writing I</strong></a>. </p> <p>Maybe that's just me... but that collection opened my eyes to the "bigger picture" and inspired me to think of my programming as an art/craft.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1788#1788 2 Answer by nlucaroni for What is the single most influential book every programmer should read? nlucaroni 2008-08-05T01:25:46Z 2008-08-05T01:25:46Z <p>@Peter Coulton -- you don't read Knuth, you study it.</p> <p>For me, and my work... <em>Purely Functional Data Structures</em> is great for thinking and developing with functional languages in mind.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/2059#2059 11 Answer by Graphain for What is the single most influential book every programmer should read? Graphain 2008-08-05T10:08:31Z 2008-08-13T03:27:21Z <p>The <a href="http://www.pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow" title="Unison Home Page">Pragmatic Programmer</a> after 12 months programming (when you can code as easy as you write). <a href="http://cc2e.com/" rel="nofollow">Code Complete</a> after ~6 months industry experience.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/2602#2602 2 Answer by Mario Marinato -br- for What is the single most influential book every programmer should read? Mario Marinato -br- 2008-08-05T17:28:24Z 2008-08-05T17:28:24Z <p>Code Complete is the number one choice, but I'd also cite Gang of Four's Design Patterns and Craig Larman's Applying UML and Patterns.</p> <p>The Timeless Way of Building, by Christopher Alexander, is another great one. Even though it's about archtecture, it's included in the bibliography of many great programming books I have already read.</p> <p>Another one, from which I'm learning lots of new things, is Data Access Patterns, by Clifton Nock.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/2604#2604 1 Answer by marked for What is the single most influential book every programmer should read? marked 2008-08-05T17:35:09Z 2008-08-05T17:35:09Z I am going to have to say Pragmatic Programmer. It gives the best overview for software developers/engineers. I found the book very useful starting out, and still after a few years of professional work. http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/2606#2606 11 Answer by bcwood for What is the single most influential book every programmer should read? bcwood 2008-08-05T17:38:01Z 2008-08-15T23:55:28Z <p>It depends on exactly what purpose you're aiming for - I like <a href="http://cc2e.com/" rel="nofollow" title="Araxis Merge">Code Complete</a> for pure programming, and <a href="http://www.sensible.com/buythebook.html" rel="nofollow">Don't Make Me Think</a> is a great book on UI design.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/2689#2689 46 Answer by Patrick McElhaney for What is the single most influential book every programmer should read? Patrick McElhaney 2008-08-05T18:45:56Z 2009-05-05T12:35:42Z <p><img src="http://books.google.com/books?id=04cFCVXC%5FAUC&amp;printsec=frontcover&amp;img=1&amp;zoom=1&amp;sig=ACfU3U1%5FMkodYX%5FVNtqPYDpTQmjLv8%5Fl6A" alt="book cover" /></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0672326140" rel="nofollow">The Inmates Are Running The Asylum: Why High Tech Products Drive Us Crazy and How to Restore the Sanity</a>, or any of Alan Cooper's books. </p> <p>Because most programmers produce more WTFs/minute in the user interface than they do in the source code. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3116#3116 79 Answer by Wolfbyte for What is the single most influential book every programmer should read? Wolfbyte 2008-08-06T06:00:13Z 2009-10-07T21:58:19Z <h2><a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> </h2> <p>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).</p> <p>Edit: Makes sense now.</p> <p><img src="http://ecx.images-amazon.com/images/I/51RCXGPXQ8L.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3138#3138 102 Answer by Calanus for What is the single most influential book every programmer should read? Calanus 2008-08-06T07:21:22Z 2009-10-01T19:46:25Z <p>I know that <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a> by the Gang of Four is a standard text, but rather than try and read that brick of a book start with the easier <a href="http://rads.stackoverflow.com/amzn/click/0596007124" rel="nofollow">Head-First Design Patterns</a>, and once you have got your head around the basic principles, progress to the great GoF bible... </p> <p><img src="http://covers.oreilly.com/images/9780596007126/cat.gif" alt="Image" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3264#3264 180 Answer by huseyint for What is the single most influential book every programmer should read? huseyint 2008-08-06T10:26:16Z 2009-10-05T23:09:35Z <p>What about putting book image covers here, just the text is kinda'...boring.</p> <p><a href="http://cc2e.com/" rel="nofollow"><img src="http://cc2e.com/%5Fimg/cc2e-cover-small.gif" alt="Code Complete 2" /></a> <a href="http://www.pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow"><img src="http://www.pragprog.com/images/covers/190x228/tpp.jpg?1184184147" alt="The Pragmatic Programmer" /></a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3279#3279 7 Answer by Vaibhav for What is the single most influential book every programmer should read? Vaibhav 2008-08-06T10:59:37Z 2009-10-02T19:46:08Z <p><a href="http://rads.stackoverflow.com/amzn/click/0805353402" rel="nofollow">Object-Oriented Analysis and Design with Applications</a> by Grady Booch.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3433#3433 2 Answer by mando for What is the single most influential book every programmer should read? mando 2008-08-06T14:12:36Z 2008-08-06T14:12:36Z <p>@NotMyself,</p> <p>The Mythical Man Month tells a great story about the common themes of delivering software: what works, what doesn't, etc. It's amazing that the book is 30 years old and is still highly relevant.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/4947#4947 1 Answer by Teifion for What is the single most influential book every programmer should read? Teifion 2008-08-07T16:45:33Z 2008-08-07T16:45:33Z <p><a href="http://www.biblegateway.com/" rel="nofollow">The Bible</a>, followed by <a href="http://rads.stackoverflow.com/amzn/click/0671027034" rel="nofollow">How to win friends and influence people</a>. Neither are specific to any field but they are the two books that have had the biggest (good) impact on my life.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/5545#5545 3 Answer by Cristian for What is the single most influential book every programmer should read? Cristian 2008-08-08T01:32:03Z 2008-08-08T01:32:03Z <p>I can't believe no one's mentioned Structure and Interpretation of Computer Programs (SICP). It's not a beginner's (as in it shouldn't be the first programming book you read) but it's been quite influential to me. This book explains why concepts like design patterns, high cohesion and low coupling are good things. On top of that you will learn why being able to pass around functions as arguments and return values is a great asset. You'll never program the same way after you grasp this concept.</p> <p>Code Complete is a great book, but I would say it's a secondary book. You can't be a great programmer if you don't know how to program and Code Complete doesn't teach you that. Once you know the important concepts you can start applying the lessons in Code Complete. SICP and Code Complete are completely different books. In fact, reading both is probably the biggest one-two punch I can suggest to programmers.</p> <p>I used SICP in my college course so I'm not sure how it would be as teach-yourself book, but I've read it since college and it's written very clearly and should be accessible to anyone with some knowledge of programming.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/6060#6060 1 Answer by BrianLy for What is the single most influential book every programmer should read? BrianLy 2008-08-08T15:16:22Z 2008-08-08T15:16:22Z <p><a href="http://netlib.bell-labs.com/cm/cs/pearls/" rel="nofollow">Programming Pearls</a> by Jon Bentley.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/6107#6107 10 Answer by Tim Sullivan for What is the single most influential book every programmer should read? Tim Sullivan 2008-08-08T16:02:15Z 2008-08-08T16:02:15Z <p>I'm going to go a different route than the other answers so far...</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0141000511" rel="nofollow">Hackers: Heroes of the Computer Revolution</a>. It's an informal history of computers that really gives you an amazing feel for how this whole "computer culture" formed. It had a very powerful effect on me when I read it, oh, sometime around 1988.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/8333#8333 2 Answer by Mike Woodhouse for What is the single most influential book every programmer should read? Mike Woodhouse 2008-08-11T23:17:09Z 2008-08-11T23:17:09Z <p>The first edition of <em>Code Complete</em> was hugely influential in its time. The second edition was somehow, well, annoying. From his initial assertion that he had not expected to have to update the book at all, through his (dubious) claim to have pretty much invented Extreme Programming, the book just didn't deliver a real update to the original. Or maybe it's just that I was a decade older?</p> <p>I don't think <em>MMM</em> would carry as much weight at the outset of one's career as it does when one has some personal experience to provide context. And the same, but in a different way, applies to another favourite, <em>Refactoring</em>.</p> <p>I think if I had to choose one book to make the most beneficial difference in someone else's programming career, it would be <em>The Pragmatic Programmer</em>.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/8349#8349 2 Answer by bruceatk for What is the single most influential book every programmer should read? bruceatk 2008-08-11T23:52:03Z 2008-08-11T23:52:03Z <p>I've been arounda while, so most books that I have found influential don't necessarily apply today. I do believe it is universally important to understand the platform that you are developing for (both hardware and OS). I also think it's important to learn from other peoples mistakes. So two books I would recommend are:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0130828629" rel="nofollow">Computing Calamities</a> and <a href="http://rads.stackoverflow.com/amzn/click/1590597214" rel="nofollow">In Search of Stupidity: Over Twenty Years of High Tech Marketing Disasters</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/8942#8942 21 Answer by Shane O'Grady for What is the single most influential book every programmer should read? Shane O'Grady 2008-08-12T15:07:44Z 2009-10-02T18:23:33Z <p>I recommend <a href="http://www.microsoft.com/mspress/books/1024.aspx" rel="nofollow">Writing Solid Code</a>. Old, but still very much worth a read.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/9221#9221 7 Answer by booboojeebies for What is the single most influential book every programmer should read? booboojeebies 2008-08-12T20:39:47Z 2008-08-12T20:39:47Z <p><a href="http://gettingreal.37signals.com/" rel="nofollow" title="PyXML">Getting Real</a> by <a href="http://www.37signals.com/svn/" rel="nofollow">37 Signals</a>. It doesn't matter if you don't "ship" something at the end of the day.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13084#13084 0 Answer by Grzegorz Gierlik for What is the single most influential book every programmer should read? Grzegorz Gierlik 2008-08-16T10:13:08Z 2008-08-16T10:13:08Z <p>For me this is <a href="http://netlib.bell-labs.com/cm/cs/pearls/" rel="nofollow" title="Programming Pearls">"Programming Pearls</a> by Jon Bentley. </p> <p>It's about <strong>the most important thing</strong> -- identify the real problem and solve it in the simplest way.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13085#13085 20 Answer by Cros for What is the single most influential book every programmer should read? Cros 2008-08-16T10:19:06Z 2008-08-16T10:19:06Z <p>I found <a href="http://rads.stackoverflow.com/amzn/click/020161586X" rel="nofollow" title="Programming Pearls">The Practice of Programming</a> a very good read.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13281#13281 14 Answer by InSciTek Jeff for What is the single most influential book every programmer should read? InSciTek Jeff 2008-08-16T19:02:43Z 2009-02-13T13:00:57Z <p>For programming, without question, the "<em>correct</em>" answer is <em>Code Complete</em>. This book is really unparallelled in setting a framework of thought around a disciplined approach to the actual construction of code. McConnell was able to do this in a way that was largely agnostic to language of implementation and even in the types of systems the programmer is working on...useful stuff to anyone who spends any part of their day actually writing code.</p> <p>Code Complete is also noteworthy in that this book was really the first to tackle only the construction aspects coding completely and while followed with other books by other authors, I believe Code Complete still stands as the most ambitious and successful in convincing you the practices that Steve advocates are paramount to successful programming.</p> <p>To throw in another book by Steve McConnell, I think the book Rapid Development is equally important. While this book is somewhat less unique in the subject matter of running successful development teams, it is equally fun to read as Code Complete and no less important to programming project team leaders.</p> <p><em>Code Complete</em> for the good of the individual. <em>Rapid Development</em> for the good of the team.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13298#13298 8 Answer by popopome for What is the single most influential book every programmer should read? popopome 2008-08-16T19:42:37Z 2008-08-16T19:42:37Z <p><a href="http://rads.stackoverflow.com/amzn/click/0451527747" rel="nofollow" title="S">Alice's Adventures in Wonderland</a> Best programmers have read the book!</p> <ul> <li>GeraldWeinberg - <a href="http://dn.codegear.com/article/30051" rel="nofollow" title="screenshot"><a href="http://dn.codegear.com/article/30051" rel="nofollow">http://dn.codegear.com/article/30051</a></a></li> <li>Alan J. Peril - <a href="http://www-pu.informatik.uni-tuebingen.de/users/klaeren/epigrams.html" rel="nofollow" title="Effective Java 2nd Edition"><a href="http://www-pu.informatik.uni-tuebingen.de/users/klaeren/epigrams.html" rel="nofollow">http://www-pu.informatik.uni-tuebingen.de/users/klaeren/epigrams.html</a></a></li> </ul> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13308#13308 2 Answer by Mike Heinz for What is the single most influential book every programmer should read? Mike Heinz 2008-08-16T19:51:48Z 2008-08-16T19:51:48Z <p>I'm going old school with this: I think the most influential book on programming ever written is <a href="http://en.wikipedia.org/wiki/The_Art_of_Computer_Programming" rel="nofollow" title="S">The Art of Computer Programming</a>.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13332#13332 219 Answer by Martin for What is the single most influential book every programmer should read? Martin 2008-08-16T20:13:34Z 2009-10-10T04:59:18Z <p>I think I would have to recommend <strong><a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring: Improving the Design of Existing Code</a></strong>.</p> <p><img src="http://2020ok.com/img/1/41191.jpg" alt="Refactoring: Improving the Design of Existing Code" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13669#13669 48 Answer by Gustavo for What is the single most influential book every programmer should read? Gustavo 2008-08-17T15:27:57Z 2009-10-07T21:56:54Z <h2><a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">Peopleware</a></h2> <p>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.</p> <p><img src="http://www.badlanguage.net/wp-content/uploads/2007/07/image2.png" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13672#13672 7 Answer by Gustavo for What is the single most influential book every programmer should read? Gustavo 2008-08-17T15:29:51Z 2008-08-17T15:29:51Z <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">Peopleware</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0201835959" rel="nofollow">Mythical Man Month</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0932633420" rel="nofollow">Psychology of Computer of Programming</a></li> </ul> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13687#13687 202 Answer by Ran Biron for What is the single most influential book every programmer should read? Ran Biron 2008-08-17T15:54:57Z 2008-08-17T15:54:57Z <p><a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Introduction to algorithms (Cormen, Leiserson, Rivest, Stein)</a> - Code Complete teaches you how to program correctly, mythical man-month teaches you how to manage correctly, Design pattern teaches you how to design correctly...</p> <p>This book teaches you how to write code.</p> <p><img src="http://ecx.images-amazon.com/images/I/41WDWECWVCL._SL500_AA240_.jpg" alt="Introduction to algorithms cover image" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/14687#14687 14 Answer by Ashwin for What is the single most influential book every programmer should read? Ashwin 2008-08-18T14:27:47Z 2008-08-18T14:27:47Z <p><a href="http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)" rel="nofollow">The C Programming Language</a>. Seriously!</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/15143#15143 0 Answer by Darryl Braaten for What is the single most influential book every programmer should read? Darryl Braaten 2008-08-18T19:54:49Z 2008-08-18T19:54:49Z <p>NotMyself,</p> <p>Not John, but answering you anyway. :) </p> <p>Mythical Man-Month is the definitive text on projects going wrong. How it happens, what you can do to fix it, what you can't do to fix it. Since it is a classic a lot of people talk about it, so it helps if you have also read it. </p> <p>The book is old and reading it today you will have a lot of wow I can't believe they did that moments. One that struck me in particular was how they managed documentation, actual hard copy to everyone, with daily edits printed and sent out, hundreds of pages. Compared with today were you would just have word doc or wiki. </p> <p>It is a short book and doesn't take long to read, but is very informative. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/16429#16429 12 Answer by James Marshall for What is the single most influential book every programmer should read? James Marshall 2008-08-19T15:44:39Z 2008-08-23T10:19:23Z <p>Not <em>the most</em> influential, but certainly a good read and absent so far is <em><a href="http://rads.stackoverflow.com/amzn/click/0976694018" rel="nofollow">My Job Went To India</a></em> by Chad Fowler. It consists of 52 chapters/mini essays giving guidance on how to differentiate yourself as a <em>developer</em> rather than a <em>code monkey</em> (whose work could easily be outsourced). </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/22865#22865 49 Answer by nmiranda for What is the single most influential book every programmer should read? nmiranda 2008-08-22T16:56:43Z 2008-08-22T16:56:43Z <p>I agree with <a href="http://beta.stackoverflow.com/users/680/cristian" rel="nofollow">Cristian</a>, I think we should not forget SICP, I think every programmer should use it, al least as an exercise, you can complement it with; </p> <p><a href="http://www.ccs.neu.edu/home/matthias/BTLS/" rel="nofollow">The Little Schemer</a><br /> <img src="http://www.ccs.neu.edu/home/matthias/BTLS/cover-sm.jpg" alt="alt text" /> and </p> <p><a href="http://www.ccs.neu.edu/home/matthias/BTSS/" rel="nofollow">The Seasoned Schemer</a> </p> <p><img src="http://www.ccs.neu.edu/home/matthias/BTSS/cover-sm.jpg" alt="alt text" /></p> <p>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</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/22874#22874 7 Answer by Mike Polen for What is the single most influential book every programmer should read? Mike Polen 2008-08-22T17:00:18Z 2008-08-22T17:00:18Z <p>I though <a href="http://www.noop.nl/" rel="nofollow">Jurgen</a> did a decent job with his <a href="http://www.noop.nl/2008/06/top-100-best-software-engineering-books-ever.html" rel="nofollow">Top 100 Best Software Engineering Books, Ever</a>.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/24038#24038 5 Answer by csmba for What is the single most influential book every programmer should read? csmba 2008-08-23T06:30:29Z 2008-08-23T06:30:29Z <ol> <li><strong>Google</strong></li> <li>Newsgroups and Forums (and now, SO)</li> <li>blogs</li> </ol> <p>Books are great, on the free time, on vacation, but relevent, up to the minut "save the day" information is from blogs/forums and internet stuff. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/27002#27002 8 Answer by Thomas Vander Stichele for What is the single most influential book every programmer should read? Thomas Vander Stichele 2008-08-25T21:59:36Z 2008-08-25T21:59:36Z <p>Since you didn't say you wanted programming books specifically, I can be a little more creative.</p> <p>Every programmer should have read Lewis Carol's Alice in Wonderland.</p> <p>Slightly more down-to-earth - every programmer should read Getting Things Done - especially the ones that I work with, because once you 'get it' you will be annoyed at how unorganized other people can be :)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/27307#27307 17 Answer by Chris Conway for What is the single most influential book every programmer should read? Chris Conway 2008-08-26T02:41:35Z 2008-08-26T02:41:35Z <p>The books listed here in this question are great. Code Complete, Pragmatic Programmer, Head First Design Patterns, all great.</p> <p>My contribution to this list is a free read and is really focused on getting back to (best practice) basics. <a href="http://codebetter.com/blogs/karlseguin/archive/2008/06/24/foundations-of-programming-ebook.aspx" rel="nofollow">Foundations of Programming</a> is a free eBook from one of the contributors to the popular Alt.Net blogs <a href="http://codebetter.com/" rel="nofollow">CodeBetter</a>, Karl Seguin. <p> Covers Domain Driven Design, Persistence, Dependency Injection, Unit Testing, ORM etc.<p> <img src="http://www.openmymind.net/cover.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/28044#28044 5 Answer by Dana for What is the single most influential book every programmer should read? Dana 2008-08-26T13:35:06Z 2008-08-26T13:35:06Z <p><a href="http://rads.stackoverflow.com/amzn/click/0321246756" rel="nofollow">Framework Design Guidelines</a> will give you a very good start on how to organize code.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/28103#28103 6 Answer by Pete for What is the single most influential book every programmer should read? Pete 2008-08-26T13:59:08Z 2009-08-27T04:24:04Z <p>Maybe not the single most influential for <em>every</em> programmer but... to expand really expand your mind about computation in general, and to learn to write some very interesting programs, I recommend the <br><a href="http://rads.stackoverflow.com/amzn/click/0262561271" rel="nofollow">Computational Beauty of Nature</a>.</p> <p><img src="http://ecx.images-amazon.com/images/I/51MXK8CMM1L.%5FSL500%5FBO2,204,203,200%5FPIsitb-dp-500-arrow,TopRight,45,-64%5FOU01%5FAA240%5FSH20%5F.jpg" alt="alt text" /></p> <p>BTW, the author is now head of Microsoft's Live Labs.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/28123#28123 0 Answer by Phillip Wells for What is the single most influential book every programmer should read? Phillip Wells 2008-08-26T14:06:15Z 2008-08-26T14:06:15Z <p>I second the recommendations for The Pragmatic Programmer and the Gang of Four's Design Patterns.</p> <p>I also think that Joshua Bloch's <a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java</a> is first rate, even for those working in other languages. It's presented in an easy-to-digest, point-by-point style. I learned a lot from it about things like implementing hashCode() methods and so on.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/28213#28213 1 Answer by levand for What is the single most influential book every programmer should read? levand 2008-08-26T14:33:29Z 2008-08-26T14:33:29Z <p>I'll second the Little Schemer and the Seasoned Schemer. Not necessarily because you want to write Scheme, but actually, reading and understanding these has changed the way I think even about my Java code at my day job.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29285#29285 14 Answer by flipdoubt for What is the single most influential book every programmer should read? flipdoubt 2008-08-27T01:04:36Z 2009-04-25T16:59:13Z <p><a href="http://amazon.com/o/ASIN/0135974445" rel="nofollow">Agile Software Development, Principles, Patterns, and Practices</a> by Robert C. Martin</p> <p><img src="http://ecx.images-amazon.com/images/I/519J3P8ANML.%5FSL500%5FAA240%5F.jpg" alt="cover image" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29295#29295 43 Answer by mattruma for What is the single most influential book every programmer should read? mattruma 2008-08-27T01:12:55Z 2009-10-07T22:02:14Z <h2><a href="http://rads.stackoverflow.com/amzn/click/097451408X" rel="nofollow">Practices of an Agile Developer</a> </h2> <p>Working in the Real World.</p> <p><img src="http://ecx.images-amazon.com/images/I/5161xkJsHzL.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29338#29338 11 Answer by lurks for What is the single most influential book every programmer should read? lurks 2008-08-27T01:42:43Z 2008-08-27T01:42:43Z <p>I think that "The Art of Unix Programming" is an excellent book, by an excellent hacker/brilliant mind as Eric S. Raymond, who tries to make us understand a few principles of software design (simplicity mainly). This book is a must for every programming who is about to start a project under Unix platform.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29433#29433 361 Answer by Antti Sykäri for What is the single most influential book every programmer should read? Antti Sykäri 2008-08-27T03:10:24Z 2009-10-22T13:31:12Z <p><img src="http://sykari.net/eternal/sicp.jpg" alt="alt text" title="Structure and Interpretation of Computer Programs" /></p> <p>Personally, <a href="http://rads.stackoverflow.com/amzn/click/0262510871" rel="nofollow">Structure and Interpretation of Computer Programs</a> is by far the most influential programming book I have ever read.</p> <p>Some classics like <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a>, <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring</a> and <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a> teach you the effective working habits and the painstaking details of the trade. Others, like <a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">Peopleware</a>, <a href="http://rads.stackoverflow.com/amzn/click/0932633420" rel="nofollow">Psychology of Computer Programming</a> and <a href="http://rads.stackoverflow.com/amzn/click/0201835959" rel="nofollow">The Mythical Man-Month</a> delve into the psychosocial aspects of software development. <a href="http://rads.stackoverflow.com/amzn/click/0201485419" rel="nofollow">Numerous</a> <a href="http://rads.stackoverflow.com/amzn/click/0262033844" rel="nofollow">others</a> deal with algoritms. These books all have their place.</p> <p>SICP, however, is in a different league. It is a book that <strong>will enlighten you</strong>. 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; <strong>this book will make you a programmer</strong>.</p> <p>And in the meanwhile, you will learn a thing or two about functional programming (side effects won't be introduced until <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-19.html" rel="nofollow">chapter three</a>), <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%%5Fsec%5F3.5.1" rel="nofollow">lazy evaluation</a>, metaprogramming (well, <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-25.html" rel="nofollow">metalinguistic abstraction</a>), <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-30.html" rel="nofollow">virtual machines</a>, <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-34.html" rel="nofollow">interpreters</a>, and <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-35.html" rel="nofollow">compilers</a>.</p> <p><a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/5545#5545">Some</a> 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 <strong>I would definitely recommend it for a beginner.</strong> 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.</p> <p>Not convinced? Read the <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-5.html" rel="nofollow">Foreword</a> or the <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-7.html" rel="nofollow">Preface to the First Edition</a>. The full text is <a href="http://mitpress.mit.edu/sicp/full-text/book/book.html" rel="nofollow">freely available on the web</a>.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29441#29441 2 Answer by Gary Capell for What is the single most influential book every programmer should read? Gary Capell 2008-08-27T03:14:39Z 2008-08-27T03:14:39Z <p>Ooh, a toss-up between Bentley's "Programming Pearls" and Kernighan and Ritchie's "The C Programming Language".</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29448#29448 0 Answer by Rob Bazinet for What is the single most influential book every programmer should read? Rob Bazinet 2008-08-27T03:20:49Z 2008-08-27T03:20:49Z <p>I know so many others have had the same answer but needed to add my 2 cents:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete by Steven McConnell</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/30680#30680 21 Answer by tuxedo for What is the single most influential book every programmer should read? tuxedo 2008-08-27T17:23:38Z 2008-08-27T17:23:38Z <p>Robert M. Pirsig's <em>Zen and the Art of Motorcycle Maintenance</em> has a little section near the end about Gumption Traps. That's the best advice I've ever read on how to debug code or solve problems in general. The rest of the book is pretty good, too.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/30693#30693 7 Answer by FantaMango77 for What is the single most influential book every programmer should read? FantaMango77 2008-08-27T17:31:14Z 2008-08-28T04:54:46Z <p><a href="http://rads.stackoverflow.com/amzn/click/0932633390" rel="nofollow">The Deadline: A Novel About Project Management</a> by Tom DeMarco</p> <p><img src="http://ecx.images-amazon.com/images/I/51NNN85FKKL._SL500_AA240_.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/31422#31422 0 Answer by toolkit for What is the single most influential book every programmer should read? toolkit 2008-08-28T00:33:24Z 2008-08-28T00:33:24Z <p>+1 for How to Win Friends and Influence People</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/31438#31438 2 Answer by Paul Tomblin for What is the single most influential book every programmer should read? Paul Tomblin 2008-08-28T00:41:34Z 2008-08-28T00:41:34Z <p>Mr. Bunny's Big Cup O' Java</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/33154#33154 4 Answer by Onorio Catenacci for What is the single most influential book every programmer should read? Onorio Catenacci 2008-08-28T19:13:28Z 2008-08-28T19:13:28Z <p>I have a few good books that strongly influenced me that I've not seen on this list so far:</p> <p><em><a href="http://rads.stackoverflow.com/amzn/click/0465067093" rel="nofollow">The Psychology of Everyday Things</a></em> by Donald Norman. The general principles of design for other people. This may seem to be mostly good for UI but if you think about it, it has applications almost anywhere there is an interface that someone besides the original developer has to work with; e. g. an API and designing the interface in such a way that other developers form the correct mental model and get appropriate feedback from the API itself. </p> <p><em><a href="http://rads.stackoverflow.com/amzn/click/0471469122" rel="nofollow">The Art of Software Testing</a></em> by Glen Myers. A good, general introduction to testing software; good for programmers to read to help them think like a tester i. e. think of what may go wrong and prepare for it.</p> <p>By the way, I realize the question was the "Single Most Influential Book" but the discussion seems to have changed to listing good books for developers to read so I hope I can be forgiven for listing two good books rather than just one.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/33310#33310 -1 Answer by Kim for What is the single most influential book every programmer should read? Kim 2008-08-28T20:27:17Z 2008-08-28T20:27:17Z <p>To answer the first question I would be original and say Code Complete;) And Pragmatic Programmer in a close second. But to answer the rephrased question: </p> <blockquote> <p>If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, what book would it be?</p> </blockquote> <p>I´m not quite sure. I do not think Code Complete would be as valuable in the beginning of my career. I´t is a harder question. Maybe "Object Oriented Analysis and Design" should top the list then.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/33671#33671 2 Answer by joel.neely for What is the single most influential book every programmer should read? joel.neely 2008-08-28T23:47:12Z 2008-08-28T23:47:12Z <p>While I agree that many of the books above are must-reads (Pragmatic Programmer, Mythical Man-Month, Art of Computer Programming, and SICP come to mind immediately), I'd like to go in a slightly different direction and recommend <a href="http://rads.stackoverflow.com/amzn/click/013215871X" rel="nofollow" title="A Discipline of Programming">A Discipline of Programming</a> by Edsger Dijkstra. Even though it's 32 years old, the emphasis on "design for verifiability" is highly relevant (even if "verifiability" means "proof" instead "unit tests").</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/34057#34057 0 Answer by moobaa for What is the single most influential book every programmer should read? moobaa 2008-08-29T06:31:10Z 2008-08-29T06:31:10Z <p>+1 for "The Mythical Man Month" - it's fascinating that the same issues exist in software projects after 30-40 years.</p> <p>Another +1 for "Programming Pearls" (and a more hesitant recommendation for later books in the series); PP encourages you to think rationally about problems.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/34526#34526 268 Answer by Nathan for What is the single most influential book every programmer should read? Nathan 2008-08-29T16:01:11Z 2009-08-05T20:52:28Z <p><em><a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language</a></em> by Kernighan and Ritchie.</p> <p><img src="http://www.lorenzogil.com/blog/wp-content/uploads/2008/01/the-c-programming-language.jpg" alt="The C Programming Language Book" /></p> <p>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".)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/35217#35217 80 Answer by John Channing for What is the single most influential book every programmer should read? John Channing 2008-08-29T20:19:05Z 2009-10-07T22:05:17Z <h2><a href="http://rads.stackoverflow.com/amzn/click/0201924889" rel="nofollow">Effective C++</a> and <a href="http://rads.stackoverflow.com/amzn/click/020163371X" rel="nofollow">More Effective C++</a></h2> <p>From the early days of my career, Scott Meyer's <a href="http://rads.stackoverflow.com/amzn/click/0201924889" rel="nofollow">Effective C++</a> and later <a href="http://rads.stackoverflow.com/amzn/click/020163371X" rel="nofollow">More Effective C++</a> 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.</p> <p><img src="http://ecx.images-amazon.com/images/I/51WCFVFEB2L.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p> <p>In the last year, the book with the biggest impact on my thinking has been <a href="http://rads.stackoverflow.com/amzn/click/0596001088" rel="nofollow">The Cathedral and the Bazaar</a> which taught me a lot about how the open source development process works and how to get rid of bugs from my code.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/37603#37603 2 Answer by christefano for What is the single most influential book every programmer should read? christefano 2008-09-01T08:14:50Z 2008-09-01T08:14:50Z <p>There are a lot of votes for Steve McConnell's Code Complete, but what about his <a href="http://www.stevemcconnell.com/sg.htm" rel="nofollow">Software Project Survival Guide</a> book? I think they're both required reading but for different reasons.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/38113#38113 4 Answer by pbhogan for What is the single most influential book every programmer should read? pbhogan 2008-09-01T16:22:53Z 2008-09-01T16:22:53Z <p>I recently read <a href="http://rads.stackoverflow.com/amzn/click/1400082471" rel="nofollow">Dreaming in Code</a> and found it to be an interesting read. Perhaps more so since the day I started reading it Chandler 1.0 was released. Reading about the growing pains and mistakes of a project team of talented people trying to "change the world" gives you a lot to learn from. Also Scott brings up a lot of programmer lore and wisdom in between that's just an entertaining read.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0596510047" rel="nofollow">Beautiful Code</a> had one or two things that made me think differently, particularly the chapter on top down operator precedence.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/38148#38148 4 Answer by Terry Longrie for What is the single most influential book every programmer should read? Terry Longrie 2008-09-01T16:40:32Z 2008-09-01T16:40:32Z <p><strong>The Design of Everyday Things</strong> and <strong>Things that Make Us Smart</strong> - both by Donald Norman</p> <p>These apply to so much more than just user interface design... Make things that work as others would expect - even if the others are developers using code that you've created.</p> <p><strong>The Timeless Way of Building</strong> - Christopher Alexander</p> <p>The original "patterns" book. Helps to understand why some software design just "feels" right and some does not.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/38803#38803 1 Answer by Apocalisp for What is the single most influential book every programmer should read? Apocalisp 2008-09-02T04:12:04Z 2008-09-17T07:33:41Z <p>Great question!</p> <p>After some consideration, I would have to say <a href="http://rads.stackoverflow.com/amzn/click/0452286751" rel="nofollow">The Fountainhead by Ayn Rand</a>. Not a programming book, but makes you think about what you want out of your work at a higher level. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/38973#38973 2 Answer by ricin for What is the single most influential book every programmer should read? ricin 2008-09-02T07:23:09Z 2008-09-02T07:23:09Z <p>This isn't a direct answer to the question, because I feel it's already been answered above, however, one of the books that definitely had an impact on how I code is <a href="http://www.bookpool.com/ss?qs=0201799405" rel="nofollow">Code Reading, Volume 1: The Open Source Perspective</a>. </p> <p><img src="http://g.bookpool.com/covers/405/0201799405_140_30O.gif" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/40049#40049 0 Answer by Tanj for What is the single most influential book every programmer should read? Tanj 2008-09-02T17:07:11Z 2008-09-02T17:07:11Z <p>The only software design type of book I have read is The C Programming Language by K&amp;R. I read it the first time when I was 12 and I asked my dad for a book to teach me how to program. I keep going back to it time and again when ever I get a urge to program. Since I don't yet program for a living I don't have it all internalized.</p> <p>Joel on Software is something worth reading even if you aren't a manager or team lead. If you are just starting out in the software industry it will give you an idea of what a software company should look like and have in place ie. The Joel Test.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/40319#40319 1 Answer by Ced-le-pingouin for What is the single most influential book every programmer should read? Ced-le-pingouin 2008-09-02T19:05:26Z 2008-09-02T19:05:26Z <p>Hey, my favorite book, Alice in Wonderland, has been mentioned :D</p> <p>Other than that... I was blown away when I read <a href="http://rads.stackoverflow.com/amzn/click/0596101996" rel="nofollow" title="Javascript: The definitive guide">Javascript: The Definitive Guide</a>, because at the time it was the only JS book I'd read that wasn't talking about crappy rollovers or things like that.</p> <p>It may be the first time I learned the OO side of javascript, and the book was by far the most complete on the language (core, and browser-side).</p> <p>I wish I'd read it before getting bad habits and a false image of JS.</p> <p>Of course the situation is much different now, with many books by JS gurus who have written stylish and robust JS like jQuery and the like...</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/40984#40984 13 Answer by andyp for What is the single most influential book every programmer should read? andyp 2008-09-03T00:49:36Z 2009-10-29T10:29:09Z <p>A great follow on to Code Complete - indispensable once you start working on projects of any decent size &amp; need to communicate to your stakeholders about project delivery dates, etc. <br/></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0735605351" rel="nofollow"><img src="http://ecx.images-amazon.com/images/I/51G9GF8VQML.%5FSS500%5F.jpg" alt="Software Estimation by Steve McConnel" title="" /></a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/41115#41115 -1 Answer by axs6791 for What is the single most influential book every programmer should read? axs6791 2008-09-03T03:05:26Z 2008-09-03T03:05:26Z <p>Design Patterns by the Gang of Four, I keep referring to it over and over again.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/41143#41143 12 Answer by Marcio Aguiar for What is the single most influential book every programmer should read? Marcio Aguiar 2008-09-03T03:41:27Z 2008-09-03T03:41:27Z <p><img src="http://ecx.images-amazon.com/images/I/51QQidWjIQL._SL500_BO2,204,203,200_PIlitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="alt text" /> </p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321125215" rel="nofollow">Domain Driven Design</a> have great guidelines on how to build your software model in a way it communicates better.</p> <p><img src="http://ecx.images-amazon.com/images/I/51Y6dxwLIGL._SL500_AA240_.jpg" alt="alt text" /> </p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java 2ed</a> will teach you how to write beatiful and effective code. It's a java book, but there's many cross-language concepts.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/41184#41184 0 Answer by domoaringatoo for What is the single most influential book every programmer should read? domoaringatoo 2008-09-03T04:41:59Z 2008-09-03T04:41:59Z <p>I'm backing the Mythical Man-Month as well, with all those before me. Other books have great insights on how to code, the practical knowledge of the craft, Brooks' work however so clearly illustrates those human failures that arise in any real software engineering project. It's almost a crime for young programmers to be sent out into the corporate world without having this in their back pocket. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/42040#42040 0 Answer by Kevin Berridge for What is the single most influential book every programmer should read? Kevin Berridge 2008-09-03T16:16:41Z 2008-09-03T16:16:41Z <p>I would say:</p> <ol> <li>Pragmatic Programmer</li> <li>Don't Make Me Think - Steve Krug</li> </ol> <p>Don't Make Me Think is a book about Usability, but I've found it applies equally well to code and "standards" and "best practices" ...</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/42220#42220 1 Answer by mmorrisson for What is the single most influential book every programmer should read? mmorrisson 2008-09-03T17:58:20Z 2008-09-03T17:58:20Z <ul> <li>Sedgewick's Algorithms in C++</li> <li>Effective Java by Joshua Bloch</li> <li>Java Performance Tuning by Shirazi</li> </ul> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/42402#42402 0 Answer by Boiler Bill for What is the single most influential book every programmer should read? Boiler Bill 2008-09-03T19:45:03Z 2008-09-03T19:45:03Z <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">The Pragmatic Programmer</a> for beginning developers</li> <li><a href="http://www.bookpool.com/ss?qs=peopleware&amp;x=0&amp;y=0" rel="nofollow">Peopleware</a> for beginning managers</li> </ul> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/42972#42972 0 Answer by benc for What is the single most influential book every programmer should read? benc 2008-09-04T01:10:24Z 2008-09-04T01:10:24Z <p><a href="http://www.code-is-law.org/" rel="nofollow">Code is Law</a> - you are doing all this writing, editing, and thinking in [language of your choice] but WHY? What does you code MEAN? What will does it actually DO?</p> <p>(I could have recommended a book on QA, but I didn't...)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/43408#43408 88 Answer by Matt Warren for What is the single most influential book every programmer should read? Matt Warren 2008-09-04T09:32:29Z 2009-03-01T21:52:10Z <p>I really recommend <a href="http://rads.stackoverflow.com/amzn/click/0201657880" rel="nofollow">programming pearls</a>, it's got some amazing stuff in it, although I'm not ashamed to admit that I didn't understand half of it!</p> <p><img src="http://ecx.images-amazon.com/images/I/41ETT7KQRRL.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/43719#43719 70 Answer by Tim Howland for What is the single most influential book every programmer should read? Tim Howland 2008-09-04T13:06:12Z 2009-04-25T17:08:50Z <p>For a truly deep read, I'd suggest Douglas Hofstadter's <a href="http://rads.stackoverflow.com/amzn/click/0465026567" rel="nofollow">Gödel, Escher, Bach</a>. 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.</p> <p><img src="http://www.upl.cs.wisc.edu/~bethenco/product-data-cache/0465026567_01_LZZZZZZZ.jpg" width="200"></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/43727#43727 -1 Answer by MattW. for What is the single most influential book every programmer should read? MattW. 2008-09-04T13:14:23Z 2008-09-04T13:14:23Z <p>Zen and the Art of Motorcycle Maintenance. Go now, read it. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/46426#46426 178 Answer by db for What is the single most influential book every programmer should read? db 2008-09-05T18:00:08Z 2009-10-16T01:41:20Z <p>I'm surprised no one's mentioned the <a href="http://rads.stackoverflow.com/amzn/click/0321486811" rel="nofollow">Dragon Book by Aho et al</a>. (or if it has been mentioned, I missed it).</p> <p><img src="http://abyss.hubbe.net/gfx/covers/bks/lg/compilers.jpg" alt="Compilers (The Dragon Book) by Aho et al" /> <img src="http://ecx.images-amazon.com/images/I/51XtGJ64tZL.%5FSS500%5F.jpg" alt="Newer Version" /></p> <p>I will never forget the first edition's cover. This book made me realize just how magically awesome compilers truly are. :)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/46460#46460 106 Answer by akr for What is the single most influential book every programmer should read? akr 2008-09-05T18:16:19Z 2009-07-24T09:15:10Z <p>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 thrive 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).</p> <p><img src="http://ecx.images-amazon.com/images/I/5187VZ5EZ4L.%5FSS500%5F.jpg" alt="alt text" /></p> <p>This book has a more recent edition (2000).</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/47489#47489 4 Answer by Michael Hinds for What is the single most influential book every programmer should read? Michael Hinds 2008-09-06T14:25:07Z 2008-09-06T14:25:07Z <p>I was lucky enough to read this pretty early in my so-called career:</p> <p><a href="http://philip.greenspun.com/panda/" rel="nofollow">Philip and Alex's Guide to Web Publishing</a></p> <p>It was cutting edge in 1998 and still has plenty of relevant points. I found it an enjoyable read with a real sense of humour (not the twee kind you often get in software books). When he gets down to the details he talks about specific platforms though, so it shows it's age when Oracle 7 is mentioned! </p> <p>I would still put this at the top of the required reading list for a web developer because of the way it assumes no prior knowledge, starting from first principles ("what's HTML?")</p> <p><img src="http://www.photo.net/photo/pcd2182/philip-and-alex-sm.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/47601#47601 1 Answer by Luther Baker for What is the single most influential book every programmer should read? Luther Baker 2008-09-06T16:06:14Z 2008-09-06T16:15:25Z <p><a href="http://www.apress.com/book/view/1590599217" rel="nofollow">Pro Spring</a> is a superb introduction to the world of Inversion of Control and Dependency Injection. If you're not aware of these practices and their implications - the balance of topics and technical detail in Pro Spring is excellent. It builds a great case and consequent personal foundation.</p> <p>Another book I'd suggest would be Robert Martin's <a href="http://rads.stackoverflow.com/amzn/click/0135974445" rel="nofollow">Agile Software Development</a> (ASD). Code smells, agile techniques, test driven dev, principles ... a well-written balance of many different programming facets.</p> <p>More traditional classics would include the infamous GoF <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a>, Bertrand Meyer's <a href="http://rads.stackoverflow.com/amzn/click/0136291554" rel="nofollow">Object Oriented Software Construction</a>, Booch's <a href="http://rads.stackoverflow.com/amzn/click/020189551X" rel="nofollow">Object Oriented Analysis and Design</a>, <a href="http://www.amazon.com/s/ref=nb_ss_b?url=search-alias%3Dstripbooks&amp;field-keywords=scott+meyers&amp;x=0&amp;y=0" rel="nofollow">Scott Meyer</a>'s "<a href="http://rads.stackoverflow.com/amzn/click/0321334876" rel="nofollow">Effective C++</a>'" series and a lesser known book I enjoyed by Gunderloy, <a href="http://www.codertodeveloper.com/" rel="nofollow">Coder to Developer</a>.</p> <p>And while books are nice ... don't forget <a href="http://www.se-radio.net/" rel="nofollow">radio</a>!</p> <p>... let me add one more thing. If you haven't already discovered <a href="http://safari.oreilly.com/0735619670" rel="nofollow">safari</a> - take a look. It is more addictive than stack overflow :-) I've found that with my google type habits - I need the more expensive subscription so I can look at any book at any time - but I'd recommend the trial to anyone even remotely interested.</p> <p>(ah yes, a little obj-C today, cocoa tomorrow, patterns? soa? what was that example in that cookbook? What did Steve say in the <a href="http://safari.oreilly.com/0735619670" rel="nofollow">second edition</a>? Should I buy this book? ... a subscription like this is great if you'd like some continuity and context to what you're googling ...)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/47725#47725 0 Answer by RTipton for What is the single most influential book every programmer should read? RTipton 2008-09-06T18:45:53Z 2008-09-06T18:45:53Z <p>I would have to say "Code Complete" and "Software Estimation" by Steve McConnell.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/47739#47739 16 Answer by J.F. Sebastian for What is the single most influential book every programmer should read? J.F. Sebastian 2008-09-06T19:00:16Z 2008-09-06T19:00:16Z <p>@<a href="#29338" rel="nofollow">lurks</a></p> <p><img src="http://is.gd/2iit" alt="The Art Of UNIX Programming by Eric S. Raymond" /></p> <p>It is useful regardless operating system you use.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/48191#48191 1 Answer by Sven Semmler for What is the single most influential book every programmer should read? Sven Semmler 2008-09-07T06:12:33Z 2008-09-07T06:12:33Z <p>"Debugging the Development Process: Practical Strategies for Staying Focused, Hitting Ship Dates, and Building Solid Teams" by Steve Maguire.</p> <p>No-non-sense, down-to-earth, entertaining, profound.</p> <p>[ <a href="http://beta.stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer#1150" rel="nofollow">http://beta.stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer#1150</a> ]</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/49017#49017 1 Answer by Matt for What is the single most influential book every programmer should read? Matt 2008-09-08T02:09:58Z 2008-09-08T02:09:58Z <p>Since you've asked for the <em>single</em> most influential book, I recommend <a href="http://www.deitel.com" rel="nofollow">Deitel's</a> "C++ How to Program. This is the one I kept referencing throughout University.</p> <p>I actually enjoyed reading Head First Design Patterns and Joel On Software more, but they came along after I'd learned the basics</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/49088#49088 1 Answer by pkoch for What is the single most influential book every programmer should read? pkoch 2008-09-08T02:59:37Z 2008-09-08T02:59:37Z <p>I found "The art of Prolog" a very good read.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/49139#49139 2 Answer by Dominic Eidson for What is the single most influential book every programmer should read? Dominic Eidson 2008-09-08T03:55:08Z 2008-09-08T03:55:08Z <p>I think I grew up in a different generation than most here....</p> <p>One of the most influential books I read, was <a href="http://www.kohala.com/start/apue.html" rel="nofollow">APUE</a>.</p> <p>Or pretty much anything by W. Richard Stevens.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/49393#49393 0 Answer by Steve Bosman for What is the single most influential book every programmer should read? Steve Bosman 2008-09-08T09:52:45Z 2008-09-08T09:52:45Z <p>+1 for Zen and the Art of Motorcycle Maintenance</p> <p>Before people start coding they need to have thought about how they approach and break down problems</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/49649#49649 2 Answer by ddowns for What is the single most influential book every programmer should read? ddowns 2008-09-08T12:59:22Z 2008-09-08T12:59:22Z <p>I'd have to second <strong>Refactoring: Improving the Design of Existing Code</strong>. It was the single biggest help for me to get unstuck while moving from a procedural mindset to a OOP one. During that time I was to focused on getting the design and model correct from the get go, and wasted a lot of time doing so. After reading through this book a few lights turned on, or at least shined bright enough, for me to realize my follies. Do the best you can now that fits the time, the code will change and many times in ways you couldn't foresee to begin with. The real kicker is that this always happens, no matter what, and to just not worry about it. In short, this book helped ground me and get my head out of the clouds. </p> <p><img src="http://2020ok.com/img/1/41191.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/49688#49688 0 Answer by Konamiman for What is the single most influential book every programmer should read? Konamiman 2008-09-08T13:20:38Z 2008-09-08T13:20:38Z <p>I would say Code Complete too, anyway after reading it I have a question: what's the matter with the Pontiac Aztek and why has Steve McConnell a trauma with it?</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/49889#49889 -1 Answer by Bobby Jack for What is the single most influential book every programmer should read? Bobby Jack 2008-09-08T15:05:34Z 2008-09-08T15:05:34Z <p>Another vote for "The Art of Unix Programming by Eric S. Raymond". Even if you aren't a Unix programmer, the explanation of simple, clean, yet powerful processes will convince you that you <em>should</em> be ;-)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/50294#50294 1 Answer by Jake Hackl for What is the single most influential book every programmer should read? Jake Hackl 2008-09-08T17:56:59Z 2008-09-08T17:56:59Z <p>Code complete, domain driven design, and Dreaming in Code to show how it can work out in the end. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/51162#51162 0 Answer by Thomas H for What is the single most influential book every programmer should read? Thomas H 2008-09-09T03:21:23Z 2008-09-09T03:21:23Z <p>My development odyssey began with the venerable Camel book, followed by Cay Horstmann's and Gary Cornell's excellent Core Java series. In retrospect this was a reasonable start, though far heavier on practice than principles and concepts.</p> <p>As a few have said, most influential and most influential in the context of beginning a development career may be very different. I didn't appreciate many of the stellar recommendations here such as SICP, Code Complete, Mythical Man Month, the Pragmatic Programmer, and Peopleware until I'd had a few years and a few projects under my belt.</p> <p>Andy Hunt and Dave Thomas put it best - continually invest in your knowledge portfolio - read a new book every quarter.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/51167#51167 0 Answer by Will Sargent for What is the single most influential book every programmer should read? Will Sargent 2008-09-09T03:26:20Z 2008-09-09T03:26:20Z <p>Code Complete, version 2 is the single most useful book you'll read about programming.</p> <p>Domain Driven Design is the single most useful book you'll read about Software Engineering; putting code together in the right way.</p> <p>And just to round out the list, Software Creativity by Robert L Glass; it's a book that will make you look at how you look at software.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/53240#53240 1 Answer by Gürkan Yeniçeri for What is the single most influential book every programmer should read? Gürkan Yeniçeri 2008-09-10T00:42:44Z 2008-09-10T00:42:44Z <p>Roger S. Pressman - Software Engineering (A Practitioners Approach). It has got a lot of usefull information.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/54120#54120 0 Answer by fuzzbone for What is the single most influential book every programmer should read? fuzzbone 2008-09-10T14:06:40Z 2008-09-10T14:06:40Z <blockquote> <p>Books are great, on the free time, on vacation, but relevent, up to the minut "save the day" information is from blogs/forums and internet stuff. </p> </blockquote> <p>I have to respond to this. Clearly for answers to specific questions and probelms, sites like this and the methods described above are obviously the best. For cutting-edge newest technology, the lead time for books obviously is going to leave you no choice but use the internet. And perhaps my age (46) is a bias here.</p> <p>But one of the things that troubles me greatly has been the decline of Technical Publishing. A lot of tech writers are moving away for it because it doesn't "pay the bills' (Petzold for example) and as I mentioned - there is likely a generational thing (I'll just have to "get-over") I don't like doing extensive reading on a laptop screen...</p> <p>But I think to truly get a "Deep Understanding" of a broad topic - the effort necessary to write a book allows the writer to focus his or her thoughts in a way that otherwise I don't belief lets the reader truly "Grok" a deep concept.</p> <p>Yes if you want a "how-to" - a good web post might be more than sufficient. But if I REALLY need to understand something, I want a good book.</p> <p>Furthermore, when I need to go back to something, I always know where that darn book is on my bookshelf. But how many times have you pulled your hair out trying to find that link you know you say several months ago?</p> <p>Please everyone here - support tech writers (who derserve it) by BUYING the book!</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/54203#54203 6 Answer by Joe for What is the single most influential book every programmer should read? Joe 2008-09-10T14:31:19Z 2008-09-10T14:31:19Z <p>I prefer Stroustrup's <a href="http://rads.stackoverflow.com/amzn/click/0201700735" rel="nofollow">The C++ Programming Language (3rd edition)</a> - it's <em>the</em> C++ book. C++ may be out of fashion these days, but this book takes you from the basics to OO to templates (STL) and even covers things like improving compile and link time. I still learn something every time I pick it up, and it's never, ever bad to know C++.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/54301#54301 4 Answer by Kilhoffer for What is the single most influential book every programmer should read? Kilhoffer 2008-09-10T15:03:06Z 2008-09-10T15:08:49Z <p>I thought <a href="http://rads.stackoverflow.com/amzn/click/0321126971" rel="nofollow">Design Patterns in C#</a> by John Metsker was good. The examples are a bit more advanced (and useful) than some other design pattern books I've read.</p> <p><img src="http://ecx.images-amazon.com/images/I/41vqvUQMWPL._SL500_AA240_.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/54322#54322 5 Answer by Kilhoffer for What is the single most influential book every programmer should read? Kilhoffer 2008-09-10T15:07:58Z 2008-09-10T15:07:58Z <p>This one isnt really a book for the beginning programmer, but if you're looking for SOA design books, then <a href="http://rads.stackoverflow.com/amzn/click/0596529554" rel="nofollow">SOA in Practice: The Art of Distributed System Design</a> is for you.</p> <p><img src="http://ecx.images-amazon.com/images/I/51Rk12gIKiL._SL500_AA240_.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/54428#54428 5 Answer by blowmage for What is the single most influential book every programmer should read? blowmage 2008-09-10T15:35:50Z 2008-09-10T15:35:50Z <p>There are alot of really great books in the answers. One that isn't mentioned that I absolutely love is <a href="http://books.google.com/books?id=-eJQAAAAMAAJ&amp;pgis=1" rel="nofollow">Object Thinking</a> by Dr. David West. This book had a huge impact on me because it explains the why more than the how.</p> <p><a href="http://books.google.com/books?id=-eJQAAAAMAAJ&amp;pgis=1" rel="nofollow"><img src="http://bks8.books.google.com/books?id=-eJQAAAAMAAJ&amp;printsec=titlepage&amp;img=1&amp;zoom=1&amp;sig=ACfU3U09sYGPtZY-iQpQB84JZOwM-5tiIw" alt="Object Thinking" title="" /></a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/54471#54471 2 Answer by Spyplane for What is the single most influential book every programmer should read? Spyplane 2008-09-10T15:46:00Z 2008-09-10T15:46:00Z <ul> <li>-1 For Code Complete</li> <li>+1 For Pragmatic Programmer</li> <li>+1 For SICP</li> </ul> <p>I don't know if it was because I read the Pragmatic Programmer first, but I thought Code Complete was the biggest book I've ever read that didn't really ever say anything. I mean there is a lot of text there, but no substance in my opinion. You get a lot more out of the 300 pages of the Pragmatic Programmer than you will ever get out of the 800 pages of Code Complete.</p> <p>I also have to second <a href="http://rads.stackoverflow.com/amzn/click/0262510871" rel="nofollow">Structure and Interpretation of Computer Programs</a>. It is definitely is the most influential book on programming that I have ever read.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/55741#55741 5 Answer by Garth Roxburgh-Kidd for What is the single most influential book every programmer should read? Garth Roxburgh-Kidd 2008-09-11T03:15:35Z 2008-09-11T03:15:35Z <p>Do users ever touch your code? If you're not doing solely back-end work, I recommend <a href="http://rads.stackoverflow.com/amzn/click/0470084111" rel="nofollow">About Face: The Essentials of User Interface Design</a> â€” now in its third edition (linked). I used to think my users were stupid because they didn't "get" my interfaces. I was, of course, wrong. About Face turned me around. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/55762#55762 2 Answer by Josh K for What is the single most influential book every programmer should read? Josh K 2008-09-11T03:32:20Z 2008-09-11T03:32:20Z <p>I'd recommend <a href="http://rads.stackoverflow.com/amzn/click/0887308589" rel="nofollow">The Dilbert Principle: A Cubicle's-Eye View of Bosses, Meetings, Management Fads &amp; Other Workplace Afflictions</a> for a good cry. Too close to home to be funny though.. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/56490#56490 12 Answer by Henrik Warne for What is the single most influential book every programmer should read? Henrik Warne 2008-09-11T13:07:58Z 2009-04-25T16:18:18Z <p>Code Complete is <em>the</em> classic.</p> <p>However, <a href="http://rads.stackoverflow.com/amzn/click/0321117425" rel="nofollow">Facts and Fallacies of Software Engineering</a> by Robert Glass has a lot of good information on topics other than coding, for example people-issues, testing and process.</p></p> <p><img src="http://www.codinghorror.com/blog/images/facts-and-fallacies-of-software-engineering.jpg" width="200" alt="cover" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/58067#58067 0 Answer by busse for What is the single most influential book every programmer should read? busse 2008-09-12T01:06:12Z 2008-09-12T01:06:12Z <p>Not a programming book, but still a very important book every programmer should read:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0670879835" rel="nofollow">Orbiting the Giant Hairball by Gordon MacKenzie</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/58078#58078 9 Answer by Scott Faria for What is the single most influential book every programmer should read? Scott Faria 2008-09-12T01:09:31Z 2009-04-25T15:55:28Z <p>This is a great book for a Java developer new or old:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java</a> by Joshua Bloch</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/60634#60634 3 Answer by mattruma for What is the single most influential book every programmer should read? mattruma 2008-09-13T15:53:00Z 2008-09-13T15:53:00Z <p><a href="http://rads.stackoverflow.com/amzn/click/1593271190" rel="nofollow">Code Craft</a> by Pete Goodliffe is a good read!</p> <p><img src="http://ecx.images-amazon.com/images/I/51WZ9AEC3GL._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="Code Craft" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/64730#64730 1 Answer by dr-jan for What is the single most influential book every programmer should read? dr-jan 2008-09-15T17:03:00Z 2008-09-15T17:03:00Z <p>The Unix Programming Environment by Brian Kernighan and Rob Pike. After reading this I 'got' Unix. I understood the philosophy behind it and everything suddenly started making much more sense.</p> <p>It's also a brilliant introduction to the Bourne shell and C programming.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/64980#64980 0 Answer by boz for What is the single most influential book every programmer should read? boz 2008-09-15T17:35:01Z 2008-09-15T17:35:01Z <p>I would have to say Programming Pearls as a good overview. There are so many great books on Programming, and so many more bad ones.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/65253#65253 -1 Answer by JP Lodine for What is the single most influential book every programmer should read? JP Lodine 2008-09-15T18:08:28Z 2008-09-15T18:08:28Z <p>Michael C. Feathers' Working Effectively With Legacy Code. Very useful for the substantial number of programmers who work on mature systems that need maintenance, tweaks and refactoring.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/65361#65361 0 Answer by mbowcock for What is the single most influential book every programmer should read? mbowcock 2008-09-15T18:19:50Z 2008-09-15T18:19:50Z <p><a href="http://cc2e.com/" rel="nofollow">Code Complete</a> has been mentioned numerous times - and is definitely a great book and I agree with <a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Introduction to algorithms</a>. To add one to the list - as a good primer for algorithms - <a href="http://rads.stackoverflow.com/amzn/click/0201558025" rel="nofollow">Concrete Mathematics by Knuth</a> - this book explains the underlying math used in higher levels of compsci.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/65407#65407 2 Answer by Bryan Oakley for What is the single most influential book every programmer should read? Bryan Oakley 2008-09-15T18:25:04Z 2008-09-15T18:25:04Z <p>Software Tools by by Brian W. Kernighan and P. J. Plauger</p> <p>It had a profound influence on how I write software.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/65728#65728 4 Answer by wustudybreak for What is the single most influential book every programmer should read? wustudybreak 2008-09-15T19:03:03Z 2008-09-15T19:03:03Z <p>Paradigms of Artificial Intelligence Programming: Case studies in Common Lisp</p> <p><a href="http://norvig.com/paip.html" rel="nofollow">http://norvig.com/paip.html</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/65786#65786 0 Answer by Sijin for What is the single most influential book every programmer should read? Sijin 2008-09-15T19:08:24Z 2008-09-15T19:08:24Z <p>Depends on where the programmer is in terms of his understanding of the craft :) But yeah Code Complete is definitely the first one for me.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/65840#65840 0 Answer by Sergio Morales for What is the single most influential book every programmer should read? Sergio Morales 2008-09-15T19:14:04Z 2008-09-15T19:14:04Z <p>For me, The Mythical Man-Month was an eye opener. Maybe not strictly a programming book, but it did make me think about how to organize a project and thus come up with a better result.</p> <p><img src="http://upload.wikimedia.org/wikipedia/en/thumb/f/fd/Mythical_man-month_%28book_cover%29.jpg/250px-Mythical_man-month_%28book_cover%29.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/66121#66121 2 Answer by Stephen Marney for What is the single most influential book every programmer should read? Stephen Marney 2008-09-15T19:44:08Z 2008-09-15T19:44:08Z <p>Tracy Kidder's The Soul of a New Machine. Not the most influential but certainly one of my most enjoyed industry reads.</p> <p><img src="http://imshopping.rediff.com/books/imagechek/books/pixs/77/0316491977.jpg" alt="Tracy Kidder's The Soul of a New Machine" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/66619#66619 2 Answer by WaldWolf for What is the single most influential book every programmer should read? WaldWolf 2008-09-15T20:29:42Z 2008-09-15T20:29:42Z <p>to get advanced in prolog i like these two books:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0262193388" rel="nofollow">The Art of Prolog</a></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0262512270" rel="nofollow">The Craft of Prolog</a></p> <p>really opens the mind for logic programming and recursion schemes.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/67807#67807 4 Answer by for What is the single most influential book every programmer should read? 2008-09-15T23:04:57Z 2008-09-15T23:04:57Z <p>My favorite books are already covered here, but if you need to learn Java, I enjoyed Bruce Eckel's book, Thinking in Java.</p> <p><img src="http://images.amazon.com/images/P/0131002872.01.LZZZZZZZ.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/68453#68453 0 Answer by AShelly for What is the single most influential book every programmer should read? AShelly 2008-09-16T01:12:00Z 2008-09-16T01:12:00Z <p>Here are two I haven't seen mentioned:<br /> I wish I had read "<a href="http://rads.stackoverflow.com/amzn/click/0201423391" rel="nofollow">Ruminations on C++</a>" by Koenig and Moo much sooner. That was the book that made OO concepts really click for me.<br /> And I recommend Michael Abrash's "Zen of Code Optimization" for anyone else planning on starting a programming career in the mid 90s. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/69157#69157 1 Answer by Larry OBrien for What is the single most influential book every programmer should read? Larry OBrien 2008-09-16T03:25:30Z 2008-09-16T03:25:30Z <p>"The World is Flat" by Thomas Friedman. </p> <p>Excellence in programming demands an investment of mental energy and a dedication to continued learning comparable to the professions of medicine or law. It pays a fraction of what those professions pay, much less the wages paid to the mathematically savvy who head into the finance sector. And wages for <em>constructing code</em> are eroding because it's a profession that is <em>relatively</em> easy for the intelligent and self-disciplined in most economies to enter.</p> <p>Programming has already eroded to the point of paying less than, say, plumbing. Plumbing can't be "offshored." You don't need to pay $2395 to attend the Professional Plumber's Conference every other year for the privilege of receiving an entirely new set of plumbing technologies that will take you a year to learn. </p> <p>If you live in North America or Europe, are young, and are smart, programming is not a rational career choice. Businesses that <em>involve</em> programming, absolutely. Study business, know enough about programming to refine your BS detector: brilliant. But dedicating the lion's share of your mental energy to the mastery of libraries, data structures, and algorithms? That only makes sense if programming is something more to you than an economic choice.</p> <p>If you <em>love</em> programming and for that reason intend to make it your career, then it behooves you to develop a cold-eyed understanding of the forces that are, and will continue, to make it a harder and harder profession in which to make a living. "The World is Flat" won't teach you what to name your variables, but it will immerse you for 6 or 8 hours in economic realities that have <em>already</em> arrived. If you can read it, and not get scared, <em>then</em> go out and buy "Code Complete."</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/69216#69216 0 Answer by Youssef for What is the single most influential book every programmer should read? Youssef 2008-09-16T03:42:19Z 2009-10-26T20:06:05Z <p>Programing Pearl, J.Bentley Pragamtic programmer. Mythical man month</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/69217#69217 0 Answer by Ben Dempsey for What is the single most influential book every programmer should read? Ben Dempsey 2008-09-16T03:42:31Z 2008-09-16T03:42:31Z <p><img src="http://ecx.images-amazon.com/images/I/513Y7FAA9TL._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/72813#72813 2 Answer by Saul for What is the single most influential book every programmer should read? Saul 2008-09-16T14:20:05Z 2008-09-16T14:20:05Z <p><a href="http://www.poppendieck.com/ld.htm" rel="nofollow">Lean Software Development</a> by Mary and Tom Poppendieck is definitely one for every developers bookshelf</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/74418#74418 7 Answer by alumb for What is the single most influential book every programmer should read? alumb 2008-09-16T16:48:40Z 2008-09-16T16:48:40Z <p><strong><a href="http://rads.stackoverflow.com/amzn/click/1594201536" rel="nofollow">Here Comes Everybody: The Power of Organizing Without Organizations</a> - Clay Shirky</strong> <img src="http://ecx.images-amazon.com/images/I/51dvS5iRdwL._SL500_BO2-64_OU01_AA240_SH20_.jpg" alt="alt text" /></p> <p>This is an incredible book about the social effects of the internet. A must read for anyone in the tech industry, doubly so for programmers. </p> <blockquote> <p>Here Comes Everybody: The Power of Organizing Without Organizations is a book about what happens when people are given the tools to do things together, without needing traditional organizational structures.</p> </blockquote> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/78414#78414 9 Answer by Lck for What is the single most influential book every programmer should read? Lck 2008-09-16T23:43:23Z 2008-09-16T23:43:23Z <p>I'd suggest "<strong>Modern C++ Design</strong>" by <strong>Andrei Alexandrescu</strong>, a really astonishing book about the awesome tricks and patterns you can achieve with C++, preprocessor directives and templates.</p> <p><img src="http://ecx.images-amazon.com/images/I/516030XDD8L._SL500_AA240_.jpg" alt="Modern C++ Design" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/79230#79230 21 Answer by mike511 for What is the single most influential book every programmer should read? mike511 2008-09-17T02:21:07Z 2008-09-17T02:21:07Z <p>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.</p> <p><img src="http://www.wwnorton.com/cover/031604.GIF" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/79600#79600 4 Answer by Jonathan Barbero for What is the single most influential book every programmer should read? Jonathan Barbero 2008-09-17T03:19:18Z 2008-09-17T03:19:18Z <p><a href="http://www-cs-staff.stanford.edu/~uno/taocp.html" rel="nofollow">The Art of Computer Programming</a> without any doubt</p> <p><img src="http://upload.wikimedia.org/wikipedia/en/6/62/ArtOfComputerProgramming.jpg" alt="First Volume Hardcover" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/82863#82863 1 Answer by gio for What is the single most influential book every programmer should read? gio 2008-09-17T12:58:34Z 2008-09-17T12:58:34Z <p>for low level entertainment i would suggest <strong>Michael Abrash's</strong><br /> i) -Zen of Code Optimization- and<br /> ii) -Graphics Programming Black Book-<br /> even if you dont do any graphics programming. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/83753#83753 0 Answer by Thanatos for What is the single most influential book every programmer should read? Thanatos 2008-09-17T14:22:38Z 2008-09-17T14:22:38Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring: Improving the Design of Existing Code by Martin Fowler</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/86756#86756 2 Answer by Lot105 for What is the single most influential book every programmer should read? Lot105 2008-09-17T19:34:43Z 2008-09-17T19:34:43Z <p>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. </p> <p>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. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/86970#86970 0 Answer by workmad3 for What is the single most influential book every programmer should read? workmad3 2008-09-17T19:55:45Z 2008-09-17T19:55:45Z <p>There isn't a single book I can pinpoint as more influential than the rest. A lot of the books that I would consider as influential to my current knowledge also wouldn't have made sense to me when I started programming. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/90266#90266 0 Answer by Christophe Herreman for What is the single most influential book every programmer should read? Christophe Herreman 2008-09-18T05:24:32Z 2008-09-18T05:24:32Z <p>I would say that "<a href="http://www.lifebeyondcode.com/" rel="nofollow">Beyond Code - Learn to Distinguish Yourself in 9 Simple Steps</a>" is quite a good and motivational book. I doesn't cover technical issues, but it describes ways of working with people, being professional, ... For me, this is a book you can read again and again if you are in need of some pep talk. Besides that, it is cheap and very easy and enjoyable to read in 3 to 4 hours.</p> <p>There is a little review over at my blog: <a href="http://www.herrodius.com/blog/54" rel="nofollow">http://www.herrodius.com/blog/54</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/90853#90853 1 Answer by Ford for What is the single most influential book every programmer should read? Ford 2008-09-18T08:07:26Z 2008-09-18T08:07:26Z <p>Whether you are coding in Smalltalk or not <a href="http://rads.stackoverflow.com/amzn/click/013476904X" rel="nofollow" title="Smalltalk Best Practice Patterns">Smalltalk Best Practice Patterns</a> is a great read. Full of small observations that will change the way you code; for the better.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/95209#95209 0 Answer by dungema for What is the single most influential book every programmer should read? dungema 2008-09-18T18:17:30Z 2008-09-18T18:17:30Z <p>Agile Software Development, Principles, Patterns, and Practices by Robert C. Martin</p> <p><img src="http://ecx.images-amazon.com/images/I/519J3P8ANML._SL500_AA240_.jpg" alt="Agile Software Development" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/98780#98780 0 Answer by Dustman for What is the single most influential book every programmer should read? Dustman 2008-09-19T01:51:28Z 2008-09-19T01:51:28Z <p>Design Patterns, of course. And the UML User's Guide.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/99432#99432 1 Answer by Shabbyrobe for What is the single most influential book every programmer should read? Shabbyrobe 2008-09-19T03:51:56Z 2008-09-19T03:51:56Z <p>If you're involved with Enterprise Applications at all, Martin Fowler's <a href="http://martinfowler.com/books.html#eaa" rel="nofollow">Patterns of Enterprise Application Architecture</a> is a must-have.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/99737#99737 1 Answer by Brian Paden for What is the single most influential book every programmer should read? Brian Paden 2008-09-19T04:54:59Z 2008-09-19T04:54:59Z <p>Code Complete is the most influential by far, if I had the money I would buy copies and hand them out to every programmer I know.</p> <p>Since programmers are well known for their social skills :P</p> <p><img src="http://ecx.images-amazon.com/images/I/51JDKW8TV1L._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_.jpg" alt="How to Win Friends and Influence People" /></p> <p>Not that all programmers have problems dealing with people, anyone can benefit from reading this book.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/101134#101134 0 Answer by Simon Knights for What is the single most influential book every programmer should read? Simon Knights 2008-09-19T11:11:13Z 2008-09-19T11:11:13Z <p>"Code Complete" taught me some fundamental ways of thinking about programming.</p> <p>"Object Thinking" by David West.</p> <p>"The pleasure of finding things out" taken from various interviews with Richard Feynman - everyone should read this - programmer or not.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/110019#110019 1 Answer by Doug L. for What is the single most influential book every programmer should read? Doug L. 2008-09-21T02:14:44Z 2009-03-05T17:19:08Z <p>"<a href="http://www.seas.gwu.edu/~kaufman1/FortranColoringBook/ColoringBkCover.html" rel="nofollow">The Fortran Coloring Book</a>" by <a href="http://www.seas.gwu.edu/~kaufman1/" rel="nofollow">Dr. Roger Kaufman</a> (1978, ISBN:0262610264)</p> <p>What a silly concept - more basic than even a "Dummies" book! But it works for any language (with a few fortran specific examples of course), explaining the basic concepts of logic, variables, i/o, etc. in a very understandable and "Painfully Funny" way.</p> <p>It's enough to get a ten year old interested in programming...</p> <p><img src="http://farm1.static.flickr.com/155/390132231%5F6600db7b54%5Fm.jpg" alt="alt text" /></p> <p>(Found cover photo on a <a href="http://www.flickr.com/photos/believekevin/390132231/" rel="nofollow">Flickr user account</a>)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/110859#110859 0 Answer by MovingSpotlight for What is the single most influential book every programmer should read? MovingSpotlight 2008-09-21T12:09:30Z 2008-09-21T12:09:30Z <p>recommended for Windows Programmer, <a href="http://rads.stackoverflow.com/amzn/click/157231995X" rel="nofollow">Programming Windows</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/119305#119305 1 Answer by Krirk for What is the single most influential book every programmer should read? Krirk 2008-09-23T05:48:04Z 2008-09-23T05:48:04Z <p><img src="http://ecx.images-amazon.com/images/I/61dECNkdnTL._SL500_AA240_.jpg" alt="alt text" /></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0136152503" rel="nofollow">C++ How to Program</a> It is good for beginner.This is excellent book that full complete with 1500 pages.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/119314#119314 -1 Answer by d03boy for What is the single most influential book every programmer should read? d03boy 2008-09-23T05:52:17Z 2008-09-23T05:52:17Z <p>The dinosaur book about Operating Systems</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/130593#130593 0 Answer by CR for What is the single most influential book every programmer should read? CR 2008-09-24T23:29:29Z 2008-09-24T23:44:59Z <p>A Whole New Mind, by Daniel Pink. Interesting take on the future of our industry.</p> <p>I assume most of the folks reading this will have read the books at the top of the list already. So, i'll offer a book that takes a different look at our industry.</p> <p><img src="http://www.danpink.com/images/wnm.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/133131#133131 0 Answer by Edu Felipe for What is the single most influential book every programmer should read? Edu Felipe 2008-09-25T12:51:26Z 2008-09-25T12:51:26Z <p><img src="http://pixhost.eu/avaxhome/avaxhome/2007-01-19/CC.jpg" alt="Code Craft" /></p> <p>I personally think this is a little better than the venerable Code Complete. Pete Goodliffe has a very practical approach, and the book is a lighter read.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/147778#147778 9 Answer by J.F. Sebastian for What is the single most influential book every programmer should read? J.F. Sebastian 2008-09-29T07:09:35Z 2008-09-29T07:14:47Z <p>Strunk, William. <em>Elements of Style</em> </p> <p><img src="http://g-ecx.images-amazon.com/images/G/01/ciu/7c/58/025a820dd7a041df6344d010.L.jpg" alt="elements of style" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/164941#164941 0 Answer by Geoff Snowman for What is the single most influential book every programmer should read? Geoff Snowman 2008-10-02T22:46:35Z 2008-10-02T22:46:35Z <p>Anything by Edward Tufte: The Visual Display of Quantitative Information; Envisioning Information; Visual Explanations</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/168949#168949 -1 Answer by davidnicol for What is the single most influential book every programmer should read? davidnicol 2008-10-03T21:16:54Z 2008-10-03T21:16:54Z <p>beautiful code</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/168978#168978 2 Answer by spilth for What is the single most influential book every programmer should read? spilth 2008-10-03T21:26:46Z 2008-10-03T21:26:46Z <p>The Pragmatic Programmer</p> <p>And its best advice is to invest in your own knowledge by reading more books :-)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/169015#169015 2 Answer by Ray Tayek for What is the single most influential book every programmer should read? Ray Tayek 2008-10-03T21:43:27Z 2008-10-03T21:43:27Z <p>"clean code" by uncle bob is pretty good: <a href="http://books.slashdot.org/article.pl?sid=08/09/23/2243216&amp;from=rss" rel="nofollow">http://books.slashdot.org/article.pl?sid=08/09/23/2243216&amp;from=rss</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/169051#169051 22 Answer by levi rosol for What is the single most influential book every programmer should read? levi rosol 2008-10-03T21:55:34Z 2009-04-30T06:10:53Z <p>Surprised that no one has mentioned Martin Fowler's <a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow">Patterns of Enterprise Application Architecture</a> yet</p> <p><img src="http://ecx.images-amazon.com/images/I/51X1K7R6FGL.%5FSL500%5FBO2,204,203,200%5FAA219%5FPIsitb-sticker-dp-bottom,BottomLeft,25,43%5FSH20%5FOU01%5F.jpg" alt="alt text" /></p> <p>crap! didn't realize there are 7 pages of responses. at least this one has the book cover img.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/172083#172083 1 Answer by AviD for What is the single most influential book every programmer should read? AviD 2008-10-05T14:47:22Z 2008-10-05T14:47:22Z <p>One of the best books on what NOT to do is AntiPatterns (Refactoring Software, Architectures and Projects in Crisis) from Wiley.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/172085#172085 3 Answer by AviD for What is the single most influential book every programmer should read? AviD 2008-10-05T14:48:15Z 2009-10-13T08:08:11Z <p>Another book that has not been mentioned yet, and SHOULD be required reading for EVERY programmer, newbies on up to gurus, in ANY programming language, is Michael Howard's <a href="http://www.microsoft.com/learning/en/us/book.aspx?ID=5957&amp;locale=en-us" rel="nofollow">Writing Secure Code (2nd Edition)</a> from MSPress.</p> <p><img src="http://www.microsoft.com/Learning/Images/Books/Imgt/9780735617223F.gif" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/180619#180619 4 Answer by John Nilsson for What is the single most influential book every programmer should read? John Nilsson 2008-10-07T21:56:09Z 2008-10-07T21:56:09Z <p><img src="http://ecx.images-amazon.com/images/I/719KFS67JBL._SL500_AA240_.gif" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/180805#180805 -1 Answer by pookleblinky for What is the single most influential book every programmer should read? pookleblinky 2008-10-07T23:20:04Z 2008-10-07T23:20:04Z <p>George Polya's "How To Solve It"</p> <p>It might seem dry, overly mathematical, and antiquated, but there are few better books on learning how to break a seemingly formidable problem into workable sub-problems and how to learn from previous problems.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/183713#183713 1 Answer by Ben Godfrey for What is the single most influential book every programmer should read? Ben Godfrey 2008-10-08T16:38:38Z 2008-10-08T16:38:38Z <p></p> <p><a href="http://books.google.co.uk/books?hl=en&amp;id=3Ntz-UJzZN0C&amp;dq=facts+and+fallacies&amp;printsec=frontcover&amp;source=web&amp;ots=zeNETSf0qr&amp;sig=RoSzxFvdi7dohjf-qXGu3iDAmu8&amp;sa=X&amp;oi=book_result&amp;resnum=3&amp;ct=result" rel="nofollow">Facts and Fallacies of Software Engineering by Robert L. Glass</a> is a really excellent book. I had been a professional hacker for almost 10 years before I read it, and a I still learned a ton of stuff.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/197770#197770 0 Answer by for What is the single most influential book every programmer should read? 2008-10-13T14:29:56Z 2008-10-13T14:29:56Z <p>The key word in the question is "career". Read "How to Win Friends and Influence People". Nothing I've read made me even close to as much money and advanced my career as much as that book.</p> <p>To have a successful career, you will need to interact well with other people. You've probably been exposed to dozens of technical books in college. But how much did you study how to get along with your coworkers, bosses, customers, etc. in college? "How to Win Friends and Influence People" gives you a blueprint for that. Your career will be much much more successful and smoother.</p> <p>I was so astonished by this book, that I've given away about 30 copies of it. Not a single person has failed to be impressed by it.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/200877#200877 1 Answer by Tarski for What is the single most influential book every programmer should read? Tarski 2008-10-14T12:04:58Z 2008-10-14T12:04:58Z <p><img src="http://ecx.images-amazon.com/images/I/51HCJ5R42KL._SL500_BO2,204,203,200_AA219_PIsitb-sticker-dp-arrow,TopRight,-24,-23_SH20_OU02_.jpg" alt="Discrete Mathematics For Computer Scientists" /></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201360616" rel="nofollow">Discrete Mathematics For Computer Scientists</a> by J.K. Truss.</p> <p>While this doesn't teach you programming, it teaches you fundamental mathematics that every programmer should know. You may remember this stuff from university, but really, doing predicate logic will improve you programming skills, you need to learn Set Theory if you want to program using collections.</p> <p>There really is a lot of interesting information in here that can get you thinking about problems in different ways. It's handy to have, just to pick up once in a while to learn something new.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/205497#205497 1 Answer by the0ther for What is the single most influential book every programmer should read? the0ther 2008-10-15T16:51:06Z 2008-10-15T16:51:06Z <p>it was neat to see some people mention books i'd never heard of before, particularly SICP. i also think that little schemer is an awesome awesome book. i haven't seen anyone list this one yet. the art of unix programming.</p> <p><img src="http://ecx.images-amazon.com/images/I/51HJF%2B%2BjseL._SL500_BO2,204,203,200_AA219_PIsitb-sticker-dp-arrow,TopRight,-24,-23_SH20_OU01_.jpg" alt="the art of unix programming" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/215168#215168 0 Answer by Kaczor for What is the single most influential book every programmer should read? Kaczor 2008-10-18T15:34:29Z 2008-10-18T15:34:29Z <p>Dijkstra's "A Discipline of Programming"</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/215173#215173 1 Answer by sergio_petralia for What is the single most influential book every programmer should read? sergio_petralia 2008-10-18T15:39:15Z 2008-10-18T15:39:15Z <p>OK, so the question is not "what's the best programming book", but "if you could tell yourself what to read in the beginning of your career"...</p> <p>Probably one of "On Lisp" and SICP, plus one of CLRS or "Algorithms: a creative approach" by Udi Manber.</p> <p></p> <p>The first two will teach lots of programming techniques, patterns, and really open up one's mind to his/her own creativity; the other two are different. They're more theoretical, but also very important, focusing on design of correct and efficient algorithms (and requiring substantially more math).</p> <p>I see lots of people recommending the three first books when the subject of "good programming books" pops up, but the last one (by Manber) is a great book, and few people know it. It's a shame! Manber focuses on the incremental development of algorithms through theorem proving using induction.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/215195#215195 0 Answer by HeretoLearn for What is the single most influential book every programmer should read? HeretoLearn 2008-10-18T15:55:53Z 2008-10-18T15:55:53Z <p>If you write code in C then Expert C Programming is an eye opener. It has answers to all the things you wondered why it works this way. Peter Van Der Linden has a great writing style and makes arcane concepts very readable. A must read for all C developers</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/216923#216923 1 Answer by ptr128 for What is the single most influential book every programmer should read? ptr128 2008-10-19T20:25:45Z 2008-10-19T20:25:45Z <p>It should be <strong>Paulo Coelho - The Alchemist</strong>, because many programmers have low self-worth, narcissism disorders and are approval seeking. This means that they do what others tell them to do. And that they think that being programmer is worse than being a manager. Reading The Alchemist may discover them the truth: being engineer is a reason to be proud.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/217009#217009 0 Answer by Jorge Diaz Tambley for What is the single most influential book every programmer should read? Jorge Diaz Tambley 2008-10-19T21:25:17Z 2008-10-19T21:25:17Z <p>Mythical man month ++ Code Complete 2 ++</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/218652#218652 0 Answer by Mario Gleichmann for What is the single most influential book every programmer should read? Mario Gleichmann 2008-10-20T14:31:52Z 2008-10-20T14:31:52Z <p>You may take a look at </p> <p><a href="http://gleichmann.wordpress.com/2008/09/19/yet-another-book-recommendation-list-software-development/" rel="nofollow">http://gleichmann.wordpress.com/2008/09/19/yet-another-book-recommendation-list-software-development/</a></p> <p>I found thise books very valuable in the field of general software development.</p> <p>Greetings</p> <p>Mario</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/238388#238388 1 Answer by Jasper Bekkers for What is the single most influential book every programmer should read? Jasper Bekkers 2008-10-26T18:15:46Z 2009-07-04T09:10:59Z <p><a href="http://rads.stackoverflow.com/amzn/click/0812972155" rel="nofollow">Masters of doom.</a> As far as motivation and love for your profession go: it won't get any better than what's been described in this book, truthfully inspiring story!</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/249373#249373 0 Answer by Nikola Stjelja for What is the single most influential book every programmer should read? Nikola Stjelja 2008-10-30T05:48:24Z 2008-10-30T05:48:24Z <p>The books I suggest everbody to read are: Code complete Radpid development Head first software development Web engineering</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/263750#263750 2 Answer by nrl for What is the single most influential book every programmer should read? nrl 2008-11-04T22:40:29Z 2008-11-04T22:40:29Z <p>Nobody seems to have mentioned Stroustup's <a href="http://www.research.att.com/~bs/3rd.html" rel="nofollow">The C++ Programming Language</a> which is a great book that every C++ programmer should read.</p> <p>I also think that <a href="http://rads.stackoverflow.com/amzn/click/0321278658" rel="nofollow">Extreme Programming Explained: Embrace Change</a> should be read by every programmer and manager. Many of the ideas in the book are common knowledge now but the book gives an intelligent and inspiring account of the pursuit of quality in software engineering.</p> <p>I would second the recommendations for Knuth and Gang of Four which are classics.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/279632#279632 0 Answer by Klathzazt for What is the single most influential book every programmer should read? Klathzazt 2008-11-11T00:07:46Z 2008-11-11T00:07:46Z <p>Tao Te Ching - it transcends programming and will also help you deal with your own existence. Anyone unfamiliar with this text should find a copy and read through- as well as learn about the Tao. One easy way to learn is to read 'The Tao of poo' which walks through the main concepts of the Tao using Winnie the poo characters (not a childrens book).</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/281819#281819 5 Answer by Dave for What is the single most influential book every programmer should read? Dave 2008-11-11T18:53:01Z 2008-11-11T18:53:01Z <p>It's an oldie, but still worth reading:</p> <p><img src="http://g-ecx.images-amazon.com/images/G/01/ciu/6d/42/b6f5b2c008a049f6b5eb5010._AA240_.L.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/283721#283721 1 Answer by serfmum for What is the single most influential book every programmer should read? serfmum 2008-11-12T11:56:10Z 2008-11-12T11:56:10Z <p><a href="http://rads.stackoverflow.com/amzn/click/0131489062" rel="nofollow">Applying UML and Patterns</a> by Craig Larman.</p> <p>The title of the book is slightly misleading; it does deal with UML and patterns, but it covers so much more. The subtitle of the book tells you a bit more: An Introduction to Object-Oriented Analysis and Design and Iterative Development.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/290363#290363 0 Answer by Kramii for What is the single most influential book every programmer should read? Kramii 2008-11-14T15:12:41Z 2008-11-14T15:12:41Z <p><a href="http://allwrong.wordpress.com/2008/11/14/mini-book-review-graphics-programming-in-windows-charles-petzold/" rel="nofollow">Graphics Programming in Windows</a> is difficult to fault.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/301122#301122 1 Answer by Nicholas Piasecki for What is the single most influential book every programmer should read? Nicholas Piasecki 2008-11-19T05:57:39Z 2008-11-19T06:04:22Z <p><a href="http://rads.stackoverflow.com/amzn/click/0812906748" rel="nofollow">Systemantics: How Systems Work and Especially How They Fail</a>. Get it used cheap. But you might not get the humor until you've worked on a few failed projects.</p> <p>The beauty of the book is the copyright year.</p> <p>Probably the most profound takeaway "law" presented in the book:</p> <p><em>The Fundamental Failure-Mode Theorem (F.F.T.): Complex systems usually operate in failure mode.</em></p> <p>The idea being that there are failing parts in any given piece of software that are masked by failures in other parts or by validations in other parts. See a real-world example at the <a href="http://en.wikipedia.org/wiki/Therac-25" rel="nofollow">Therac-25 radiation machine</a>, whose software flaws were masked by hardware failsafes. When the hardware failsafes were removed, the software race condition that had gone undetected all those years resulted in the machine killing 3 people.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/304171#304171 1 Answer by stu for What is the single most influential book every programmer should read? stu 2008-11-20T02:31:39Z 2009-10-02T19:39:19Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201433079" rel="nofollow">Advanced Programming in the UNIX Environment</a> by W. Richard Stevens.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/311464#311464 -1 Answer by grigy for What is the single most influential book every programmer should read? grigy 2008-11-22T16:04:49Z 2008-11-22T16:10:41Z <p>This book</p> <p><img src="http://www.dorsethouse.com/art-books/pw100dpi.jpg" alt="alt text" /></p> <p><a href="http://www.dorsethouse.com/books/pw.html" rel="nofollow">Peopleware: Productive Projects and Teams</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/317750#317750 24 Answer by Motlin for What is the single most influential book every programmer should read? Motlin 2008-11-25T15:41:08Z 2009-10-23T02:52:33Z <p><img src="http://ecx.images-amazon.com/images/I/419EFaGEGvL.%5FSL500%5FAA240%5F.jpg" alt="Clean Code" /></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0132350882" rel="nofollow">Clean Code</a> has a lot in common with Code Complete but it's more concise and practical with lots of clear examples.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/317926#317926 1 Answer by CompaniaHill for What is the single most influential book every programmer should read? CompaniaHill 2008-11-25T16:18:23Z 2008-11-25T16:18:23Z <p>After K&amp;R, I'll second that vote for Programming Pearls.</p> <p>Why is the Brooklyn Bridge still standing while Galloping Gertie self-destructed in weeks? Every engineer should be fluent in the skill of making "back of the envelope" calculations and mentally keeping an eye on both the "forest and the trees" of their projects. The author Bently emphasizes their importance in every essay. Standing in line at a restaurant? Estimate your wait using the same math used in data queue analysis. How much water flows out of the mouth of the Mississippi river? Four different people use four unrelated methods to estimate an answer, all applicable to CPU processing speed calculations. And so on.</p> <p>These are vital, fundamental skills that, sadly, are going the way of the slide rule. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/334865#334865 0 Answer by gagneet for What is the single most influential book every programmer should read? gagneet 2008-12-02T18:00:22Z 2008-12-02T18:00:22Z <p>Writing Solid Code by Steve Maguire</p> <p>Code Complete by Steve McConnell</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/334872#334872 3 Answer by Adrian for What is the single most influential book every programmer should read? Adrian 2008-12-02T18:02:19Z 2008-12-02T18:02:19Z <p>As I started out developing in Java (and am still doing so to this very day) I'd have to recommend the outstanding work in the field: <a href="http://www.mrbunny.com/" rel="nofollow">Mr Bunny's Big Cup o' Java</a>.</p> <p>From the author's blurb:</p> <blockquote> <p>There is simply no better way to learn Java than to have the pineal gland of an expert Java programmer surgically implanted in your brain. Sadly, most HMOs refuse to pay for this career saving procedure, deeming Java to be too experimental. At last there is an alternative treatment for those of us who cannot wait for sweeping health care reforms.</p> <p>Mr. Bunny’s Big Cup O’ Java is recommended by n out of ten doctors, where n is any integer you wish to make up to impress an astoundingly gullible public. The book begins with an overview of the book, and quickly expands into the book itself. Just look at the topics covered:</p> <ul> <li>Java</li> </ul> <p>In short, MBBCOJ will teach you all you need to know for a successful career in today’s rabbit development environments.</p> </blockquote> <p><img src="http://ec1.images-amazon.com/images/I/4131SR0NM7L.jpg" alt="MBBCOJ" /></p> <p>The insight into pixels alone would have cut years off my software developing life.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/335491#335491 -1 Answer by bwalerius for What is the single most influential book every programmer should read? bwalerius 2008-12-02T21:19:14Z 2008-12-02T21:19:14Z <p>The Soul of a New Machine</p> <p><a href="http://en.wikipedia.org/wiki/The_Soul_of_a_New_Machine" rel="nofollow">http://en.wikipedia.org/wiki/The_Soul_of_a_New_Machine</a></p> <p></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/335672#335672 0 Answer by frosty for What is the single most influential book every programmer should read? frosty 2008-12-02T22:20:55Z 2008-12-02T22:20:55Z <p>Programming is a creative task, and there are a lot of great books about creative tasks in general. Here's one:</p> <p><strong><a href="http://rads.stackoverflow.com/amzn/click/1591841216" rel="nofollow">Whatever you think, think the opposite.</a></strong></p> <p><em>By <a href="http://en.wikipedia.org/wiki/Paul_Arden" rel="nofollow">Paul Arden</a>.</em></p> <p></p> <p>This is a small book that helps you generate big ideas. Arden came from an advertising background, but he wrote for a general audience of creative individuals. If you don't think that's you, you should think some more.</p> <p>Yes, there are great domain-specific books for programmers. But programmers, as creative professionals, should make more of an effort to tap into the broader world of books for "creatives."</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/343775#343775 1 Answer by andHapp for What is the single most influential book every programmer should read? andHapp 2008-12-05T13:10:45Z 2009-04-25T16:08:15Z <p><a href="http://www.industriallogic.com/xp/refactoring/" rel="nofollow">Refactoring to Patterns</a> by Joshua Kerievsky</p> <p><img src="http://www.informit.com/ShowCover.aspx?isbn=0321213351&amp;type=f" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/343789#343789 1 Answer by leppie for What is the single most influential book every programmer should read? leppie 2008-12-05T13:14:23Z 2008-12-05T13:14:23Z <p>I am still waiting for my copy of <a href="http://rads.stackoverflow.com/amzn/click/0521545668" rel="nofollow">LiSP</a>.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/345603#345603 1 Answer by Stephen for What is the single most influential book every programmer should read? Stephen 2008-12-06T00:18:05Z 2008-12-06T00:18:05Z <p>Etudes for Programmers by Charles Wetherell, More Programming Pearls (Jon Bently), </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/345605#345605 2 Answer by Stephen for What is the single most influential book every programmer should read? Stephen 2008-12-06T00:19:01Z 2008-12-06T00:19:01Z <p>Neuromancer by Gibson</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/346383#346383 2 Answer by mepcotterell for What is the single most influential book every programmer should read? mepcotterell 2008-12-06T15:26:44Z 2008-12-06T15:26:44Z <p><a href="http://www.pearsonhighered.com/educator/academic/product/0,3110,0201433079,00.html" rel="nofollow" title="Advanced Programming in the Unix Environment">Advanced Programming in the Unix Environment</a> by Stevens and Rago (2005 Addison-Wesley Professional)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/371191#371191 0 Answer by dario minonne for What is the single most influential book every programmer should read? dario minonne 2008-12-16T12:43:14Z 2008-12-16T12:43:14Z <p>Definitively Software Craftsmanship <img src="http://ecx.images-amazon.com/images/I/5186JKTDVWL._SL500_AA240_.jpg" alt="alt text" /> this book explains a lot of things about software engineering, system development. It's also extremly useful to understand the difference between different kind of product developement: web VS shrinkwrap VS IBM framework. What people had in mind when they conceived waterfall model? Read this and all we'll become clear (hopefully)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/378301#378301 1 Answer by Andrew Hanson for What is the single most influential book every programmer should read? Andrew Hanson 2008-12-18T16:00:28Z 2008-12-18T16:00:28Z <p>For me it was <a href="http://rads.stackoverflow.com/amzn/click/0201715945" rel="nofollow">Design Patterns Explained</a> it provided an 'Oh that's how it works' moment for me in regards to design patterns and has been very useful when teaching design patterns to others.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/378323#378323 -1 Answer by Nick for What is the single most influential book every programmer should read? Nick 2008-12-18T16:07:29Z 2008-12-18T16:07:29Z <p></p> <p>How to Win Friends &amp; Influence People "the grandfather of all people-skills books"</p> <p>because being a great programmer requires more than just technical skillz</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/378712#378712 17 Answer by lillq for What is the single most influential book every programmer should read? lillq 2008-12-18T18:12:09Z 2008-12-18T18:12:09Z <p><a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">Peopleware</a> by Tom DeMarco and Timothy Lister.</p> <p><img src="http://ecx.images-amazon.com/images/I/51MlUgcSICL._SS500_.jpg" alt="Peopleware" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/415359#415359 2 Answer by plaureano for What is the single most influential book every programmer should read? plaureano 2009-01-06T03:33:10Z 2009-01-06T03:33:10Z <p>The <a href="http://en.wikipedia.org/wiki/Tao_Te_Ching" rel="nofollow">Tao Te Ching</a>. Although it's a philosophy book and not a programming book, some of it's principles are very applicable to programming:</p> <blockquote> <p>"Know when it's time to stop. If you don't know then stop when you are done."</p> </blockquote> <p><strong>Translation:</strong> Knowing your requirements means you know when to stop. If you don't know when to stop, you need to stop because the requirements have yet to be defined.</p> <blockquote> <p>"The harder one tries, the more resistance one creates for oneself."</p> </blockquote> <p><strong>Translation:</strong> How many times have you worked on a problem for several hours, only to find the answer after taking a 15-minute break? The more you hammer at a problem, the harder it is going to be for you to solve it.</p> <blockquote> <p>"One whose needs are simple can fulfill them easily."</p> </blockquote> <p><strong>Translation:</strong> Simple requirements lead to simple designs.</p> <blockquote> <p>"When we lose the fundamentals, we supplant them with increasingly inferior values which we pretend are the true values."</p> </blockquote> <p><strong>Translation:</strong> Hubris is never a good substitute for good programming standards. If you get lax, no amount of design patterns will ever substitute for the lack of quality in your code.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/440028#440028 0 Answer by Chris Gallucci for What is the single most influential book every programmer should read? Chris Gallucci 2009-01-13T17:50:48Z 2009-01-13T17:50:48Z <p>Still a worthwhile classic is the <a href="http://homepage.mac.com/bradster/iarchitect/shame.htm" rel="nofollow">Interface Hall of Shame</a>. This website detailed a huge assortment of interface design faux pas that is quite entertaining. The original iarchitect.com no longer exists, but others have re-established the HOS on their own websites.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/444785#444785 0 Answer by BillD for What is the single most influential book every programmer should read? BillD 2009-01-14T21:35:53Z 2009-01-14T21:35:53Z <p><a href="http://rads.stackoverflow.com/amzn/click/020163385X" rel="nofollow">Object Oriented Design Heuristics</a> is a great read. I couldn't put it down.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/444828#444828 0 Answer by Kent Beck for What is the single most influential book every programmer should read? Kent Beck 2009-01-14T21:46:58Z 2009-01-14T21:46:58Z <p>I'll add a couple that I haven't seen here that are influential for me:</p> <ul> <li>Yourdon and Constantine, "Structured Design". Everything you need to know about software design is in here, if you're willing to dig for it a little.</li> <li>Leonard Koren, "Wabi-Sabi: for Artists, Designers, Poets &amp; Philosophers". A pragmatic philosophy balancing beauty and pragmatism. </li> </ul> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/450274#450274 1 Answer by vatine for What is the single most influential book every programmer should read? vatine 2009-01-16T12:23:56Z 2009-01-16T12:23:56Z <p>Not a programming book, per se, but <a href="http://en.wikipedia.org/wiki/The_Soul_of_a_New_Machine" rel="nofollow"><i>The soul of a new machine</i></a><a href="http://rads.stackoverflow.com/amzn/click/0316491977" rel="nofollow">[Amazon]</a> by Tracy Kidder. It gives a rare insight in how computers are designed, from the bus up (as it were) and the trade-offs between what's provided as machine instructions and what's left to software.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/460604#460604 -1 Answer by Adam Hawes for What is the single most influential book every programmer should read? Adam Hawes 2009-01-20T09:41:50Z 2009-10-02T18:51:43Z <p>The one that I read back to front was</p> <blockquote> <p><a href="http://catb.org/~esr/writings/taoup/html/" rel="nofollow">The Art of Unix Programming</a> by Eric S Raymond (ESR)</p> </blockquote> <p>I started online then paid for the print version. Even if you don't program on Unix the ideas in the book are generally applicable.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/468971#468971 5 Answer by swamy for What is the single most influential book every programmer should read? swamy 2009-01-22T12:44:07Z 2009-01-22T12:44:07Z <p><a href="http://www.canonical.org/~kragen/tao-of-programming.html" rel="nofollow" title="The Tao Of Programming">The Tao of Programming</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/471147#471147 2 Answer by Pete Kirkham for What is the single most influential book every programmer should read? Pete Kirkham 2009-01-22T22:41:11Z 2009-01-22T22:41:11Z <p>Not the most influential, but worth a look is <a href="http://rads.stackoverflow.com/amzn/click/0436205823" rel="nofollow">Youth</a> by J.M.Coetzee.</p> <p>The narrator of Youth, a student in the South Africa of the 1950s, has long been plotting an escape from his native country: from the stifling love of his mother, from a father whose failures haunt him, and from what he is sure is impending revolution. Studying mathematics, reading poetry, saving money, he tries to ensure that when he arrives in the real world, wherever that may be, he will be prepared to experience life to its full intensity, and transform it into art. Arriving at last in London, however, he finds neither poetry nor romance. Instead he succumbs to the monotony of life as a computer programmer, from which random, loveless affairs offer no relief. Devoid of inspiration, he stops writing. An awkward colonial, a constitutional outsider, he begins a dark pilgrimage in which he is continually tested and continually found wanting.</p> <p><img src="http://img440.imageshack.us/img440/5140/youthgd4.jpg" alt="youth cover" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/492348#492348 2 Answer by _rick _schott for What is the single most influential book every programmer should read? _rick _schott 2009-01-29T16:28:06Z 2009-01-29T16:28:06Z <p>Hands down <a href="http://rads.stackoverflow.com/amzn/click/0596007124" rel="nofollow">Head First Design Patterns</a>!</p> <p>It not only teaches you about design patterns, but also gives you real world problems they solve. Most notable, it walks you through the wrong ways to solve the problems, and the common mistakes, which I think is most beneficial.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/542091#542091 4 Answer by Mr Grieves for What is the single most influential book every programmer should read? Mr Grieves 2009-02-12T16:17:31Z 2009-02-12T16:17:31Z <p>Dilbert's Guide To The Rest Of Your Life: Dispatches from Cubicleland</p> <p><img src="http://ecx.images-amazon.com/images/I/51b%2Bm%2BYOGoL._SL500_AA240_.jpg" alt="alt text" /></p> <p>This is more truth than you'd think.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/543385#543385 9 Answer by Ether for What is the single most influential book every programmer should read? Ether 2009-02-12T21:30:03Z 2009-08-24T03:02:50Z <p><a href="http://en.wikipedia.org/wiki/How_to_Win_Friends_and_Influence_People" rel="nofollow"><b>How to Win Friends and Influence People</b></a> by Dale Carnegie.</p> <p>It taught me that in order to persuade people of your ideas, or lead them away from bad practices, <b>you can never tell them that they are wrong</b>. To do so will only entrench them further in their own ideas.</p> <p><img src="http://g-ecx.images-amazon.com/images/G/01/ciu/38/3c/0432c6da8da0f79a93332110._AA240_.L.jpg"/></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/545878#545878 2 Answer by Edison Gustavo Muenz for What is the single most influential book every programmer should read? Edison Gustavo Muenz 2009-02-13T13:15:24Z 2009-02-13T13:15:24Z <p><img src="http://www.cs.cornell.edu/Courses/cs414/2007sp/tanenbaum.jpg" alt="alt text" /></p> <p>Not the most important, but a very fundamental one</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/555121#555121 2 Answer by emirc for What is the single most influential book every programmer should read? emirc 2009-02-17T00:15:31Z 2009-02-17T00:15:31Z <p>Well, if I had to choose a single book it is definitely "Code Complete". To take the "righteous path" as a programmer - "Pragmatic Programmer" is also great.</p> <p>A book that was an "eye-opener" for me, although I didn't expect it from such a book, is "The C++ Programming Language" by Bjarne Stroustrup.</p> <p>And, finally, I would mention two Fowler's "classics" - "Patterns of Enterprise Architecture" and "Refactoring".</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/562308#562308 1 Answer by Sameer for What is the single most influential book every programmer should read? Sameer 2009-02-18T18:32:58Z 2009-02-18T18:32:58Z <p><a href="http://rads.stackoverflow.com/amzn/click/069111966X" rel="nofollow">How to Solve It: A new aspect of mathematical method</a> Although not directly related to computer programming but it does teach you the art of problem solving and that's what computer programming is all about.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/576885#576885 0 Answer by Tommy for What is the single most influential book every programmer should read? Tommy 2009-02-23T08:26:05Z 2009-02-23T09:04:56Z <p>Structure and Interpretation of Compunter Programs(SICP) of course. Such a good book.</p> <p>And the book Functional Programming Using Standard ML, Prentice-Hall, 1987 by Åke Wikström. Åke's book taught me the importance to abstract, that the human brain can only handle like 4-6 concepts at the same time. Abstraction makes it possible to generalize and therefore handle more concepts at the same time.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/604291#604291 0 Answer by Peter Girard for What is the single most influential book every programmer should read? Peter Girard 2009-03-02T22:23:43Z 2009-03-02T22:23:43Z <p>I saw a review of <a href="http://rads.stackoverflow.com/amzn/click/0471202843" rel="nofollow" title="Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools">Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools</a> on a blog talking also about <a href="http://www.xifactory.com" rel="nofollow">XI-Factory</a>, I read it and I must say this book is a must read. Altough not specifically targetted to programmers, it explains very clearly what is happening in the programming world right now with Model-Driven Architecture and so on.. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/633289#633289 0 Answer by egyamado for What is the single most influential book every programmer should read? egyamado 2009-03-11T04:06:22Z 2009-10-02T19:56:28Z <p><a href="http://rads.stackoverflow.com/amzn/click/0470261293" rel="nofollow">Beginning C# 3.0: An Introduction to Object Oriented Programming</a> </p> <p>This is the book for those who want to understand the whys and hows of OOP using C# 3.0. You don't want to miss it. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/639909#639909 1 Answer by nandokakimoto for What is the single most influential book every programmer should read? nandokakimoto 2009-03-12T18:31:29Z 2009-03-12T18:31:29Z <p>I'm reading now <a href="http://rads.stackoverflow.com/amzn/click/0135974445" rel="nofollow">Agile Software Development, Principles, Patterns and Practices</a>. For those interested in XP and Object-Oriented Design, this is a classic reading.</p> <p></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/664822#664822 1 Answer by Charlie Flowers for What is the single most influential book every programmer should read? Charlie Flowers 2009-03-20T02:45:42Z 2009-03-20T02:45:42Z <p>Here's an excellent book that is not as widely applauded, but is full of deep insight: <a href="http://rads.stackoverflow.com/amzn/click/0321482751" rel="nofollow">Agile Software Development: The Cooperative Game</a>, by Alistair Cockburn. </p> <p>What's so special about it? Well, clearly everyone has heard the term "Agile", and it seems most are believers these days. Whether you believe or not, though, there are some deep principles behind why the Agile movement exists. This book uncovers and articulates these principles in a precise, scientific way. Some of the principles are (btw, these are my words, not Alistair's):</p> <ol> <li>The hardest thing about team software development is getting everyone's brains to have the same understanding. We are building huge, elaborate, complex systems which are invisible in the tangible world. The better you are at getting more peoples' brains to share deeper understanding, the more effective your team will be at software development. <strong>This is the underlying reason that pair programming makes sense. Most people dismiss it (and I did too initially), but with this principle in mind I highly recommend that you give it another shot. You wind up with TWO people who deeply understand the subsystem you just built ... there aren't many other ways to get such a deep information transfer so quickly. It is like a Vulcan mind meld.</strong></li> <li>You don't always need words to communicate deep understanding quickly. And a corollary: too many words, and you exceed the listener/reader's capacity, meaning the understanding transfer you're attempting does not happen. Consider that children learn how to speak language by being "immersed" and "absorbing". Not just language either ... he gives the example of some kids playing with trains on the floor. Along comes another kid who has never even <strong>SEEN</strong> a train before ... but by watching the other kids, he picks up the gist of the game and plays right along. This happens all the time between humans. This along with the corollary about too many words helps you see how misguided it was in the old "waterfall" days to try to write 700 page detailed requirements specifications.</li> </ol> <p>There is so much more in there too. I'll shut up now, but I HIGHLY recommend this book!</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/686843#686843 1 Answer by Ralph Shillington for What is the single most influential book every programmer should read? Ralph Shillington 2009-03-26T17:44:12Z 2009-03-26T17:44:12Z <p>Difficult to get your hands on it now, but <a href="http://rads.stackoverflow.com/amzn/click/020103669X" rel="nofollow">Software Tools</a> by Brian W. Kernighan and P.J. Plauger, is always time well spent.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/686876#686876 0 Answer by Stefano Borini for What is the single most influential book every programmer should read? Stefano Borini 2009-03-26T17:55:36Z 2009-03-26T17:55:36Z <p>I would not read a book. I would read someone else's code, then find a proper simple book for that language. That's what I did at the beginning of my passion. In my case, I dug into Commodore 64 BASIC code from journals (at that time, source was shared on dead-tree support, and it was up to you to type it). I then received a BASIC book as a gift (I was a child back then) and started tinkering, but this after I mindlessly typed in all the code, and checked what it did.</p> <p>I did the same when I learned C. I first started with source code from a chat server, and then bought C for dummies (yep, fast and dirty, but I went somewhere). From there, I continued tinkering and at the same time getting additional knowledge from books.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/712995#712995 0 Answer by asifch for What is the single most influential book every programmer should read? asifch 2009-04-03T08:15:06Z 2009-04-03T08:15:06Z <p>I think the Best Software Writings will also be a really good read.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/713901#713901 7 Answer by binil for What is the single most influential book every programmer should read? binil 2009-04-03T13:27:07Z 2009-04-03T13:27:07Z <p><strong>The Elements Of Computing Systems</strong></p> <p>This book walks the reader through the process of building a computer system given NAND gates and flip flops. It gives a good introduction to the "big picture".</p> <p><img src="http://mitpress.mit.edu/images/products/books/026214087X-medium.jpg" alt="The Elements Of Computing Systems" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/789327#789327 -1 Answer by Ron Romero for What is the single most influential book every programmer should read? Ron Romero 2009-04-25T17:00:27Z 2009-04-25T17:00:27Z <p>I'm sorry, I have to reject the question. If I could go back and tell myself which <em>one</em> book to read, I wouldn't. I would tell myself to constantly keep up with the latest trends in books and to read voraciously. All the books in the section are great books, but reading just one wouldn't help you.</p> <p>Or, alternatively, the best book to read is the Internet. Then go from there and read books people recommend. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/812311#812311 1 Answer by Oakcool for What is the single most influential book every programmer should read? Oakcool 2009-05-01T17:16:46Z 2009-10-02T19:53:23Z <p><a href="http://en.wikipedia.org/wiki/The%5FArt%5Fof%5FWar" rel="nofollow">The Art of War</a> by Sun Tzu.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/824595#824595 0 Answer by Jon Harrop for What is the single most influential book every programmer should read? Jon Harrop 2009-05-05T12:13:25Z 2009-05-05T12:13:25Z <p><a href="http://www.ffconsultancy.com/products/ocaml%5Ffor%5Fscientists/?so" rel="nofollow"><img src="http://www.ffconsultancy.com/products/images/ofs.gif" alt="OCaml for Scientists" /></a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/848421#848421 0 Answer by Chandrasekhar for What is the single most influential book every programmer should read? Chandrasekhar 2009-05-11T14:36:06Z 2009-05-11T14:36:06Z <p>"Introduction to Functional Programming", Philip Bird and Richard Wadler. (First Edition)</p> <p>I am still reading this book. I am liking it very much.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/900192#900192 0 Answer by nojevive for What is the single most influential book every programmer should read? nojevive 2009-05-22T22:04:07Z 2009-05-22T22:04:07Z <p>I have found that the first edition of <a href="http://upload.wikimedia.org/wikipedia/en/9/91/C%5Fplus%5Fplus%5Fbook.jpg" rel="nofollow">The C++ programming language</a> had a big influence on my programming. I also own the second and third version. There are other C++ books I really liked, such as <a href="http://www.research.att.com/~bs/dne.html" rel="nofollow">The Design and Evolution of C++</a>.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/901152#901152 0 Answer by Curt Sampson for What is the single most influential book every programmer should read? Curt Sampson 2009-05-23T08:39:08Z 2009-05-23T08:39:08Z <p><a href="http://www.info.ucl.ac.be/~pvr/book.html" rel="nofollow"><img src="http://www.info.ucl.ac.be/people/PVR/bookcover.html" alt="Concepts, Techniques and Models of Computer Programming" /></a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/913295#913295 1 Answer by Jherico for What is the single most influential book every programmer should read? Jherico 2009-05-26T23:33:05Z 2009-05-26T23:33:05Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201510596" rel="nofollow">Algorithms in C++</a> was invaluable to me in learning Big O notation and the ins and outs of the various sort algorithms. This was published before Sedgewick decided he could make more money by dividing it into 5 different books. </p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201309831" rel="nofollow">C++ FAQs</a> is an amazing book that really shows you what you should and shouldn't be doing in C++. The backward compatibility of C++ leaves a lot of landmines about and this book helps one carefully avoid them while at the same time being a good introduction into OO design and intent.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/946857#946857 3 Answer by mike for What is the single most influential book every programmer should read? mike 2009-06-03T20:01:04Z 2009-10-02T19:51:51Z <p>Kernighan &amp; Plauger's <a href="http://rads.stackoverflow.com/amzn/click/0070342075" rel="nofollow">Elements of Programming Style</a>. It illustrates the difference between gimmicky-clever and elegant-clever. </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/960996#960996 1 Answer by Phaedrus for What is the single most influential book every programmer should read? Phaedrus 2009-06-07T01:45:29Z 2009-06-07T01:45:29Z <p><a href="http://rads.stackoverflow.com/amzn/click/0735625921" rel="nofollow">Solid Code Optimizing the Software Development Life Cycle</a> </p> <p>Although the book is only 300 pages and favors Microsoft technologies it still offers some good language agnostic tidbits.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/962377#962377 2 Answer by tr9sh for What is the single most influential book every programmer should read? tr9sh 2009-06-07T17:38:52Z 2009-06-07T17:38:52Z <p>One of my personal favorites is <a href="http://rads.stackoverflow.com/amzn/click/0201914654" rel="nofollow">Hacker's Delight</a>, because it was as much fun to read as it was educational.</p> <p>I hope the second edition will be released soon!</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/963028#963028 2 Answer by Dustin Stevens-Baier for What is the single most influential book every programmer should read? Dustin Stevens-Baier 2009-06-07T23:29:43Z 2009-06-07T23:29:43Z <p>For me it was Code Craft.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/972198#972198 1 Answer by Sylvain for What is the single most influential book every programmer should read? Sylvain 2009-06-09T19:59:23Z 2009-06-09T20:05:31Z <p>I read most of the books having an high score on this question - but not all of them (thanks God !) and I added the others one to my <strong>Amazon Wish List</strong> right away !</p> <p>(Someone should create a list on Amazon for these books... Maybe a list named : "Stackoverflow best books ever" ? <strong>Anyone know how to do that ?</strong>)</p> <p>To me, the best book ever has been <strong>Code Complete</strong>. It was a revelation. I bought the 2nd edition in english and then in French and I still think it should be a mandatory reading in any computer science school. Data structure is cool but Code complete, no joke, is much more important...</p> <p>Then, my second best book was <strong>Writing Solid Code</strong> - having learn how to be understood, it was great to know how to write solid code.</p> <p>Then a lot of very nice books but no one to mention here. Until 2001, I think : <strong>Framework Design Guidelines</strong>: Conventions, Idioms, and Patterns for Reusable .NET Libraries. A jewel ! I read this book many times and it's still on my desk, just beside my LCD, along with Code Complete (really !). I Love the way it has been written (love the comment that has been added here and there - books should all be written like that !)</p> <p>But well, I forget the very first great books I've read ! The ones who make me <em>love</em> computer science, with passion :</p> <ul> <li><strong>Compute!</strong> (C64 magazine - Will never forget <strong>Jim Butterfly</strong> :o)</li> <li><strong>Borland C++ User Guides</strong> (the old ones, circa 1991, those who tried to introduce object oriented programming, very nicely written).</li> <li>Most <strong>Microsoft Developpement Tools User Guides</strong>, circa 1990-1995. Don't know who were writing them, but they was pretty cool ! I remember reading them late in the night, on saturdays...</li> </ul> <p>Well, excellent question :o)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/998731#998731 0 Answer by Jesus Rodriguez for What is the single most influential book every programmer should read? Jesus Rodriguez 2009-06-15T22:22:11Z 2009-10-02T18:48:47Z <p>I'm with many others. <a href="http://en.wikipedia.org/wiki/The%5FC%5FProgramming%5FLanguage%5F%28book%29" rel="nofollow">The C Programming Language</a> (K&amp;R) is probably one of the most influential book of programming :)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1055376#1055376 1 Answer by amit.dev for What is the single most influential book every programmer should read? amit.dev 2009-06-28T17:55:18Z 2009-06-28T17:55:18Z <p><a href="http://rads.stackoverflow.com/amzn/click/0262220695" rel="nofollow">Concepts, Techniques, and Models of Computer Programming.</a></p> <p><img src="http://ecx.images-amazon.com/images/I/51YZ50ZR13L.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1055390#1055390 5 Answer by Tobias Svensson for What is the single most influential book every programmer should read? Tobias Svensson 2009-06-28T18:01:19Z 2009-06-28T18:01:19Z <p><img src="http://ecx.images-amazon.com/images/I/41TPTCK9NJL.%5FSS500%5F.jpg" alt="alt text" /></p> <p>Christopher Alexander - <a href="http://en.wikipedia.org/wiki/The%5FTimeless%5FWay%5Fof%5FBuilding" rel="nofollow">The Timeless Way of Building</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1095924#1095924 7 Answer by Bo Tian for What is the single most influential book every programmer should read? Bo Tian 2009-07-08T02:59:42Z 2009-10-02T18:47:03Z <p><a href="http://www.pragprog.com/titles/ahptl/pragmatic-thinking-and-learning" rel="nofollow">Pragmatic Thinking and Learning: Refactor Your Wetware</a> by Andy Hunt.</p> <p><img src="http://covers.oreilly.com/images/9781934356050/lrg.jpg" width="300"></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1102045#1102045 1 Answer by Dean Povey for What is the single most influential book every programmer should read? Dean Povey 2009-07-09T05:53:37Z 2009-10-02T18:46:36Z <p>Clean Code by Robert Martin.</p> <p>This book completely changed the way I wrote code (for the better). The first couple of chapters are the best.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1130558#1130558 2 Answer by Roubachof for What is the single most influential book every programmer should read? Roubachof 2009-07-15T10:18:57Z 2009-10-02T18:45:59Z <p>All the <strong>Thinking in...</strong> books.</p> <p><strong>Bruce Eckel</strong> is THE genious of pedagogy! It's so easy to understand the implementation of polymorphism in C++. It contains all that you should known about C++, basic and advanced concepts. Way better than the Stroustrup's. I learnt Java with him too.</p> <p>And last but not the least:</p> <p>The C++ one is free !</p> <p><a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1169055#1169055 5 Answer by Shane for What is the single most influential book every programmer should read? Shane 2009-07-23T00:57:45Z 2009-10-02T18:45:10Z <p>I know this is a graphics book, but I am a graphics programmer and have been my whole career. Plus it's written in 'C' :)</p> <p>It's as fundamental to me as the original <a href="http://amzn.com/0131103628" rel="nofollow">K&amp;R C Programming Language</a> book.</p> <p><a href="http://amzn.com/0201848406" rel="nofollow">Computer Graphics: Principles and Practice in C (2nd Edition)</a> <img src="http://introtextbooks.com/wwwstatic/gfx/cover/foley-computer-graphics-principles-and-practice-in-c-2e.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1169080#1169080 7 Answer by Nate for What is the single most influential book every programmer should read? Nate 2009-07-23T01:08:51Z 2009-10-02T18:44:22Z <p>I'm amazed that no one has suggested <a href="http://rads.stackoverflow.com/amzn/click/0448421658" rel="nofollow">The Story About Ping</a> yet.</p> <p><img src="http://img505.imageshack.us/img505/4093/0140502416.jpg" alt="If this text is displayed then the link to the image may be broken - apologies to Lynx users." /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1169110#1169110 2 Answer by TahoeWolverine for What is the single most influential book every programmer should read? TahoeWolverine 2009-07-23T01:24:27Z 2009-07-23T01:24:27Z <p><img src="http://mpbeno.files.wordpress.com/2009/02/innovatorsdilemma1.jpg" alt="alt text" /></p> <p>This last year I took a number of classes. I read<br/></p> <p><a href="http://books.google.com/books?id=lqKho8KWXmAC&amp;dq=the+innovator%27s+dilemma&amp;printsec=frontcover&amp;source=bn&amp;hl=en&amp;ei=MLhnSu_-DJWHlAev4LjgCQ&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=4" rel="nofollow">The Innovator's Dilemma (disruptive tech)</a><br/> <a href="http://en.wikipedia.org/wiki/The_Mythical_Man-Month" rel="nofollow">The Mythical Man Month (managing software)</a><br/> <a href="http://en.wikipedia.org/wiki/Crossing_the_Chasm" rel="nofollow">Crossing the Chasm (startup)</a><br/> <a href="http://pages.cs.wisc.edu/~dbbook/" rel="nofollow">Database Management Systems, The COW Book</a><br/> <a href="http://oreilly.com/catalog/9780596003098/" rel="nofollow">Programming C#, The OSTRICH Book</a><br/> <a href="http://www.apress.com/book/view/1430216263" rel="nofollow">Beginning iPhone Developmen, The GRAPEFRUIT Book</a><br/></p> <p>Each book was amazing but the Innovator's Dilemma by Clayton Christensen (1997!!!) is really a fantastic book, and it got me really thinking about the modern software world. The challenge addressed is disruptive technology, and how disk drive companies and non-technical companies are always disrupted by new, game changing technology. It gives one a new perspective when thinking about Google, probably the biggest 'web' company. Why do they have their hands in EVERYTHING? It's because they don't want to have their position <i>disrupted</i> by something new. The preview on google is plenty to get the idea. Read it!</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1169124#1169124 2 Answer by Ariel for What is the single most influential book every programmer should read? Ariel 2009-07-23T01:30:31Z 2009-07-23T01:30:31Z <p>Adding to the great ones mentioned above:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow">Patterns of Enterprise Application Architecture</a></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321200683" rel="nofollow">Enterprise Integration Patterns</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1176659#1176659 1 Answer by pablo for What is the single most influential book every programmer should read? pablo 2009-07-24T09:43:39Z 2009-07-24T09:43:39Z <p>Don't know if anyone mentioned it but I would recommend the book from Uncle Bob Martin.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1176722#1176722 4 Answer by Kb for What is the single most influential book every programmer should read? Kb 2009-07-24T09:56:10Z 2009-10-02T18:42:08Z <p>I enjoyed <a href="http://rads.stackoverflow.com/amzn/click/0131857258" rel="nofollow">Agile Principles, Patterns, and Practices in C# (Robert C. Martin Series)</a>.</p> <p><img src="http://www.freeimagehosting.net/uploads/26440c3009.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1208099#1208099 3 Answer by Christy John for What is the single most influential book every programmer should read? Christy John 2009-07-30T17:29:05Z 2009-07-30T17:29:05Z <p>First read the best books regarding your language of choice and then regarding you OS of choice.</p> <p>Then once you get the grasp of the language, please go through these language agnostic books. 1) Code Complete - Steve McConnell <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670</a></p> <p>2)Design Patterns: Elements of Reusable Object-Oriented Software - Erich Gamma Erich Gamma , Richard Helm, Ralph Johnson, John M. Vlissides <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612/ref=sr_1_1?ie=UTF8&amp;qid=1248974754&amp;sr=8-1</a></p> <p>3)The Pragmatic Programmer - Andrew Hunt and Dave Thomas <a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">http://www.amazon.com/Pragmatic-Programmer-Journeyman-Master/dp/020161622X/ref=sr_1_1?ie=UTF8&amp;qid=1248974843&amp;sr=8-1</a></p> <p>4)Refactoring: Improving the Design of Existing Code - Martin Fowler, Kent Beck, John Brant, and William Opdyke <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">http://www.amazon.com/Refactoring-Improving-Existing-Addison-Wesley-Technology/dp/0201485672/ref=sr_1_1?ie=UTF8&amp;qid=1248974905&amp;sr=8-1</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1221674#1221674 -1 Answer by Chloe for What is the single most influential book every programmer should read? Chloe 2009-08-03T10:43:26Z 2009-08-03T10:43:26Z <p>Rich Dad Poor Dad, to realize that programming is just another job, and one that can be outsourced at that, and to focus on "minding my own business" instead rather than trading dollars for hours.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1227968#1227968 3 Answer by tr3 for What is the single most influential book every programmer should read? tr3 2009-08-04T14:51:48Z 2009-10-02T18:40:38Z <p>I don't know if it were already suggested but:</p> <p><img src="http://img2.libreriauniversitaria.it/BUS/300/465/9780521294652.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1232808#1232808 2 Answer by scim for What is the single most influential book every programmer should read? scim 2009-08-05T12:03:57Z 2009-08-06T00:20:45Z <p>Since I'm a C# programmer and most generic books already has been mentioned I'd like to recommend Bill Wagner's book <a href="http://srtsolutions.com/blogs/billwagner/archive/2008/10/17/more-effective-c-available-now.aspx" rel="nofollow">"More Effective C#</a>.</p> <p>I think most people that develop composite WPF-applications also should have a look at Microsoft's Composite Application Guidance (also known as Prism):</p> <p><a href="http://www.codeplex.com/CompositeWPF" rel="nofollow">Composite Application Guidance</a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1239162#1239162 4 Answer by arsane for What is the single most influential book every programmer should read? arsane 2009-08-06T14:15:16Z 2009-08-06T14:27:00Z <p>This book really set up a fundermental view that a programmer need to know about computer.</p> <p><img src="http://www.cs.uml.edu/~fredm/courses/91.305-fall03/pix/csapp.jpg" alt="alt text" title="Computer System - A programmer's perspective" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1293032#1293032 2 Answer by Ryan Fernandes for What is the single most influential book every programmer should read? Ryan Fernandes 2009-08-18T10:20:42Z 2009-08-18T10:20:42Z <p><a href="http://rads.stackoverflow.com/amzn/click/0932633692" rel="nofollow">Perfect Software: And Other Illusions about Testing</a></p> <p><img src="http://ecx.images-amazon.com/images/I/51j3BSRspAL.%5FSL500%5FAA240%5F.jpg" alt="TITLE Cover" /></p> <p><strong>Perfect Software: And Other Illusions about Testing</strong> <em>by Gerald M. Weinberg</em></p> <p>ISBN-10: 0932633692</p> <p>ISBN-13: 978-0932633699</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1306790#1306790 2 Answer by lapinferoce for What is the single most influential book every programmer should read? lapinferoce 2009-08-20T15:02:47Z 2009-10-02T18:39:10Z <p><a href="http://en.wikipedia.org/wiki/The%5FC%5FProgramming%5FLanguage%5F%28book%29" rel="nofollow">The C Programming Language</a> by Brian Kernighan and Dennis Ritchie. It is sometimes referred to as K&amp;R, or the white bible, or K&amp;R2 for the second edition.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1308751#1308751 6 Answer by Dave Nichol for What is the single most influential book every programmer should read? Dave Nichol 2009-08-20T20:55:29Z 2009-08-20T20:55:29Z <p>How influential a book is often depends on the reader and where they were in their career when they read the book. I have to give a shout-out to <a href="http://rads.stackoverflow.com/amzn/click/0596007124" rel="nofollow">Head First Design Patterns</a>. Great book and the very creative way it's written should be used as an example for other tech book writers. I.e. it's written in order to facilitate learning and internalizing the concepts. </p> <p><img src="http://ecx.images-amazon.com/images/I/51LSqrgoT1L.%5FSS500%5F.jpg" alt="Head First Design Patterns" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1308850#1308850 1 Answer by Nick for What is the single most influential book every programmer should read? Nick 2009-08-20T21:12:37Z 2009-10-02T18:36:19Z <p>Got to go with Sun Tzu's <a href="http://en.wikipedia.org/wiki/The%5FArt%5Fof%5FWar" rel="nofollow">The Art of War</a>.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1322172#1322172 2 Answer by ClaudioA for What is the single most influential book every programmer should read? ClaudioA 2009-08-24T12:45:59Z 2009-10-02T18:34:54Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201113716" rel="nofollow">Smalltalk-80: The Language and its Implementation</a> AKA the "Blue book":</p> <p><img src="http://g-ecx.images-amazon.com/images/G/01/ciu/73/42/0507224128a00036d10e8010.L.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1348959#1348959 5 Answer by Chris Dwyer for What is the single most influential book every programmer should read? Chris Dwyer 2009-08-28T19:42:32Z 2009-08-28T19:42:32Z <p><img src="http://ecx.images-amazon.com/images/I/51uq2FG9y6L.%5FBO2,204,203,200%5FPIsitb-sticker-arrow-click,TopRight,35,-76%5FAA240%5FSH20%5FOU01%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1442468#1442468 3 Answer by TrueWill for What is the single most influential book every programmer should read? TrueWill 2009-09-18T03:34:36Z 2009-09-18T03:34:36Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201616416" rel="nofollow">Extreme Programming Explained: Embrace Change</a> by Kent Beck. While I don't advocate a hardcore XP-or-the-highway take on software development, I wish I had been introduced to the principles in this book much earlier in my career. Unit testing, refactoring, simplicity, continuous integration, cost/time/quality/scope - these changed the way I looked at development. Before Agile, it was all about the debugger and fear of change requests. After Agile, those demons did not loom as large.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1444527#1444527 2 Answer by RD1 for What is the single most influential book every programmer should read? RD1 2009-09-18T13:24:32Z 2009-09-18T13:24:32Z <p><img src="http://books.google.com/books?id=to6M9%5FdbjosC&amp;printsec=frontcover&amp;img=1&amp;zoom=5&amp;sig=ACfU3U0wHZ81iaNcOq8GcSgqcTs0Eu5l8Q" alt="The Practice of Programming" /></p> <p>The practice of programming. By Brian W. Kernighan, Rob Pike.</p> <p>The style shown here is excellent - the code just speaks for itself, and the whole book follows the KISS principle. Personally not my languages of choice, but still influential to me.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1460306#1460306 48 Answer by Jahanzeb Farooq for What is the single most influential book every programmer should read? Jahanzeb Farooq 2009-09-22T14:03:29Z 2009-09-22T14:03:29Z <p><a href="http://rads.stackoverflow.com/amzn/click/1430219483" rel="nofollow">Coders at Work</a> 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. <br></p> <p><img src="http://ecx.images-amazon.com/images/I/51wRZkALz2L.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1499822#1499822 0 Answer by Ranieri for What is the single most influential book every programmer should read? Ranieri 2009-09-30T18:19:12Z 2009-09-30T18:19:12Z <p>Personally, I like the handwritten notes by Edsger W. Dijkstra. A lot.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1510800#1510800 2 Answer by jase for What is the single most influential book every programmer should read? jase 2009-10-02T17:12:54Z 2009-10-02T17:12:54Z <p><a href="http://www.theannotatedturing.com/" rel="nofollow">The Annotated Turing</a> was enlightening. It defines the box programmers work in. <img src="http://ecx.images-amazon.com/images/I/51h91JxbzRL.%5FBO2,204,203,200%5FPIsitb-sticker-arrow-click,TopRight,35,-76%5FAA240%5FSH20%5FOU01%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1510853#1510853 0 Answer by Chris Cleeland for What is the single most influential book every programmer should read? Chris Cleeland 2009-10-02T17:23:19Z 2009-10-02T17:23:19Z <p>Though I agree with The Pragmatic Programmer, I would also recommend The Practice of Programming. It came out around the same time and never gained the level of notoriety as the Pragmatic series, but TPoP is a great book and, most importantly, not a massive undertaking to read. Thus, the reader gets a lot of return for his/her time investment in reading/ingesting it.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1511270#1511270 2 Answer by jsshah for What is the single most influential book every programmer should read? jsshah 2009-10-02T19:02:19Z 2009-10-02T19:02:19Z <p>Apart from all the great books already recommended ... there is one more book I would like to recommend</p> <p>This may be unknown ... however I use it every so often</p> <p>The book teaches computer architecture ... how a C code gets compiled to assembly code ... has a great sections about program stack ... talks about low level operating system constrcuts and also talks about various hardware parts of the system from a programmer's perspective</p> <p>has a great section on memory allocation and garbage collection ... network progrmming, profiling and much more</p> <p>One of my favorite book</p> <p><img src="http://ecx.images-amazon.com/images/I/51HMCKK3JWL.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1534517#1534517 -1 Answer by Chris S for What is the single most influential book every programmer should read? Chris S 2009-10-07T22:08:26Z 2009-10-07T22:08:26Z <p><a href="http://rads.stackoverflow.com/amzn/click/0091906814" rel="nofollow"><img src="http://ecx.images-amazon.com/images/I/51ms93Ln1YL.%5FSL500%5FAA240%5F.jpg" alt="For Project Managers" /></a></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1545916#1545916 2 Answer by Arthur Ulfeldt for What is the single most influential book every programmer should read? Arthur Ulfeldt 2009-10-09T20:32:23Z 2009-10-09T20:32:23Z <p>The Productive programmer. its a natural extension of "the pragmatic programer" which gets a little more into the every day details. </p> <p><img src="http://covers.oreilly.com/images/9780596519544/cat.gif" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1549840#1549840 2 Answer by Taylor L for What is the single most influential book every programmer should read? Taylor L 2009-10-11T04:16:47Z 2009-10-11T04:16:47Z <p>Various insights into software engineering in the real world.</p> <p><img src="http://images.barnesandnoble.com/images/14850000/14852722.JPG" alt="alt text" /><img src="http://images.barnesandnoble.com/images/28060000/28065359.JPG" alt="alt text" /></p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1549851#1549851 1 Answer by dasu for What is the single most influential book every programmer should read? dasu 2009-10-11T04:30:33Z 2009-10-11T04:30:33Z <p>Dijkstra's A Discipline of Programming is a true classic. It will change the readers' way of reasoning about programs - it certainly has changed mine.</p> <p>An easier read would be Gries' Science of Programming - it is along the same lines, but easier to read.</p> <p>As an aside, I must mention that we are still struggling to come up with a scheme that these books propose for concurrent programs.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1605979#1605979 1 Answer by mlk for What is the single most influential book every programmer should read? mlk 2009-10-22T09:14:14Z 2009-10-22T09:14:14Z <blockquote> <p>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?</p> </blockquote> <p><a href="http://www.manning.com/massol/" rel="nofollow"><img src="http://www.manning.com/massol/massol%5Fcover150.jpg" alt="JUnit in Action" /></a></p> <p>Unit testing is one thing that I really wished I knew at the start of my programming career rather than the middle of it. </p> <p>As to the general "what good books have you read" offshoot of this thread: </p> <p><a href="http://www.systemsguild.com/GuildSite/Robs/RMPBookPage.html" rel="nofollow"><img src="http://ecx.images-amazon.com/images/I/51W9P2CM6ML.%5FBO2,204,203,200%5FPIsitb-sticker-arrow-click,TopRight,35,-76%5FAA240%5FSH20%5FOU02%5F.jpg" alt="Mastering the Requirements Process" /></a></p> <p>Writing requirements is one area where I suck, this book helped a lot.</p> <p>Now off to order a book to two from Amazon... ;)</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1606458#1606458 0 Answer by cloggins for What is the single most influential book every programmer should read? cloggins 2009-10-22T11:00:33Z 2009-10-22T11:00:33Z <p>It seems most people have already touched on the some very good books. One which really helped me out was <a href="http://rads.stackoverflow.com/amzn/click/0321245660" rel="nofollow">Effective C#: 50 Ways to Improve your C#</a>. I'd be remiss if I didn't mention <a href="http://rads.stackoverflow.com/amzn/click/014095144X" rel="nofollow">The Tao of Pooh</a>. Philosophy books can be good for the soul, and the code.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1627135#1627135 0 Answer by TheRHCP for What is the single most influential book every programmer should read? TheRHCP 2009-10-26T20:23:34Z 2009-10-26T20:29:30Z <p>My career as a developper is starting, so I cannot directly answer the question. But as .NET developper, the book that helped me the most in framework and reusable libraries design is "Framework Design Guidelines" by Brad Abrams. The book solves a lot of issue you can encounter when you are thinking about naming and crucial design choices. This is the best way to produce high reusable assemblies in .NET.</p> <p><img src="http://jopsen.dk/blog/wp-content/uploads/2009/08/FrameworkDesignGuidelines-220x300.jpg" alt="alt text" /></p> <p>I am pretty surprised that nobody mentioned that book. What is sure is that it has been really influential on my design and naming habits when writing reusable assemblies.</p> <p>One thing I really appreciate in this book is the notes of .NET Framework developers giving details on issues they had when designing the .NET Framework, which I think are good advices as it is representative of a well designed framework.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1655825#1655825 0 Answer by FinnNk for What is the single most influential book every programmer should read? FinnNk 2009-10-31T22:43:18Z 2009-10-31T22:43:18Z <p>It's a brand new book and I've only just skimmed it but <a href="http://www.informit.com/store/product.aspx?isbn=0321503627" rel="nofollow">Growing Object-Oriented Software, Guided by Tests</a> right now is THE book on TDD. It really concentrates on the "design" part of software development and how it is closely related to how you develop code writing tests first. I've enjoyed other books on TDD and unit testing but this takes it to a higher level, I'm pretty sure this one is destined to be a classic.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1695762#1695762 0 Answer by Steven Bose for What is the single most influential book every programmer should read? Steven Bose 2009-11-08T08:26:33Z 2009-11-08T08:26:33Z <p>"The Practice of programming" by Brian W.Kerninghan &amp; Rob Pike.</p> <p>The language is easy and also the subject matter is interesting.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1695803#1695803 0 Answer by pajato0 for What is the single most influential book every programmer should read? pajato0 2009-11-08T08:48:02Z 2009-11-08T08:48:02Z <p>I'm late to this question but apparently still have something unique to offer... <em>Software Engineering Economics</em> by <a href="http://en.wikipedia.org/wiki/Barry%5FBoehm" rel="nofollow">Barry Boehm</a> which, to summarize, says that if you want to really improve software productivity get better people since better tools, hardware, languages, methods, etc. will all have a marginal impact. Only better people drive up productivity by significant amounts. I emphasize, this is <strong>better</strong> engineers, not more engineers!</p> <p>Not the kind of book you'd take to bed with you, like you might do with <em>Coders At Work</em> but the kind of book that drives home a lesson that our industry has struggled mightily to take to heart. Witness off-shoring, a false economy that Boehm's model predicts will have only a marginal positive effect, if any at all. Check it out.</p>