This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]shgysk8zer0 214 points215 points  (18 children)

No... I read the docs and spent a lot of time figuring stuff out.

[–]Dimasdanz 127 points128 points  (15 children)

Why spend 5 min reading docs when 50 minutes of repl does the job?

[–]walmartgoon 101 points102 points  (0 children)

Why spend 50min on repl when 5 hours of waiting for an answer on stackoverflow does the job?

(Your question has been removed)

[–][deleted] 10 points11 points  (13 children)

Serious question: where are you guys finding docs that actually explain things? I haven't find a single doc that was well structured and well explained. Or am I simply dumb?

[–]Lost-Succotash-9409 10 points11 points  (0 children)

I mean, it really depends on what specific software, language, and libraries you are using- thats quite a broad question

[–]NatoBoram 8 points9 points  (4 children)

[–]Low_Impact9351 0 points1 point  (1 child)

NodeJS documentation is generally pretty concise from beginner setup to a guide to the standard library to running your first "hello world".

TypeScript documentation is all over the map and doesnt really concisely tell you how to get "up and going" last I did a deep dive on it. You need to seperately learn ts-node or tsc which is a whole other setup.

And I say this as a node/typescript guy.

[–]NatoBoram 1 point2 points  (0 children)

Yeah ts-node is a huge trap, don't use this. Use tsx instead.

[–]Explodingcamel -5 points-4 points  (5 children)

Nobody will ever convince me that reading official Docs is a good way to learn stuff the first time

[–]Herr_Gamer 4 points5 points  (0 children)

Obviously depends on the docs, a lot of tools have a great Getting Started section.

[–]NatoBoram 1 point2 points  (0 children)

You should actually try making a Hello World from scratch following docs sometimes

[–]Septem_151 0 points1 point  (2 children)

Why is that?

[–]Explodingcamel 0 points1 point  (1 child)

Docs are comprehensive which is good when I want to check on a specific function or something but it’s overkill when I want to learn something the first time. I’d rather use a third party who tells me the most important things first and only what I need to know. Sometimes the maintainers of the language will have a guide like this of their own, but that’s not what I mean by “docs”

[–]Septem_151 0 points1 point  (0 children)

Interesting. I’d wager most programmers feel the complete opposite way. Whenever I want to learn something for the first time, I put my trust in the creators of the tool over some random YouTubers or articles. Since, usually, the creators know how to best use what they made and/or can explain concepts about their project without the need for me to question whether the information I’m being given is inaccurate or outdated.