vote up 12 vote down star
14

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.

flag

8 Answers

vote up 5 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.


link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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 game) since it's well documented, and it's easy to read.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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...

link|flag

Your Answer

Get an OpenID
or

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