The tutorials get you off the ground and the Docs are detailed enough to take you safely over the long grass.
Ask HN: What is example of good documentation in your opinion?
41–50 of 71 posts
Re: Ask HN: What is example of good documentation in your opinion?
#42Re: Ask HN: What is example of good documentation in your opinion?
#43Re: Ask HN: What is example of good documentation in your opinion?
#44The best documentation knows its audience and what they want to know. I quite like cppreference and usually ISA documentation is quite good. But this is because I am part of their target audience.
The worst documentation is the one which has entirely lost sight of its audience. Particularly offenses are it being a mix of tutorial and reference, which is filled with explanatory prosa potentially even serving as a first introduction to the given topic.
Cppreference is about the worst way to learn C or C++ and if it weren't it would be far less useful to me. Documentation writers have to know their audience first and foremost. There is a place for walkthroughs and tutorials, but they can not replace an actual language reference.
Re: Ask HN: What is example of good documentation in your opinion?
#45Re: Ask HN: What is example of good documentation in your opinion?
#46The other commenter mentions docs from the past being better, but I have always found Java’s docs to be particularly atrocious.
No examples, and barely any information beyond a type signature.
When I open up a project’s docs and they have that same Java html formatting, I get that faraway stare…
Re: Ask HN: What is example of good documentation in your opinion?
#47Re: Ask HN: What is example of good documentation in your opinion?
#48Re: Ask HN: What is example of good documentation in your opinion?
#49Re: Ask HN: What is example of good documentation in your opinion?
#50Most importantly it has interactive examples that let you understand through doing and playing, rather than just reading.