Ask HN: What open source project, in your opinion, has the highest code quality?
31–40 of 294 posts
Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#32Python core libraries have great code. You can open pretty much any module and be able to understand the source without much context.
Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#33Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#34For C: Process Hacker and some similar code that is designed like and written around Windows kernel APIs: https://github.com/processhacker/processhacker/blob/master/p...
For C++: Some of the Boost code, and stuff like it, such as P-Stade Oven: https://github.com/himura/p-stade/blob/master/pstade/pstade/...
For others: (need to look later, I forget)
Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#35Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#36Postgres.
Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#37Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#38At the same time, the apparent simplicity should not be mistaken for lack of effort; on the contrary, I feel every line oozes with purpose, practicality, and to-the-point-ness, like a well sharpened knife, or a great piece of art where it's not about that you cannot add more, but that you cannot remove more.
Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#39Re: Ask HN: What open source project, in your opinion, has the highest code quality?
#40and for this reason alone!
https://www.sqlite.org/testing.html
As of version 3.23.0 (2018-04-02), the SQLite library consists of approximately
128.9 KSLOC of C code. (KSLOC means thousands of "Source Lines Of Code" or, in
other words, lines of code excluding blank lines and comments.)
By comparison, the project has 711 times as much test code and test scripts -
91772.0 KSLOC.