vote up 4 vote down star
2

Where can I find critical analysis of OpenSource projects?

ie: in-depth analysis of methods within the source, a comparison of projects with others, and performance metrics ...

I'd like to read something about existing projects that would give me an overview of its design, implementation, strengths and weaknesses, so I can choose something to get involved in. Hopefully, there would be more than one analyst per critique.

flag

4 Answers

vote up 3 vote down check

Ohloh will give you some information, but only what can be machine counted from source code repository data, i.e.:

  • Languages used, how much of each
  • Comment percentage
  • Developer base (i.e. expanding over time)

However, I don't know of any service/site that does automated method analysis at the code level. Ohloh might eventually convey something like "Mostly OOP", but that would be in the distant future.

Almost all reports like the type you mention are done by hand, in a lab and testing a very targeted group .. i.e. comparing performance and coding methods of various web servers. Almost all of the time, you'll find these types of reports on the Slashdot front page, as its data that many people would be interested in seeing.

Something like Ohloh could give you a good start of what you would want to compare yourself, but I know of nothing that will do it for you with any degree of reliability.

link|flag
vote up 1 vote down

I would recommend you do some searching around on ohloh.net. While it doesn't offer a analysis of architecture, it gives a lot of useful statistics (language, activity, location of members, user rating, license type, news, etc) about popular open source projects. You may find this a useful tool in looking for a project to contribute to.

As an example, here is the page for NUnit: http://www.ohloh.net/p/nunit

You can always search open source project hosting sites such as SourceForge, Google Code, and CodePlex as well, although the information isn't as in depth as with ohloh.

link|flag
vote up -3 vote down

Not trying to sounds offensive but your question is completely backward. You should be asking what you can do for a specific open source project. Why anyone would analyse open source projects and compare them against each other, I have no idea. I can see some benefit in looking at performance metrics for the actual software but this would be genre specific and in no terms general.

Your best bet is to go to sites like freshmeat, look at the release history, source code and developers working on projects that are of specific interest to you and ones where you can make a difference

In short: Software can be compared against other software

Projects cannot be compared against other projects. And to do so is ill-informed. What is considered the right method by some is often seen as wrong by others.

link|flag
I think you missed the point. Adequate critique is very useful and can help to learn on others faults rather then doing errors yourself – aku Jan 17 '09 at 16:12
I think the OP just wants to get involved in one or more projects but is having a hard time finding one that matches his preferred methods, style and interest. Projects can be compared against other projects, for instance, project A might prefer a c-style that is closer to your own than project B. – Tim Post Jan 17 '09 at 16:14
vote up 2 vote down

Patrick Smacchia (author of execellent tool NDepend) posts analysis of open source projects on his blog

Some posts I remeber

Lessons learned from the NUnit code base

Analysis of Paint.NET

link|flag

Your Answer

Get an OpenID
or

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