Ask HN: Which developers should I follow?

9 points by jpollock ↗ HN
I had a great mentor that recently left. I learned immensely from reviewing their code and having them review my changes. Their reviews dramatically changed how I structure interfaces and code.

To keep learning more, I would like to read other developer's code. Which codebases should I follow to see how other people write clean and clear code?

7 comments

[ 0.32 ms ] story [ 30.1 ms ] thread
I would read the standard lib of whatever language you are using. It normally has most of the common patterns and best practices of each language.
But never ever look at the standard library source code for C or C++ unless you want nightmares !
(comment deleted)
https://www.nayuki.io/ seems good usually.

But yes, i would mainly recommend the standard lib of the language in question, but not all programming languages have a "standard lib" you can read.