vote up 4 vote down star
2

I ask because I am in need of some examples of spectacular documentation to do a little compare/contrast. Bad documentation abounds but who gets it stone cold correct?

I suppose we should differentiate between documentation geared at informing experts and documentation geared at teaching new users but if you know of something that combines both of these, by all means reveal!

flag

14 Answers

vote up 16 vote down check

PHP - far and away the most useful documentation i've ever seen.

It makes it very easy to find out new functionality of the language and very quickly understand how to use it, when to use it, when NOT to use it and what you should perhaps use instead. The user-contributed notes on each page often give insights into other interesting ways to use the function.

link|flag
The user comments are often very helpful! – Rich Oct 28 '08 at 2:18
vote up 0 vote down

So many shares the view that The TexBook by Donald Knuth is the best software documentation ever.

link|flag
vote up 0 vote down

I learned SQL from the MySQL documentation. I'd say it's the best documentation I've ever read.

link|flag
vote up 1 vote down

sqlite is often touted as having the best documentation ever, and it's really true.

link|flag
vote up 0 vote down

Some of the best documentation I've ever seen is in the CodeIgniter project. The whole API is outlined with examples along the way, and the user interface is incredible. They really took their time making it presentable.

http://codeigniter.com/user_guide/

Not to mention the Wiki and the forums. With those added in, what else could you ask for?

link|flag
vote up 0 vote down

What kind of documentation are you looking for? If you're talking about API documentation, Java makes it easy to generate really good documentation via javadoc. People generally fail to take advantage of it though.

Anyway, I usually look at the following when trying to figure out appropriate conventions (grammar style, levels of details etc):

  1. Java SE - http://java.sun.com/javase/6/docs/api/
  2. Spring Framework - http://static.springframework.org/spring/docs/2.5.x/api/index.html
link|flag
vote up 0 vote down

Does paper documentation count?

Apple's old "Inside Macintosh" series is, by and large, the best set of written docs I've ever read.

Yes, I have the white hair to prove that I actually did read it :)

link|flag
vote up 3 vote down

PostgreSQL has an excellent documentation, especially for all it's SQL syntax.

link|flag
vote up 2 vote down

The Commodore-written documentation for the Amiga OS was superb. I learned probably 80% of what I apply today from those books and text files/AmigaGuides. The RKM Libraries Third Edition had probably the most cogent explanation of OO programming that I've written - understandable even to a 14-year old as (I think) I was then. Ah, happy days.

Link to online versions: http://pub.elowar.com/AmigaDev/

link|flag
vote up 0 vote down

ORACLE has excellent documentation.

link|flag
I'd agree with this - don't know why anyone modded it down. It's well indexed, comprehensive and fairly easy to understand. – ConcernedOfTunbridgeWells Oct 8 '08 at 9:02
Oracle seems to have a lot of documentation, but I've never found it very easy to use. I can generally find the answer I need faster by Googling for it. – James Curran Oct 8 '08 at 14:21
vote up 3 vote down

TortoiseSVN has a really nice documentation.

link|flag
vote up 4 vote down

MSDN definitely is the best documentation out there. They have most of their technologies documented and most of the times they show you examples and code snippets and not just the reference. I believe that is one of microsoft strengths.

Django also has good documentation and quite simple. Very Ad-hoc to the framework.

link|flag
You should be more specific. The Platform SDK docs are decent but the .NET library docs are abysmal. – shoosh Oct 8 '08 at 5:36
Well most of the framework is quite well documented and they have good and easy to follow examples, SQL Server documentation is also very complete. Im not talking about quantity im talking about quality. – Gustavo Rubio Oct 8 '08 at 5:47
MSDN gives you the general information, but rarely provides you the specifics. – ARKBAN Oct 8 '08 at 12:18
MSDN's quality varies a lot -- some sections are very good, others most definitely are not. – Paul Lalonde Oct 28 '08 at 1:45
vote up 2 vote down

jQuery Core. It's complete with tons of examples.

link|flag
For the core. The docs for the plugins --- even the "official" plugins, like "UI" are quite lacking. – James Curran Oct 8 '08 at 14:19
Oh absolutely correct – John Sheehan Oct 8 '08 at 14:50
vote up 1 vote down

I've found the Django documentation to be quite useful. Its tone is conversational, with snippets interesting for beginner visually distinguished from the main reference text, so as to be easily filtered out by the expert user. Its style is visually clean and textually logical, in that it closely tracks my thought process from "WTF is Django" do "how do I solve specific Django implementation issue X for my project?"

link|flag
Also the djangobook.com is awesome. – garrow Oct 8 '08 at 7:10
that method of leaving comments on individual paragraphs is a neat trick. – gaoshan88 Oct 8 '08 at 12:07

Your Answer

Get an OpenID
or

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