vote up 31 vote down star
18

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
show 2 more comments

31 Answers

1 2 next
vote up 42 vote down

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

alt text

link|flag
show 12 more comments
vote up 28 vote down

I thought Beautiful Code was a huge, disjointed letdown.

Beautiful Code

link|flag
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 '08 at 18:58
show 11 more comments
vote up 28 vote down

alt text Do I need to explain why?

link|flag
3  
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 '08 at 0:57
7  
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 '08 at 20:40
show 15 more comments
vote up 19 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
show 1 more comment
vote up 13 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
1  
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 '08 at 19:29
3  
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 '08 at 20:52
show 7 more comments
vote up 11 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
vote up 9 vote down

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

link|flag
show 1 more 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
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
show 9 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  
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 '08 at 14:45
show 2 more comments
vote up 5 vote down

A Million Random Digits with 100,000 Normal Deviates

alt text

There are much easier ways to find random numbers.

link|flag
2  
wow; amazing, +1 – TokenMacGuy Sep 14 at 6:26
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
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
show 3 more comments
vote up 3 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
show 2 more comments
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
vote up 3 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
show 2 more comments
vote up 2 vote down

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

link|flag
vote up 2 vote down

As un-recommended by Jeff Atwood himself:

link|flag
show 2 more comments
vote up 2 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
show 4 more comments
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
vote up 1 vote down

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

link|flag
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
show 3 more comments
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
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
show 5 more comments
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
show 1 more 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
show 1 more 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
show 2 more comments
vote up 1 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
show 3 more comments
vote up 1 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
show 2 more comments
vote up 1 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
1 2 next

Your Answer

Get an OpenID
or

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