Ask HN: What code do you frequently read?
1–10 of 64 posts
Re: Ask HN: What code do you frequently read?
#2The closest is for a software library which I use only occasionally, where it takes a few non-intuitive lines to get things set up correctly. Someone developed an easier API for it, which is closer to the way I think about the problem. When I need to X, I consult that software to see how to implement it.
Re: Ask HN: What code do you frequently read?
#3Re: Ask HN: What code do you frequently read?
#4Usually you don't just go read source code for the heck of it. You read the source code either to contribute a feature or fix a bug. There's no point in reading the src otherwise because you won't find a good enough reason to try to fully understand it.
Re: Ask HN: What code do you frequently read?
#5Re: Ask HN: What code do you frequently read?
#6Re: Ask HN: What code do you frequently read?
#7Usually you don't just go read source code for the heck of it. You read the source code either to contribute a feature or fix a bug. There's no point in reading the src otherwise because you won't find a good enough reason to try to fully understand it.
Re: Ask HN: What code do you frequently read?
#8Re: Ask HN: What code do you frequently read?
#9Re: Ask HN: What code do you frequently read?
#10Usually you don't just go read source code for the heck of it. You read the source code either to contribute a feature or fix a bug. There's no point in reading the src otherwise because you won't find a good enough reason to try to fully understand it.
I beg to differ. For example, reading the Go source is extremely useful both to learn idiomatic Go, and for reference.