vote up 24 vote down
star
13

Like a lot of people on Stack Overflow I love to read books about programming, almost as much as I love to read the lists that people add onto their websites, Blog's and this very website.

However, for every gem there are a thousand turds, and to one developer a gem could just be a shiny turd to another.

Whilst there are hundreds of book questions on this website asking users to recommend books that they have loved I have decided (after looking for a similar question and not finding it) to create a list of books that users have detested. After all, if we're going to fork out money for these books it'd be a good idea to get both positive and negative aspects out there.

Please refer to a specific book, and with it add an image of either the latest version or the version you have read. Also, if you have the time please comment on the answers to provide your experiences with the books.

flag
I'm just glad to see that I haven't read any of the books listed. – Peter LaComb Jr. Dec 13 at 21:41
Great question - I have debated getting some of these in the store – Nick Jan 7 at 15:14
add comment

30 Answers

vote up 36 vote down

Anything with the words "Teach Yourself x In 24 Hours".

alt text

link|flag
is this one of those books that has 24 chapters, one for every hour. as if you're going to sit there for 24 hours and absorb one chapter every hour and suddenly become an expert. – Dana Oct 8 at 18:47
I learned C++ (my first real programming langauge) from one of these. It was enough to teach me the real basics. Then I started actually writing code (lots of it) and discovered how terrible the advice was. That forced me to discover good coding habits on my own -- the best way to learn – rmeador Oct 8 at 19:45
I've always wondered why people choose to write these kinds of books. I imagine that the money isn't all that bad and that people will buy them, but it's a great way for you to lose credibility. – EnderMB Oct 8 at 20:17
@EnderMB: Perhaps the author has no credibility even before starting the book? – Sergio Acosta Oct 8 at 20:29
Although not a development book itself, I got bought Sams Teach Yourself Linux in 24 hours. Chapters would assume knowledge of things that only got covered in later chapters. It was enough to ensure I never buy a Sams book in the future. – SpoonMeiser Oct 9 at 13:09
add / show 6 more comments
vote up 23 vote down

I thought Beautiful Code was a huge, disjointed letdown.

Beautiful Code

link|flag
Thanks. I was considering buying this one on Amazon. What in particular didn't you like about it? – finnw Oct 8 at 18:43
A vote up for you, for a vote down for this book. – pmlarocque Oct 8 at 18:45
why was it such a letdown? – Dana Oct 8 at 18:46
1 
The Amazon reviews sum it up better than I can, but I found little, if any, beautiful code or interesting insights in the book. It was downright painful to finish it even though I'm so interested in the subject matter. – Ben Hoffstein Oct 8 at 18:58
Title promised more than it delived :( – s t Oct 8 at 19:37
add / show 7 more comments
vote up 22 vote down

alt text Do I need to explain why?

link|flag
Is this a real book? – SpoonMeiser Oct 9 at 13:12
Yes, I found it on Amazon. – Bill the Lizard Oct 9 at 15:57
1 
Yes, the book is real. A part of my soul died a little bit when I found this book. Amazon link: amazon.com/Manga-Guide-Databases-Mana-Takahashi/dp/… – Zee JollyRoger Oct 10 at 0:57
3 
The professional part of me knows that this is an awful book, but the rest of me wants to read it more than anything in the world. – EnderMB Oct 15 at 20:40
There's also a Manga Guide to Statistics. – MadMAxJr Oct 16 at 18:06
add / show 9 more comments
vote up 14 vote down

I would very strongly recommend against Data Structures and Algorithms in C#:

alt text

This was the review I left on Amazon:

I found this lying on a colleague's desk and had a flick through; I didn't read much to be honest but what I did see was enough of a warning to make me write this: DO NOT BUY THIS BOOK.

There are things like a Queue class implemented using an ArrayList as a backing store "because of its dynamic properties". I can only assume he means amortized doubling here. The book boasts about "not using big-O notation" which is a damn good job because the dequeue method is implemented using RemoveAt(0) giving O(n) performance in all cases, when with a circular buffer an O(1) implementation can be trivially achieved (except in the case when the buffer is full, of course).

The next structure is a priority queue. You might imagine this would be done with some sort of heap; a binary heap in an array being the typical implementation. Instead it's also done with an ArrayList and every time an item is added it copies the items into an array, sorts them, and then puts them back into the ArrayList. The same goes for dequeue. So while you could find an implementation of O(lg n) performance for both enqueue and dequeue on wikipedia, he goes for O(n) in both cases.

I was so appalled, and so angry that somebody with clearly no knowledge of data structures was allowed to publish this rubbish, that I didn't read any more. Neither should you. If I could give it minus 5 I would.

link|flag
Wow, that's... wow. – Adam Jaskiewicz Nov 21 at 13:26
add comment
vote up 14 vote down

The Art of Computer Programming, by Donald Knuth.

alt text

Let me preface by saying Donald Knuth is awesome, and anyone who could read and comprehend The Art of Programming would be a better computer programmer for having done so. However, between the amount/complexity of mathematics, and the amount of assembly language, the vast majority of programmers will not work through the exercises. Without working through the exercises, the value gained from 'reading' the book is dramatically lessened. The book is seriously dense, it is not a light read, and anyone who buys it without that understanding will end up with the book sitting on their bookshelf unread.

IMO it's better to buy a book you'll get value out of, than one that you could get value out of, but don't.

PS: I have a bachelor's degree in Mathematics and a master's in Computer Science. I've 'read' my 3-volume set of "The Art of Programming" once, with about the amount of dedication and time devoted to it that I'd spend with a similarly sized novel. I'd be lucky if 10% of the material really "sunk in". I'd like to be able to give the books the attention they deserve, but that probably won't happen any time soon.

link|flag
Ouch! Criticizing Knuth? That's blasphemy! – Kluge Oct 8 at 19:11
Your mistake is in pretending you can read any real technical material like a novel. You're right, most developers would become better at what they do if they worked through a bit of Knuth properly. That many don't is their fault, not the books. – simon Oct 8 at 19:29
1 
lol. You're not supposed to read it, you're supposd to put it prominently on your bookshelf and pretend you're cleverer than you actually are :) – gbjbaanb Oct 8 at 20:52
> That many don't is their fault, not the books. Correct! But regardless of fault, I still wouldn't recommend Knuth to most people. I'd recommend something like "The Pragmatic Programmer", which is much easier to benefit from. – keysersoze Oct 9 at 0:27
@gbjbaanb: so... knuth is the tolstoy of computer literature? – Mostlyharmless Oct 9 at 18:57
add / show 3 more comments
vote up 8 vote down

Any book with 17 authors is usually bad. Any book with a timeframe in the title - "7 days", "24 hours", etc. Any book titled "Teach Yourself..."

link|flag
add comment
vote up 8 vote down

I've found many Wrox books to be poorly edited and mostly filler. The covers are hilarious, though.

link|flag
They also tend to spend an inordinate number of pages(chapters, really) praising Microsoft for the gift of .Net. They could save entire trees by leaving out the bits about how fantastic .Net is. – Rob Allen Jan 8 at 18:04
add comment
vote up 8 vote down

javascript

This book was really disappointing. I picked it up on vacation few years ago when I was trying to learn to write custom AJAX. The first 98% of the book were JavaScript examples. The last chapter was a paragraph like this, and then a few examples of implementation:

Ajax is a subject so complicated, entire books have been written on it! Instead of writing your own, check out Yahoo's Ajax Library at [link].

link|flag
add comment
vote up 6 vote down

C: The Complete Reference by Herbert Schildt, see C: The Complete Nonsense

The Annotated ANSI C Standard, annotated by Herbert Schildt, see http://www.lysator.liu.se/c/schildt.html

alt text

I also assume that all "for Dummies" books are terrible. I have only personally read C for Dummies by Dan Gookin out of morbid curiosity, and it was quite clear the author didn't really know C. Later editions may be an improvement.

alt text

link|flag
Erm, I liked the C for Dummies books and I found them the be the only for Dummies books worth a damn. – Schnapple Oct 8 at 18:38
It might be well written and easy to read, but its technical accuracy is terrible. The author lacked fundamental knowledge of the language. – Chris Young Oct 8 at 18:40
Agree about the Schildt books but some of the dummies books are good (I haven't read C for Dummies.) – finnw Oct 8 at 18:44
Herbert Schildt is a fine author if you're never going to use anything you read about. If you think technical accuracy is important, though, you'd best look elsewhere. He's easy to read, but not nearly as right as he should be. – Greg D Oct 8 at 20:27
Why write a program that's technically correct when you can write something like MS Excel. – Kibbee Oct 11 at 0:51
add / show 4 more comments
vote up 5 vote down

I'd advise against any book that is a regurgitation of an API with some added examples. Google easily makes these books obsolete and allows you to more easily find answers that are relevant to your topic. These books never get too specific about issues either. How many times have we seen 1000 page books that don't tell you anything useful?

Books like this C# book are pretty much paperweights

link|flag
+1 - I couldn't agree more. – Ben Hoffstein Oct 8 at 19:01
1 
Actually I found that exact book to be incredibly helpful. Granted I was trying to get my bearings in ASP.NET at the time but the simple explanations in this book gave me insight into all sorts of things. – George Mauer Dec 24 at 14:45
Yeah, that book is dire. – BlackWasp Jan 7 at 15:25
add comment
vote up 4 vote down

If you see books on seemingly disparate topics written by the same author, it's generally good to steer clear.

How likely is it that the same person is an expert on C++, SQL Server, PHP, and project management, and has time to write books on each subject?

link|flag
add comment
vote up 3 vote down

I'm showing my age here, but I just can not stand the Head First series of books. They are not written for anyone born before 1970 that's for sure. However, I'm probably in the minority as far as SO users. In reality, I have not seen many bad reviews of the series (no one but me 'detests' these works...). Personally, I need more words and fewer photos, cartoons, etc.

link|flag
It's definitely not an age thing. I struggle with the Head First books because there are some things I find easy and some things I find hard, and whilst it's good for learning something difficult I really don't need someone explaining a simple concept that I can already handle. – EnderMB Dec 5 at 5:03
I have read a couple of these.. light reading. The ajax book was pretty good. I would not NOT reccommend this book, but I would reccommend NOT telling people you read these.. o wait.. – theman_on_vista Dec 24 at 15:12
Mixed feelings. Enjoyed HTML/CSS/XHTML one - I'm not primarily a web developer, and only wanted a quick overview. Didn't like the one on object oriented design. Just seemed so basic - kept thinking "surely anyone who's ever programmed knows not to do THAT" – MarkJ Jan 27 at 13:24
Well, some people disagree with me for sure - I've taken some negative votes since October :) (Good thing it's a wiki now...) – Doug L. Feb 27 at 3:18
add comment
vote up 3 vote down

Any "first edition" of a new language by Dietel & Dietel.

They have a bad habit of taking a similar language book and using global "search and replace" to get the new book out first.

Probably their worst effort EVER was their first edition of the C# book. It was just their current Java book with "cut and paste". Horrible.

Generally, it takes about 3 editions for any author to get a new language book "decent".

-R

link|flag
Couldn't agree more, Dietel and Dietel suck. – jonathan.cone Dec 5 at 5:07
The last comment is not accurate. Counter-example: Kernighan & Ritchie got it right first time - and the second time too (standard C was a somewhat different language from the one they first described). – Jonathan Leffler Dec 26 at 2:35
...and the Java book was a cut-and-paste job from the C++ book. – Bill the Lizard Jan 7 at 16:26
add comment
vote up 3 vote down

alt text

Pretty much the only book (and thus only documentation) on the Composite Application Block for WinForms.

Cons

  • Has about 100 pages of content, spread over 200 pages (alot of whitespace, entire pages for half-page screenshots etc.)
  • Only covers an overview of CAB and SCSF, doesn't explain key concepts and requires the reader to consult the CAB and SCSF documentation for any real detail.

Pros

...

link|flag
add comment
vote up 2 vote down

The "Game programming in X languge" series. They spend lots of pages teaching very little.

link|flag
add comment
vote up 2 vote down

As un-recommended by Jeff Atwood himself:

link|flag
I'm torn between voting this one up or leaving it. My other SitePoint books are fantastic for getting started with languages, but having never read this one and to only hear that it's not recommended by one of the authors is concerning. – EnderMB Oct 8 at 21:20
No he only doesn't recommend it because it is specific and Jeff stated that specific books don't have the "lasting" value of really good books. I'm sure the book is actually quite good. – Quarrelsome Dec 24 at 14:51
add comment
vote up 2 vote down

alt text

If you're looking to learn ADO.NET, I found the book Microsoft® ADO.NET 2.0 Step by Step by Rebecca M. Riordan to be rather useless. It's one of those books that shows how to use wizards and not really teach you anything. If you need to do something slightly different from the example you have no hope if this is your main resource for learning. I guess a step by step book might be intended for an audience that just wants basic examples though.

It would be a much better investement in time (and money) going with the ADO.NET Core Reference and, to a lesser extent, ADO.NET 2.0 Core Reference books, both by David Sceppa.

Just my opinion based on my own experience.

link|flag
add comment
vote up 2 vote down

"Pro whatever" from Apress is full with unnecessary explanations and it's better named "Beginner whatever" instead of Pro.

The Golden Rule is whenever you find a big book, it's probably full of useless explanations.

link|flag
add comment
vote up 2 vote down

alt text

Introduction to the Personal Software Process, by Watts S. Humphrey.

It's the software book with the highest percentage of useless and misleading concepts that I've read. It will teach you to make software estimations by counting the number of loops, to make the first code review even before compiling, etc.

Update

@EnderMB, unfortunately I threw the book away and I can't check it. From what I remember, the author asserts that his method does work and that if you try it, you will see it for yourself. He proposes you to follow his method and draw your own conclusions.

The main problem I see with his method is that it feels way too old fashioned and seems to be relevant only for old ways of doing software, but not for OO software and modern IDE's. Also, I found the forms it includes for tracking your stupid mistakes (including typos) very boring and irritating to use.

From an Amazon review by A Customer:

"Lastly, most of the data used to show how things improved after using the Personal Software Process was from 2 groups, one "real world" company and a group of students. Both groups only had around 15 people. Even combining both groups a sample of 30 programmers is not overwelming evidence. A larger sample is needed."

In short, IMO 95% of the book was a massive waste of time.

Update 2

For further information on the process described in this book, see this question.

link|flag
Does it contain any hard data to show that these methods are worthwhile? – EnderMB Dec 24 at 22:16
"make the first code review even before compiling" - Well...we do want the code reviews to have some value. I'm sure meaningful errors abound when you haven't even compiled, let alone run your code. – Dunk Mar 3 at 23:52
add comment
vote up 2 vote down

alt text

Data Structures Demystified
It's a good idea for a book. But too many errors make it difficult to learn the technical material they're trying to teach.

link|flag
I have this too, and I agree. If I know enough about a topic that I'm writing in corrections, I don't need the book. – Bill the Lizard Jan 7 at 16:29
I'm really glad that I asked this question now. This is probably the fifth book I've found here that I've actually considered buying that I won't now. – EnderMB Jan 7 at 22:18
add comment
vote up 1 vote down

Any book of over a 1000 pages covering only a development environment.

link|flag
add comment
vote up 1 vote down

Applying DDD and Patterns with Examples in C# and .NET

It is not that one should not read it, but read Eric Evans book instead and spend time applying it instead of reading a second book on the subject.

link|flag
Yeah! I agree. There are a lot of books like that "Design Patterns in C#", "Extreme Programming in C#", etc that just essentially copies Gamma or Beck and rewrites the code examples in C# instead of java. Just read the originals instead. – Sergio Acosta Oct 8 at 20:26
I strongly disagree. The Evans book is a masterpiece, but it lacks in sufficient concrete application of the ideas. The Nilsson book is a great compliment to Evans. – moffdub Oct 11 at 0:57
I'm going through this book right now and am regretting I bought it. Mixture of homegrown frameworks with so-so literature style urges me to put it off all the time. :( – wasker Dec 5 at 5:17
add comment
vote up 1 vote down

To start things off, if you see this book please tear it from the shelves and wipe you feet with it. Java Software Solutions
Java Software Solutions by John Lewis and William Loftus

This book is fantastic if you've never touched a computer before and you're looking to write a couple of nifty programs to show your friends, but for anyone that's even dreaming of programming for a living it's terrible. I don't believe this is as much a fault with the authors as it is with how it is recommended. When this book is used as the recommended text for first-year university students I cringe, simply because those that want to learn shouldn't have to be walked through Java by a lecturer that's mistaken themselves for the students' mother.

The book works, I've worked through the books and the examples compile and work as intended. However, by the time I had written anything worthwhile using this book I could've worked through far more examples if I were using another. It takes too many pages to explain trivial things and that's what ruins the book for me.

If you are 16 and new to this whole writing software thing in general then this book might get you programming in a year, but if you're looking to learn any quicker than that invest your money in another book.

link|flag
add comment
vote up 1 vote down

This will piss off a few people, but I would not recommend Programming Perl to anyone who wants to do Perl. To me, it seemed to ramble on and on. There are much better Perl books.

link|flag
ok. yes, it pissed me off. but I won't down vote, because I guess you have a right to your incorrect opinion. :P i learned perl on the Llama and afterwords, The camel was my bible. – stephenbayer Oct 9 at 18:59
The camel isn't organized as well as I'd like for a reference book. Once I find something in it, it's excellent. – David Thornley Jan 8 at 18:26
add comment
vote up 1 vote down

Any book offering to teach you a full language in and out in under a month is utter garbage.

http://norvig.com/21-days.html

link|flag
looks like some sams buyers are butthurt and down voted me – John T Jan 1 at 20:48
add comment
vote up 1 vote down

alt text

While it's a decent enough reference, I was just a little disappointed with Sams' PHP and MySQL Web Development. I think they jumped around a bit too much.

link|flag
I agree, usually when i see a Language and Language book, I find that 97.5% of the book is focused on teaching you the languages and 2.5% on the interactions between both. The book could be summed up in a 60 page booklet – dassouki May 18 at 15:51
add comment
vote up 1 vote down

I have a book laying around somewhere that I wish I could find: Operating System Concepts in Java.

  • It was several hundred pages
  • It didn't contain any well-formed Java
  • There are several more relevant languages for learning operating system architecture
  • It was the worst
link|flag
It is hard to imagine why you would pick Java to explain OS concepts. – Bill the Lizard Jan 7 at 22:58
Exactly, the title says it all – MarkJ Jan 27 at 13:25
add comment
vote up 0 vote down

Javascript: almost all books on the language. They tend to give lots of simple web-type examples that use up half their paper on source code, and don't really teach you much about the language itself. I've seen many books that have included bad or questionable programming practices.

SQL/databases: SQL Queries for Mere Mortals and Database Design for Mere Mortals. I had a friend who recommended these highly. They're all right for beginners but they do too much hand-holding, and once you get a handle on the basics I found them to not be very useful.

Here's what I expect from a really good technical book on a language or subject:

  1. Clear, high-level overview of the subject. Why do we care about ATL or JAXB?
  2. Clear, detailed explanation of important concepts. I can't learn the syntax if I don't understand the concepts the syntax implements.
  3. Simple examples to illustrate the borderline: namely, the subtle difference between correct/good use of the tool/language, and erroneous/bad use of the tool/language.
  4. Examples/explanation of good practices/style. Most Java books illustrate the case conventions of class/method/variable names.
  5. Examples for important design patterns. I own a copy of Design Patterns and it's a great book but it's not language specific, and a really good book on Javascript/Java/C++ etc will give examples of how these design patterns can be used within the language.
  6. Practical examples. It's fine to have abstract examples of classes called Animal, Bird, Mammal, Sheep, Vehicle, Truck, Car and Sportscar to illustrate issues with inheritance and hierarchy, etc. -- but other than illustrating these concepts they're useless to someone writing programs for datalogging/parsing/numerical analysis/etc. RAII in C++ is a good example that should be discussed in context of resources like files/sockets/windows etc. that are much more real than Car and Bird.
  7. Breadth: At least some coverage of all areas of the subject.
  8. Depth: Where it's important.
  9. References. No book can or should try to cover everything. But it should give good recommendations for where to learn more detail of the various topics within the subject.
link|flag
One exception to your (completely correct) JavaScript list: Douglas Crockford's "JavaScript: the Good Parts." He does a good job of going deep into the language. – rtperson Feb 13 at 17:23
true. That one I like. – Jason S Feb 13 at 22:11
add comment
vote up 0 vote down

I have a problem with any book about C# that can't even get it's version number right, and identifies it by a year, rather than a version number.

I loathe any book by Wrox press. As a Grammar Nazi (pardon the expression), their stark refusal to pay a decent editor to proofread the books drives me nuts and I refuse to contribute to their coffers.

link|flag
add comment
vote up -7 vote down

alt text

Head First Design Patterns.

Leafed through the whole thing while at borders yesterday. While it goes in depth on the simple ones like Factory, Adapter and Decorator which you should be able to grok from the wikipedia page, it leaves only a page or two for the more interesting ones like Visitor that you might actually struggle with.

Edit: Lest I sound completely uninformed, I was at borders for about 2 hours and so I at least scanned 80% of the book. I am also a fan of the Head First series. The complaint is specifically that this book goes on and on about intuitive concepts like Adapter where just the example would have sufficed but when it comes to something that a beginner might actually struggle with it sticks those patterns in the appendix where it gets a page long summary with no example. I was quite disappointed.

link|flag
It is quite good for a beginner though. – Ken Yao Dec 24 at 17:09
Damn. I bought this book a while ago but am yet to read it. – EnderMB Dec 24 at 22:14
I liked it. It was a fun read. The whole Head First series is great for self-learners who like a quirky style. – Barry Brown Dec 26 at 2:06
2 
I disagree. It is a good book. You shouldn't tell someone to not read a book that you haven't even read. – Slapout Jan 7 at 15:16
1 
The GOF book and this are aiming at two different things. The GOF book is a reference, whereas this is an introduction - and a very good one at that. – Dan Feb 12 at 17:38
add / show 16 more comments

Your Answer

Get an OpenID
or

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