We learn programming by writing programs and learning from other programs. Which open source code repositories/programs you suggest for learning/improving programming? While citing reference please also mention the thing you liked about it.
closed as not constructive by Will♦ Nov 22 '11 at 16:40
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I would recommend Scott Hanselman's weekly source code articles, he does exactly what your proposing, that is read more source code to get better. It's worth the read. |
|||
|
|
|
I can recommend Simon Tatham's puzzle collection. It's a series of puzzle games (minesweeper, sudoku, fifteen) available for Windows, OS X and Linux (and as java applets). The architecture is quite simple: there's a front-end interface with three implementations (one per platform), a back-end interface with one implementation per game (I've given three examples) and a mid-end that makes them talk together, do serialization and other neat stuff. Basically, it's good OOP. Written in C. It's easy to contribute to (I implemented the Filling and Range games) since it's well documented, and it's easy to read. |
||||
|
|
|
It depends upon your interests, but I had worked with the Quake III codebase, and that was fairly well-written and nice to work with. It is written in C. |
|||
|
|
|
The Linux kernel is a very good way to learn. I know it may be difficult to dive into because of the multi-architectural structure and the large amount of code but there's some very good article to go slowly inside, like this one from Tim Jones. I've learned a lot by looking at a specific subject, like the FAT driver implementation and filesystems abstraction. |
|||
|
|
|
Relatively small, yet with enough complexity to be able to learn from, my vote goes to: Apache's Log4Net logging framework. It's source code is very readable, and "cross-platform" [compilable on: .NET 1.0, 1.1, 2.0, CF, MONO...], thus being valuable for lesson in "cross-platform" C# development... |
|||
|
|
|
Disruptor's code is exemplary and also much can be learned from what it does to achieve extreme performance on modern hardware. Worth reading are Martin Fowler's explanation of its architecture, the technical paper (PDF) and the QCon presentation. Also the developer blogs contain much good reading - especially the Mechanical Sympathy Blog which teaches many things about how modern CPUs and memory works. |
|||
|
|
|
You'll find lots of examples. But has Jim Buck said, it depends on your interests. I've learned a metric s-- ton of "stuff" from the SharpDevelop source. |
|||
|
|
|
One of the best pieces I've found of clear and concise source code is the jQuery source. Whether you like Javascript or not, it makes a great case against advocates of "code being the documentation". There's lots of comments but it's not ascii artwork and you can see clear reasoning going - the comments make you know exactly what is trying to be achieved. An example (full source):
|
|||||||||||
|
|
If anyone has a copy of Code Reading by Diomidis Spinellis, what open-source projects does he write about there? @Avinash: If you want to learn more about programming in general, I would recommend both Code Reading and Code Quality by Spinellis. They have code samples from various projects, all FOSS, I believe, so you can not only read about them, but go and get the version discussed in the book and the latest version to read more code from them and learn. |
|||
|
|
|
I thoroughly recommend Code Complete 2nd Edition (ISBN: 0735619670) written by Steve McConnell. For the most part, it uses C++ as its lingua franca, however it has occasional mentions of Visual Basic code. In fact, this book was actually used throughout my college's computer science department for advocating good coding practices. And, to be frank, after reading this book, my coding skills and productivity improved by leaps and bounds. |
|||||||
|