Live data from Hacker News

Ask HN: What's the best documentation you've ever read?

news.ycombinator.com

21–30 of 79 posts

Re: Ask HN: What's the best documentation you've ever read?

#21

Vue JS docs are the best. I don't think anything beats it :)

100% agree. They are the most comprehensive docs I've ever seen. So many examples, nice clean design and they cover edge cases too.

It's the only doc that generally comes before SO in finding solutions for me.

Re: Ask HN: What's the best documentation you've ever read?

#22
The node-postgres docs are very nice. https://node-postgres.com/

Gives you examples right off the bat to get started, is organized well so it's easy to dive deeper, and the author includes some conventions for incorporating the module into your app.

Re: Ask HN: What's the best documentation you've ever read?

#23
PostgreSQL's documentation to me is a reference.

Complex concepts are told in a very simple and concise fashion. There is just the right amount of text for what is told, it does not make you feel dumb and instead invites you to dig deeper in a very welcoming manner.

Re: Ask HN: What's the best documentation you've ever read?

#24
It has to be the scikit-learn documentation (http://scikit-learn.org/). Not only its great in terms of proper code documentations with a ton of examples, but it also explains the theory behind each algorithm. You can literally learn Machine Learning just by reading the docs

Re: Ask HN: What's the best documentation you've ever read?

#25
I learned a lot from the SQLite documentation. It's not only very thorough, but it's full of insightful bits of information that is not strictly necessary but which gives a deeper understanding of the engine.

It was also the first time I encountered the flow diagram type of syntax explanation which I found to be a fantastic way to grasp the details of each command. Eg https://sqlite.org/lang_createtable.html.

https://sqlite.org/docs.html

Post reply on HN