Ask HN: What are the “best” codebases that you've encountered?
11–20 of 278 posts
Re: Ask HN: What are the “best” codebases that you've encountered?
#12And hopefully I can some constructive criticism :)
For something not from me but still in Java, the Proguard source code is very clean: https://sourceforge.net/p/proguard/code/ci/default/tree/
Re: Ask HN: What are the “best” codebases that you've encountered?
#13I'm really curious how you see laravel as a shining example of clean code? That thing is the epitome of a framework for frameworks sake. Pretty sure Most of Martin's talks begin by complaining about this sort of thing?
Go on
Re: Ask HN: What are the “best” codebases that you've encountered?
#14Re: Ask HN: What are the “best” codebases that you've encountered?
#15Re: Ask HN: What are the “best” codebases that you've encountered?
#16Tellingly, Marijn Haverbeke, Codemirror's creator, is also the author of the excellent 'Eloquent Javascript' [1].
Re: Ask HN: What are the “best” codebases that you've encountered?
#17What do you like about Laravel and dislike about React? I like the Linux kernel codebase: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/lin...
Re: Ask HN: What are the “best” codebases that you've encountered?
#18Not only that but laravel is in a mature space where the problems are already solved. Its basically reinventing the wheel.
Im not surprised that Laravel is written cleanly but I hate its API. It reminds me of the bloat of Zend but with an obnoxious artsy style added to it.
Im an engineer not an artisan.
Re: Ask HN: What are the “best” codebases that you've encountered?
#19I'm really curious how you see laravel as a shining example of clean code? That thing is the epitome of a framework for frameworks sake. Pretty sure Most of Martin's talks begin by complaining about this sort of thing?
Re: Ask HN: What are the “best” codebases that you've encountered?
#20I know it's a cliche but the sqlite code is the easiest to read C I've encountered. Followed closely by the code for Redis.