Earlier quoted context omitted.
In my experience, best jobs you get aren't posted — as best candidates don't send out resumes.
But we can't all be the best.
Ask HN: What source code is worth studying?
111–120 of 176 posts
Re: Ask HN: What source code is worth studying?
#112C -> Varnish PHP -> Yii Ruby -> Merb Scheme -> Arc Clojure -> Core JavaScript -> Multeor Any languages in particular that you're interested in not covered above?
PHP -> Yii
Are you suggesting specifically Yii 1 or Yii 2, or either one?Re: Ask HN: What source code is worth studying?
#113Earlier quoted context omitted.
Thanks for this list. I was mostly looking for Python, Javascript, Haskell and C#. Any help regarding that? Also, as I believe this thread will also help others, you can go ahead and post about any other code-bases for other languages.
Modules within the Python standard library are very well written. The source code also provides very good examples of decent unit tests.
Re: Ask HN: What source code is worth studying?
#114I found the annotated source code of the underscore.js to be very educational: http://underscorejs.org/docs/underscore.html
Re: Ask HN: What source code is worth studying?
#115For PHP, I've been very impressed by Phabricator's code (and the related phutils library). It's worth looking at the git commits as well to see just how clean and structured commits can be. I'm much more impressed by it than by any PHP framework code I've read (and I've read Zend, Symfony2, li3, codeigniter as well as custom frameworks)
Re: Ask HN: What source code is worth studying?
#116C -> Varnish PHP -> Yii Ruby -> Merb Scheme -> Arc Clojure -> Core JavaScript -> Multeor Any languages in particular that you're interested in not covered above?
Thanks for this list. I was mostly looking for Python, Javascript, Haskell and C#. Any help regarding that? Also, as I believe this thread will also help others, you can go ahead and post about any other code-bases for other languages.
Re: Ask HN: What source code is worth studying?
#117Re: Ask HN: What source code is worth studying?
#118Re: Ask HN: What source code is worth studying?
#119Re: Ask HN: What source code is worth studying?
#120Haskell: Snap https://github.com/snapframework/snap Snap is another project built in layers (snap-server, io-streams, snaplets, snap-core). The 1.0 release makes some pretty massive structural changes behind the scenes changes with minimal breakage of the public api and io-streams is a very nice api to work with.
JavaScript: Underscore.js http://underscorejs.org/docs/underscore.html Underscore is a utility library that gives a nice overview of various techniques in JS, such as how to handle equality, use of apply, ternary operators, etc. Many functions have fallbacks to ECMAScript 5 native functions.