The best way to learn programming is by writing programs. Reading programs written by brilliant programmers is equally important. If someone asks me for source code to read and learn from, without a second thought I will point him/her to SQLite. The following merits make the SQLite source code an ideal learning ground for programmers:

  • Informative, balanced comments.
  • Good coding practices: well factored-out functions, idiomatic use of the implementation language, consistency in style, comprehensive tests etc.
  • A real world project. Probably SQLite is the world's most widely deployed database! Still it is small and amicable to a single brain.

SQLite is implemented in C. Are there open source projects written in other languages/paradigms that have all the above qualities? Personally, I would like to know about a Lisp project. Many will be interested in Java/C++ projects because millions of words have been written about designing 'maintainable object-oriented software'. It will be informative to see this wisdom in practice.

link|improve this question

76% accept rate
One more well written piece of software that has all the above merits: minix3.org. It even has a book that will help you profoundly understand the code! (pearsonhighered.com/educator/academic/product/…) – Vijay Mathew Dec 23 '10 at 10:25
2  
+1 for SQLite.... – Appu Dec 23 '10 at 11:30
3  
belongs to programmers.stackexchange.com ? – Vincent Malgrat Dec 23 '10 at 15:13
1  
A Java project that meets the criteria: artofillusion.org – Vijay Mathew Dec 24 '10 at 9:43
show 1 more comment
feedback

closed as off topic by dmckee, Donal Fellows, bmargulies, Josh Lee, Ben Voigt Dec 26 '10 at 5:46

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

14 Answers

up vote 6 down vote accepted

As far as Common Lisp is concerned, Edi Weitz is generally regarded as producing Libraries of highest quality. Especially CL-PPCRE is often mentioned as commendable reading.

link|improve this answer
feedback

Linux kernel is very well-written piece of software

link|improve this answer
15  
Well functioning, yes. Well written, possibly. Readable ... [dons flame-retardant underwear] ... somewhat. Not for the faint of heart. – Piskvor Dec 23 '10 at 14:41
Err, "no". Linux deliberately uses lots of gcc-specific code patterns. In most cases, C99-conforming code would be a better goal. – DigitalRoss Dec 25 '10 at 1:21
feedback

Tomcat source code , widely deployed servlet container written in java

Plan 9 source contains a lot of interesting code (written by the very same people that invented C and Unix)

Virtualbox/Google Protobuf - relativly large and successful C++ applications

link|improve this answer
feedback

Emacs is used by programmers and power users worldwide, and it's largely written in Lisp (it's Emacs Lisp, but still). :-)

link|improve this answer
4  
Emacs' core is written in C and other parts in Emacs Lisp, so you can learn two languages by looking at one program ;-) – darioo Dec 23 '10 at 9:35
feedback

In my opinion it is also very useful to read and work with bad designed software to get a clue of API design. There are a lot of things which seems great in the first place, but have lots of little side-effects. Having to use a bad API gives you the experience to know when to avoid clever tricks.

link|improve this answer
feedback

Smalltalk. Dig through the image of any major Smalltalk implementation and you'll probably learn a whole lot. Start writing code in Smalltalk and you might learn more.

Share and enjoy.

link|improve this answer
+1 for bringing up Smalltalk. Most of the 'design patterns' that became fashionable in the mid 90's existed a decade ago in various Smalltalk implementations. – Vijay Mathew Dec 24 '10 at 7:22
feedback

GNU toolchain - the mother of so many other *ware

link|improve this answer
feedback

Google Guice is written in very good Java http://code.google.com/p/google-guice/source/browse/

It reminds me of functional programming, yet it's still just Java ;)

link|improve this answer
feedback

For java I would point to android source code or to intelliJ Idea repo.

link|improve this answer
feedback

For C++ probably Loki. And I would suggest to read also the book Modern C++ Design from its author.

link|improve this answer
feedback

I think Chrome is a good example for C++.

link|improve this answer
feedback

If you're interested in something special have a look at the PostgreSQL source code.

  • Perfectly clean code
  • well commented
  • modular regarding the different step (parsing, optimizing, ...

and the special thing, they have implemented kind of object orientation in plain C for their purpose.

link|improve this answer
FWIW XWindows implemented OO in C many years ago, so if you're looking for something like this the XWindows source code could be a good starting point. – Bob Jarvis Dec 23 '10 at 13:45
feedback

First thing I'd do is check out your library's implementations. For example in C++ you can read the Standard library's implementations. While they do some things that you shouldn't (like use _Name style names) overall they have to code to an extremely high standard.

link|improve this answer
feedback

I would suggest not reading program source code to learn to program.

Edit:

There's a difference between reading source code of a piece of a program, such as an algorithm, or an example program INTENDED to teach a concept. But if anyone says they get anything out of reading code from a production product, they're either lying or they wrote it.

link|improve this answer
6  
Could you pls give some reasons? Note that many respectable sources suggest reading programs written by other people as part of learning. (For example see: norvig.com/21-days.html) – Vijay Mathew Dec 23 '10 at 10:03
That's a trick that works only when you're trying to learn problem solving on an algorithms level. – Rei Miyasaka Dec 23 '10 at 14:02
3  
-1... @Falmarri: Reading code written by others is often a good way to learn coding yourself. You'll not only learn how NOT to code, but good coding practices as well. – Programming Enthusiast Dec 23 '10 at 15:42
3  
This is like telling aspiring writers not to read other books. – Brad Larson Dec 23 '10 at 16:11
Learning does not necessarily happen by having programs intended to teach concepts. Tinkering with code written by others is a great way to learn, especially if you know HOW successful the original coder has been in reaching his/her objectives. – Programming Enthusiast Dec 24 '10 at 9:41
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.