|
|
|
|
|
by devjab
614 days ago
|
|
> How do you find the documentation in the first place? Typically I’ll go directly to the online documentation from one of my bookmarks. Sometimes I’ll have a local version. I did use to just type the thing I was looking for into the google search bar in Firefox, but once the results started being for ridiculous articles (or similar), rather than the actual documentation I started using bookmarks. Which was sort of why I was curious. > the documentation can sometimes be a bit lacking on how to set things together If you have the time I’d love to see an example of some random person on the internet giving you a better introduction into using a language library than the documentation itself. Don’t think I’ve ever seen that. That being said, I think we simply work on very different things. I’m not sure what searching for an error in my code would help me achieve that reading the error output wouldn’t. I suspect this is because you may be stringing together a lot of frameworks and possibly higher level external libraries, that you’re perhaps not too familiar with? Which would also explain why the documentation you have to work with isn’t always very good. |
|
Still works for me. When I search for "Angular signal documentation" I get to the right place (They just changed domain for the brand new version, but .. yeah) That said I also use an ad blocker.
Currently google still works for me.
> If you have the time I’d love to see an example of some random person on the internet giving you a better introduction into using a language library than the documentation itself. Don’t think I’ve ever seen that.
Can't remember a good example right now. Most recent trouble that I search for was the good old classic of centering a div in CSS :) I think I used a mixture of this side [1] and an LLM ( Github co pilot)
Uh, now I found a small example. When I want to know how to sort a stream in java. When I search for "java 17 stream" go to the official documentation and search for sort I get: [2] more or less it just says "Stream<T> sorted(Comparator<? super T> comparator)"
But when I google "java stream sort" and the first stack overflow contains a great example: [3] or a bit short answer on the same page [4] Those code examples just work better for my brain :)
[1] https://www.w3schools.com/csS/css_align.asp [2] https://docs.oracle.com/en/java/javase/17/docs/api/java.base... [3] https://stackoverflow.com/a/53183266 [4] https://stackoverflow.com/a/40518343