Slashdot Mirror


Ohloh Tracks Open Source Developers

eldavojohn writes "The startup company Ohloh has a database listing 70,000 developers working on 11,000 open source projects. Their aim is to 'rank' open source developers, which raises some interesting questions about exactly how useful this tracking company is. Questions like, 'Is there an accurate way beyond word of mouth to measure the importance and skill of a developer?' I found it slightly alarming that, to this site, the number of commits (with input from the number of kudos) tells how good a developer you are."

115 comments

  1. Accurate? Not for me by mrslacker · · Score: 5, Interesting


    I don't know how representative it is, or if it might improve over time, but I looked myself up.

    I found mentions in 5 projects - _except_ they're all just versions of 2.6 kernel source with the same contribution for an obscure TV card cx88 variant I did. In practice, I'm sure I'm hardly alone in having contributions (mostly in small ways, but sometimes very considerably) to over 100 projects over the years. I guess I have to go through and add some of those projects.

    Naw, CBA. At least I can make sure my resume is accurate.

    1. Re:Accurate? Not for me by morgan_greywolf · · Score: 1

      Ohloh doesn't even list me. On any projects I've contributed to, or even my own. *sniff*

      Like I actually care. I don't do this stuff for recognition anyway. I do it because it's fun.

    2. Re:Accurate? Not for me by Anonymous Coward · · Score: 0

      Same here, missing about half my linux-2.6 commits (which is several hundred) even though they're correctly attributed by git.

    3. Re:Accurate? Not for me by Durin_Deathless · · Score: 1

      Commits are definitely a bad metric - for one of the projects I'm involved with it shows I have 24 out of something like 800 commits, which doesn't factor in the commits I made while it was still a private project in a repo with other things, and it doesn't count research and political work required to make the project happen. Also, lots of my contributions to things have been submitting a patch, which got me a mention in the commit log, but Ohloh doesn't pick up on that.

      --
      You should use AdiumX on your Mac.
    4. Re:Accurate? Not for me by rgbecker · · Score: 0

      Well I'm not there, but neither was Guido van Rossum so I suppose you can call yourself an ubergeek :)

  2. So What Metrics Do You Suggest? by eldavojohn · · Score: 4, Interesting

    I'm sure I'm hardly alone in having contributions (mostly in small ways, but sometimes very considerably) to over 100 projects over the years. I also don't think you're alone in finding that metrics fail to measure good programmers. My boss constantly asks me for lines of code count from developers. No matter how many times I express this to him, this is not a measure of success or of how good a coder you are.

    I tried to think of metrics to relay up the chain (a special thank you to the stat-scm goal in maven) but I come up with some pretty lame ones:
    • Code to comment ratio is desired at 1:1 (at least in the commercial world)
    • A class/method/function/procedure/module desired size should be defined and rated
    • # of Unit tests
    As you can see these are the ones that I found could be automatically gathered. And even these have exceptions. Anything else I think of either takes too much time to gather or is subjective. This is tough, I would like to default to peer review but oftentimes I find teammates voicing their personal hatred for an individual or taking into account personal qualities when ranking a developer. Real Life Example: Teammate A is from MIT and teammate B thinks everyone from MIT is a god. Unfortunately Teammate A hasn't done anything but criticize everyone's code without any constructive comments to make it better.

    I submitted this story hoping it would open dialog on measuring coding abilities in a semi-automated way.
    --
    My work here is dung.
    1. Re:So What Metrics Do You Suggest? by JonTurner · · Score: 4, Insightful

      # of penguin stuffed animals in your possession.
      # of kernel builds
      # of ICQ shouting matches ending in "Nazi!!!"
      # of cans of Jolt consumed
      # of steps from mom's basement to side door.

      Or the old standby, lines of code (including comments, of course).

      In short, there's no way to automatically judge the value of a programmer based on silly metrics. How would one score for "bugs not written" or "elegance of solution"/"nasty kludge avoided"?

      FOSS is worth whatever the users and the coders say.

    2. Re:So What Metrics Do You Suggest? by The+End+Of+Days · · Score: 4, Insightful

      What about some slightly deeper tracking into the repository? Figure out how much code a developer committed that had to be changed later.

    3. Re:So What Metrics Do You Suggest? by morgan_greywolf · · Score: 5, Insightful

      What about some slightly deeper tracking into the repository? Figure out how much code a developer committed that had to be changed later. Not bad, but it depends a lot on the maturity of the project. Many young projects start out with several complete rewrites before they find a workable solution that performs well, is scalable, robust and reliable. And even on mature projects -- a lot of times and entire codebase is scrapped to accommodate new features: think Samba 3.x -> 4.x or GNOME 1.4 -> GNOME 2.0.

    4. Re:So What Metrics Do You Suggest? by lymond01 · · Score: 1

      It's a little tricky because talent is only as good as what's seen. From a business perspective, they don't care so much about the getting there, as long as there's something done within deadline (but they want to know you're working to meet that deadline so they count your lines of code).

      Nice thing about open source code is that it is reviewed by other developers as it goes. This site might be worthwhile if it has good input from thoughtful people. Like Slashdot people! The shiny...happy kind...! Right?

    5. Re:So What Metrics Do You Suggest? by samkass · · Score: 1

      The SEI and various other organizations focused on process have a lot of suggestions. There are some simple ones, such as "function points" * "complexity" as a measure of productivity. Or defects per function point as a measure of quality. Or some from the extreme programming world of user stories completed.

      But nothing is really truly accurate, only guides humans. If it were, managers could be robots.

      --
      E pluribus unum
    6. Re:So What Metrics Do You Suggest? by infonography · · Score: 1

      Granted that those are excellent metrics, but you left out Vi/Emacs Flamewars and number of Microsoft Jokes. As to lines of code I once put Temporary Autonomous Zone by Hakim Bey in my .plan The sysadmin for the system fingered me from a dialup and was rather pissed about having to disconnect.

      But seriously, the problem with a lot of the FOSS communities is that there are a great deal of part timers. How do you measure the skills of someone who has a day job coding and the has a pet project or three? This will only hurt programmers who don't exclusively work on FOSS. The next time they apply for a gig at a FOSS company their closed source work will be overshadowed by some minor hobby work they did. It kind of ranks up there with embarrassing facebook and youtube videos.

      --
      Sorry about the writing. Robot fingers, you know? Cliff Steele in DOOM PATROL #23
    7. Re:So What Metrics Do You Suggest? by timewasting · · Score: 3, Insightful

      I always hated the lines of code metric because it was so useless. A really good architecture with a good coder leads to much LESS code that looks simple to the casual observer. Similarly, the number of comments might not be very useful as well. Spaghetti often has lots of extra comments, while good code is often self-commenting (at least in my commercial realm). Lots of unit tests are often unhelpful if there are no automated system tests. The best coders balance design, coding and testing in the scope of their deliverables and can effectively estimate how long it will take ahead of time. The art is coming up with a good architecture based on standard patterns and following up with concise, self-documenting code that is easy to maintain and enough tests to know when it works and more importantly when it doesn't. If you can do that in a reasonable amount of time, and less time than what is expected, you're good. If not, you need to be refactored.

    8. Re:So What Metrics Do You Suggest? by CarpetShark · · Score: 0, Redundant

      In short, there's no way to automatically judge the value of a programmer based on silly metrics.


      Personally, my vote is for the all-binary Microsoft-employee vs. Non-microsoft-employee model.
    9. Re:So What Metrics Do You Suggest? by ohlolo · · Score: 3, Informative

      Software development metrics are not worthless. They are, however, seriously misunderstood. This is partly why we built Ohloh to focus on Open Source: it's the world's largest testbed of available software development metrics.

      One challenge to interpreting development metrics is having a clue about what is 'normal'. Just knowing your FOOBAZ count is X doesn't help much. Once you can compare your FOOBAZ count to 100k other developers, it may begin to give you some helpful perspective. Of course, relying on a single metric is myopic - which is why we offer comment ratio, language breakdown etc...

      Btw, I agree that human opinion plays a vital role. That's why we also enable people hand out 'Kudos' to their peers - to acknowledge human judgement as well. The Kudo scores are then evaluated using a PageRank-inspired algorithm across all open source contributors.

    10. Re:So What Metrics Do You Suggest? by Anonymous Coward · · Score: 0

      True. Then again, the GNOME 1.4 developers did kind of deserve death by firing squad.

    11. Re:So What Metrics Do You Suggest? by eh2o · · Score: 1

      Here are some more that can be derived automatically:

      - Code cleanliness (e.g. consistent camelCase, whitespace, comment styles)
      - Statistics of commits over the same section of code (may imply that it is buggy)
      - Rate of API breakage -- how long does a function last before it's name/args/return value changes. This metric could be "weighted" by evaluating the prevalence of the function. A high rate implies an unstable design.

      Some of the ones I don't like that Ohloh uses:

      - "Mature" meaning that the project has a long history. That tells me nothing. Some of those projects had such pathetic early versions that it would be insane to use them today. On the other hand, there are probably millions of active Apache 1.3 installs. I would call a project mature when its currently maintained major version(s) have a long history.

      - "Very Large Development Team". e.g., Drupal (contributions) with 575 developers. But does it really make it better? In my experience 95% of that project is junk. The quality of each contributing member needs to be evaluated.

    12. Re:So What Metrics Do You Suggest? by bishiraver · · Score: 1

      Number of unit tests doesn't necessarily denote good unit tests.

      It would be a better metric to show what percentage of your codebase is actually covered by unit tests.

      Using Test-Driven Development ensures that this percentage is notably high.

    13. Re:So What Metrics Do You Suggest? by madmak · · Score: 2, Informative

      Exactly. There is much more to get out of the code repository. Check http://www.sourcekibitzer.org/ metrics. It is able to extract developers "know-how" score by crawling the repositories. Much better than simple Lines of Code.

    14. Re:So What Metrics Do You Suggest? by Anonymous Coward · · Score: 0

      If you're not already enforcing this through dev tools, some code metrics can be gleaned from http://checkstyle.sourceforge.net/

      Things like cyclometric complexity, Fan out, etc

      If someone tends to write things with a very high cyclometric complexity I'd tend to say they can improve the legibility of the code they write. If they tend to have a high fan out, I'd say they could generally spend a bit more time modeling and designing.

      This of course makes the assumption that you're aiming for OO software

    15. Re:So What Metrics Do You Suggest? by Pseudonym · · Score: 1

      My boss constantly asks me for lines of code count from developers.

      I bet I know how you initialise a 10,000 element array, then.

      --
      sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
    16. Re:So What Metrics Do You Suggest? by FatdogHaiku · · Score: 1

      Come on, no matter how you rank people, this just ends in a lawsuit when someone does not like their ranking, especially if the ranking does track errors and poor performance somehow.... It's sure not going to help build community or aid actual development... unless someone is developing a giant pissing contest.

      --
      You have the right to remain sentient. If you give up the right to remain sentient, you will be elected to public office
    17. Re:So What Metrics Do You Suggest? by The_reformant · · Score: 1

      I think management probably do grasp that lines of code arent necesarily proportional to the amount of work, however they are probably wanting to make sure the the developer are doing *some* work. Personally I would gather 1/(no. slash dot comments) :D

      --
      I have discovered a truly remarkable sig which this post is too small to contain.
  3. I can't imagine... by Anonymous Coward · · Score: 0

    I'm sure I'm not the only one who looked at that headline and wondered "How the hell did even a Slashdot editor misspell "Ohio" that badly? Even Taco could probably get within one letter of correct, if only because he's from Michigan.

  4. sounds familiar by Anonymous Coward · · Score: 5, Informative

    This reminds me of how academics are increasingly judged. It is more about how many papers and how many other people link to it rather than the quality of each paper's work or the note of the linking party. Accordingly, many authors inflate their 'impact' scores by splitting up papers and publishing nonadvancing science, no-one can blame them for this as many are trying to justify themselves to their departments or are still doing the postdoc merry-go-round looking for new jobs every 18months.

  5. no thanks by dcskier · · Score: 2, Interesting

    You can't effectively rank developers. First there are just too many to rank. Even in college football, where thousands of people are paid everyday to monitor it, they don't try to rank all of the ~119 Div 1 teams, just the top 25. Secondly there isn't a simple metric to rank developers. It's about as smart as saying look I did the most work on this project because I wrote the most lines of code.

    This could even have a negative effect if developers get concerned about their ranking and try to game the system instead of making quality contributions to projects.

  6. Same here by jaaron · · Score: 5, Insightful

    Most of my contributions were on website documentation, wikis, or mailing lists, which aren't included in these metrics. At the moment, a lot of my commits are done on repositories not directly available to the public. While I don't really need Ohloh to tell me if I've contributed to a project or not, it's still a little annoying.

    And what about contributors who submitted patches that had to be committed by someone else? Or people who contribute by providing help on IRC channels, blogs, forums, or other mailing lists?

    While ohloh metrics can be useful, they also need to be taken with a grain of salt, particularly the contributor metrics. They're a bit more useful on measuring a project as a whole (but they still miss a lot of activity).

    --
    Who said Freedom was Fair?
    1. Re:Same here by ubernostrum · · Score: 1

      While ohloh metrics can be useful, they also need to be taken with a grain of salt, particularly the contributor metric.

      Particularly all of their metrics. Another example: one metric is the ratio of code to comments. This is debatable enough in and of itself (there are an awful lot of people who think code should never be commented, on grounds that code which requires comments must not be written clearly), but on top of that it takes a very narrow view of what constitutes a "comment". For example, a Python docstring doesn't count, which means that Python programmers who do the right thing will be penalized by the comment metrics.

    2. Re:Same here by Toba82 · · Score: 1

      I found myself on one project. I may have done other work that I've forgotten about, too. Ohloh seems to be pretty much 100% ego boosting with no actual constructive output.

      --
      I pretend to know more than I really do by mooching off google and wikipedia.
  7. business model by magarity · · Score: 2, Interesting

    What the heck is their business model, or is this just a hobby site? About the only way I can think of to make some money is to take some under the table in exchange for a higher rating.

    1. Re:business model by darthflo · · Score: 1

      TFA says classifieds, them digging through their data on request, subscriptions for them monitoring projects/devs.

      I imagine they might make quite nice head hunter "equipment". Think company x wanting to incorporate SMB connectivity to their closed source product (and requiring a developer to do so). Instead of digging thru or placing classifieds, Ohloh would hook them up with the top 10 contributers to smbfs. This could turn out to be a great deal for both sides. Company X gets a dev really skilled in the task he's going to work on, Developer Y gets paid better for a gig in a field he's interested in.
      If Ohloh should succeed, a few hundred commits in their database could be a great independent point in anyone's CV.

    2. Re:business model by Anonymous Coward · · Score: 1, Interesting

      Their website says they have independent investors. Maybe this is just a technology demonstration, or maybe they'll sell subscriptions when it's working well, or maybe they'll allow people to buy homepages to better present their skills, or allow companies to buy a customized search for programmers they want to hire. I can think of a dozen possible ways to make money off this.

      Remember, a startup virtually never ends up doing what they start out doing. (The Apple guys started out making phone-hacking blue-boxes.) Even if they intend to make it big by tracking open-source developers, I doubt that will be their primary business in 5 years.

      It's kind of sad that the an initial response to an interesting new company is 'they're not profitable today, so the only possible business model is bribery'.

      I'm in the same boat: working at a startup with private investment but not taking money from users yet. We've been accused of being a front for various giant .coms (I wish!). Trust us, when we have something that's good enough that users will want to pay for, we'll have no problem flipping the switch and charging users for it. Until then, just chill.

  8. Would this discourage contributers to open source? by softwaredoug · · Score: 3, Insightful

    Would this discourage contributers to open source projects? Now if I put on my resume that I've contributed to an open source project, somebody is going to want to look me up. I have to deal with all that baggage when I just wanted something to do in my spare time. Also, I really am not sure I feel comfortable being given an absolute rank. People always bring different skill/approaches to different jobs and I don't think you can arguably say one is better than another. I've worked in teams where everyone respects the different capabilities and limitations of each member. Its sort of like arguing there is an absolute thing known as "intelligence". Is there really such a thing or do we just all bring different skills/perspectives/approaches to the problems we solve? I'd prefer to think the latter, that everyone contributes what they can but has their own limitations. Talking about absolute "intelligence" or "value" seems condescending and elitist.

  9. commits by rucs_hack · · Score: 0

    It's as good a measure as any.

    Few commits means either you're Donald Knuth, or you're not that actively developing your code.

    In Open Source active development does tend to mean a reduction in crapness, software wise.

    What else it could say I don't know, but since there are few, if any definitive means by which code quality can be measured (and don't give me that lines of code versus man hours rubbish, I heard enough of that nonsense at uni), it's probably a reasonable metric.

    1. Re:commits by krog · · Score: 3, Interesting

      It's as good a measure as any.

      You might be right, but it still sucks. And in the case when all your solutions are crap, I think it's dishonest to present any of them as actual, workable solutions.

    2. Re:commits by epine · · Score: 1

      It's as good a measure as any. Talk about damning with faint praise. That's how I aspire to be evaluated: lined up naked against a wall while my vital statistics are transcribed by a group of bonobo monkeys. Hey, it's as good a measure as any.

      In fact, the monkey-measure is probably better than commit-count, because no matter how my spam box bulges, the monkey-measure is less likely to persuade me to exchange an effective work habit for an ineffective work habit in an effort to sway a useless statistic.

      People who fail to vomit when linearity is projected on inherently non-linear systems soon become known as economists or middle managers.

      There is a potential upside. If this new bit-pimp metric catches on, I'd love to be able to sell my commit-count history on eBay, or perhaps pull an exchange for a level 70 Druid.
    3. Re:commits by kelnos · · Score: 1

      Agreed. And note that Oholoh appears to, by default, only track 'trunk' branches for subversion repositories. So if I spend 6 months and 500 commits working on something on a branch, which I later merge into trunk (one commit), that history isn't tracked. Sure, you can add the branches/ dir to the Ohloh 'enlistment' (what a stupid word), but it seems to be at least frowned upon.

      And not all commits are code. A decent percentage of the commits in my projects are i18n/l10n-related. Those are even harder to track as 'contributions' because we have fewer committers than contributors -- many translators just send patches to our i18n mailing list, which those with commit access commit to the repository.

      Also, for a while we had a translations maintainer who periodically (it might have been every day) ran 'make update-po' in the po/ directories of all our modules, which updates all the translation files to account for changes in the code, and then committed those changes. Probably the majority of those commits were just for trivial line-number comment changes in the .po files. Regardless, an automated script making daily commits would artificially inflate that committer's stats.

      I know one developer who, when working on a new module, codes on it in private (possibly using a private svn repository, but maybe not) until he thinks it'ss ready (and he has very high standards), and then just imports the current state into the public repo as a single commit. So that's more history lost.

      I guess this is also a question of how project/server maintainers are about preserving project history. Some people might not have cared so much in the past, and might have thrown away history when (for example) switching SCMs.

      So yeah... going by commits in a restricted set of branches of public repositories is a bit questionable, and that's even ignoring the question of "does having more commits really mean you're a better or more valuable developer/contributor?" And I'd even say the answer to that question is "no" or at best "it depends," anyway.

      Having said that, it's still a fun site to play with.

      --
      Xfce: Lighter than some, heavier than others. Just right.
    4. Re:commits by SanityInAnarchy · · Score: 1

      If you have commit access, maybe.

      Consider the case where you don't have commit access, which means that not only is someone else committing for you, but they're probably committing it all in one big patch, rather than lots of little increments.

      I know that at work, where I have commit access, I tend to commit all the time -- if I need to not break things for everyone else, I make a branch. But for open source projects, I might do a weekend's worth of coding before sending it in, and even then, someone else gets commit credit.

      You're sort of right, though -- it's pretty impossible to find a good metric by which to measure productivity.

      --
      Don't thank God, thank a doctor!
    5. Re:commits by jtgd · · Score: 0

      It's as good a measure as any.

      Yeah, I'm getting better by the second.

      while [[ true ]] do cvs commit ; done

      --
      J
  10. This has been a problem at Wikipedia for a while by daveo0331 · · Score: 2, Interesting
    --
    Remember the days when Republicans were the party of fiscal responsibility?
  11. Number of commits? by Tarlus · · Score: 4, Interesting

    So in other words, I could commit some of my own code to a CVS repository, find some errors that I missed, fix them, commit it again, decide to add more comments, commit it again, find one more thing I probably could have done differently and then rewrite it, commit it again...

    And I would be ranked highly as a great developer?

    --
    /* No Comment */
    1. Re:Number of commits? by rucs_hack · · Score: 3, Insightful

      Certainly as a diligent one who actually cares about code quality.

      Anyone who thinks they can produce bug free code first try is an idiot. Anyone willing to accept that there are always going to be bugs, and actively looks for them is a good coder.

    2. Re:Number of commits? by linal · · Score: 1

      if that was the case then i would be the best developer in the world

    3. Re:Number of commits? by Aladrin · · Score: 1

      Or was too stupid to code it right the first time.

      I'm not calling him stupid... That was the example he was trying to get across. By this metric, stupid programmers that commit a lot because of mistakes are rated as highly as highly-motivated, caring programmers who commit a lot because they have a lot of additions to make.

      --
      "If you make people think they're thinking, they'll love you; But if you really make them think, they'll hate you." - DM
    4. Re:Number of commits? by Linegod · · Score: 0

      If they cared about code quality, they would test it before they committed it.

      --
      -- I care not for your foolish signatures.
    5. Re:Number of commits? by bdaehlie · · Score: 1

      I think each commit is weighted by the rating of the project you commit to. So no, that probably wouldn't get you very far.

      A couple commits to Firefox, the #1 rated project, is probably worth many commits to a less highly rated project. I'll let you go to their site and figure out how they rate projects.

    6. Re:Number of commits? by rucs_hack · · Score: 1

      What?

      You can't be a very good coder yourself.

      Making mistakes != stupid coder.

      Making mistakes, finding them and fixing them makes a good coder, nothing else.

      Sure the fix might not be great, it might be an ugly hack that needs to be refined, but you're only a bad coder if you don't fix your mistakes, not if you make them in the first place.

    7. Re:Number of commits? by Anonymous Coward · · Score: 1, Informative

      If you look around, eg javawoman not happy thread it is a bit worrying that an ex cat herder from M$ is not only behind the wheel, but clearly has the same marketing speak to shut up unhappy fodder for the soon to be commercialised service: ohloh_goes_open_source

    8. Re:Number of commits? by Tanuki64 · · Score: 1

      This is moderated 'insightful'? But definitely not by real coders. More by wannabes like a previous project manager of mine, who, whenever he found one of my bugs, complained I would not test my code. I just wonder how he knew that when he found one, that I previously did not remove 500, which I found myself through testing.

    9. Re:Number of commits? by Knara · · Score: 1

      The concern here was about people committing over and over again in a short period to fix bugs and thus being rated higher, not that you went "oops" and fixed a bug once or twice.

    10. Re:Number of commits? by Linegod · · Score: 1

      Exactly.

      --
      -- I care not for your foolish signatures.
    11. Re:Number of commits? by kelnos · · Score: 1

      No, you're also a bad (or perhaps just "sloppy") coder if you constantly make mistakes. Sure, everyone makes mistakes. But some mistakes are "stupid" and some aren't. If you commit broken code that doesn't even compile (and you didn't even test it), and then make another commit to make it compile, then was that first commit a "stupid" mistake? I'd say yes.

      This commit count thing is meaningless anyway. Some people commit more or less often, depends on personal preference. Just about the only things you can say are things like "this project has had no commits in 4 years, therefore it hasn't been very active in a while." You can't even make a good/bad value judgement from that statement.

      --
      Xfce: Lighter than some, heavier than others. Just right.
    12. Re:Number of commits? by rucs_hack · · Score: 1

      Then I suggest you fail to understand the purpose of versioning systems. Their purpose is not to store perfect code. The purpose is to store the latest changes to code.

      As a rule, the working, most tested versions of code appear in stable releases. These may themselves be in a versioning system, but as a rule they are marked as distinct.

    13. Re:Number of commits? by kelnos · · Score: 1

      Then I suggest you fail to understand the purpose of versioning systems. Their purpose is not to store perfect code. The purpose is to store the latest changes to code. No, I'm not failing to understand anything here. My point has *nothing* to do with the purpose of versioning systems. My point is that there are sloppier programmers, and there are neater programmers. As sloppy programmer might carelessly check in code without testing it (or without testing it thoroughly), believing that it works. A sloppy programmer might take 10 iterations to get something right, while a neater programmer might only need 3 iterations to get that same thing right.

      Sure, sometimes I commit code that I know doesn't work when I want to stop working on something, but I want to store the code in a 'safer' place than on my laptop. This merely reinforces the idea that using commit count as a metric of programmer quality is worthless.

      But my point still remains: a better programmer will, in general write more correct code than a sloppy/poor/novice programmer. This more correct code might require X bug fixes later, while some less-correct code might require Y bug fixes later, where Y > X. This particular situation will likely result in a greater number of commits being made by the sloppier programmer. My wild guess would be that the number of commits out there that are done to fix bugs due to sloppy programming is *far* greater than the number of commits that are the result of someone intentionally committing broken code that's a work in progress.

      In summary: you can't really tell anything about a programmer solely by their commit frequency/quantity, aside from temporal information about when they were working on the project. Advogato had it (at least partially) right: your best source of information on programmer quality is through word of mouth and peer review. Ohloh's foray in this direction (their "kudos" system) is pretty weak at this.
      --
      Xfce: Lighter than some, heavier than others. Just right.
  12. Pedantic tip... by Otter · · Score: 1

    "Kudos" is not plural, just a word that happens to end in "s", like "pathos". "Kudo", as used on that site, is as meaningless as "etho" or "mytho". The more frequent references to "many kudos" or other treatments of it as discontinuous are also incorrect, although much less jarring.

    1. Re:Pedantic tip... by kelnos · · Score: 1

      That was the first thing I thought of as well when I noticed their "kudos" system. Then I looked it up, and it turns out that kudos actually is the plural of kudo, and you can use them either way. I've never heard of it used in the singular form before, though.

      --
      Xfce: Lighter than some, heavier than others. Just right.
  13. Flawed, but interesting. by urcreepyneighbor · · Score: 3, Insightful

    Wouldn't such a system assume that everyone uses only one handle - or, their real name - all the time for every project? If so, then a lot of people - who contribute under multiple handles, nicks, whatever you want to call their identities - are going to missed or severely under-rated.

    I would rather not have my real name attached to most of what I've contributed. One, because my code is so damn sloppy that it's embarrassing. Two, because I don't want the hassle of my real life - you know, offline - and my, uh, "digital lives" conflicting with each other. Three, if I was easy to find - online - I run the risk of being pestered with silly tech support questions.

    UrCreepyNeighbor, while an accurate description of my personality, is one of many identities I have. Same could be said of almost everyone. I'm sure "HotChic17CA" doesn't use that username when she's talking with her grandmother, for example.

    --
    "The fight for freedom has only just begun." - Geert Wilders
    1. Re:Flawed, but interesting. by tokul · · Score: 1

      Wouldn't such a system assume that everyone uses only one handle - or, their real name - all the time for every project?
      It does not. Two persons with same nick handle can commit to different projects and they are not counted as one person. One person can have different nick handles and link them to own ohloh id in project properties.
    2. Re:Flawed, but interesting. by ohlolo · · Score: 2, Informative

      Disclaimer: I co-founded Ohloh. We let people 'claim' development contributions individually. So your Ohloh account can be related to as many (or as few ;-) nicknames on projects as you like.

    3. Re:Flawed, but interesting. by Knara · · Score: 1

      What stops me from claiming nicks which are not my own?

    4. Re:Flawed, but interesting. by grumbel · · Score: 1

      Wouldn't such a system assume that everyone uses only one handle - or, their real name - all the time for every project? You can register on the page and link all the different aliases back to together to refer to a single person.

      I think its a much bigger issue that all those people sending patches will be ignored, since there isn't really a standard way in most version tracking systems to keep track of the patch submitter instead of those that actually commit it into the repository.
    5. Re:Flawed, but interesting. by Kozz · · Score: 1

      I'm sure "HotChic17CA" doesn't use that username when she's talking with her grandmother, for example.

      Definitely not. Instead, he probably goes with AgentJohnSmithFBI.

      --
      I only post comments when someone on the internet is wrong.
    6. Re:Flawed, but interesting. by Compholio · · Score: 1

      I just registered some of my own, the answer is "nothing".

    7. Re:Flawed, but interesting. by mweather · · Score: 1

      "I'm sure "HotChic17CA" doesn't use that username when she's talking with her grandmother, for example." Nor does granny use BonsageSlut69 when talking to the grandkids.

    8. Re:Flawed, but interesting. by kelnos · · Score: 1

      I think its a much bigger issue that all those people sending patches will be ignored, since there isn't really a standard way in most version tracking systems to keep track of the patch submitter instead of those that actually commit it into the repository. That's one of the cool things about git (and maybe others). Each commit has both a "committer name" and "author name" field.
      --
      Xfce: Lighter than some, heavier than others. Just right.
    9. Re:Flawed, but interesting. by Lodragandraoidh · · Score: 1

      Of course, you know both 'Chic' and 'Granny' are probably 50 year old men who live in their mother's basement...

      --

      Lodragan Draoidh
      The more you explain it, the more I don't understand it. - Mark Twain
  14. Slashdot by sm62704 · · Score: 1

    You only have to comment on slashdot to tell that this is a really bad idea. You have people modding a comment "troll" because they don't like a stated opinion, for example. You have people modding a first post as "redundant" and a spot-on comment as "offtopic". People suck, especially at judging other people.

    And on a thing like that, you may have someone who knows absolutely nothing about code making judgements about coders.

    It's a stupid idea. It actually sounds like some harebrained idea thought up by a PHB. This idea needs to die quickly and horribly.

    -mcgrew

    --
    mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
    1. Re:Slashdot by Tridus · · Score: 1

      If the first post is "FIRST!", Redundant isn't bad. I mean thats been done how many zillions of times already? At this point it is redundant, but in the context of the site as a whole rather then one individual article.

      Of course if they gave me "-1 (Idiot)", I'd use that on the "FIRST!" people instead.

      --
      -- "So they told me that using the download page to download something was not something they anticipated." - Bill Gates
    2. Re:Slashdot by Anonymous Coward · · Score: 0

      You have people modding a first post as "redundant"

      It is entirely sensible to mod a first post as "redundant". People don't come into the discussion with an empty mind (although some act as though they did), so it's redundant to point out things that everyone's likely to know already, or to make a joke that everyone's heard before. More generally, for a comment to be "redundant" means that it adds nothing of value to the discussion, without being actively negative like a flame or a troll.
    3. Re:Slashdot by LMacG · · Score: 1

      I don't think he was referring to the canonical "first post", but to the first posting of an idea/thought/comment, which is subsequently repeated by somebody else. The somebody else should get the redundant mod (given due diligence in checking timestamps and allowing leeway as necessary).

      And I'll agree with the GP that this Ohloh thing sounds like it came straight from a PHB.

      --
      Slightly disreputable, albeit gregarious
    4. Re:Slashdot by sm62704 · · Score: 1

      I won't argue with that, but I've seen first posts that were actually commenting about the topic itself that were modded "redundant". In fact I try to not submit a comment until I see at least one other posted, because otherwise it will be modded to oblivion and nobody will see it, so what's the point of making the effort?

      Fortunately it seems that whenever I happen to hit slashdto right when they've posted something new I'm invited to metamoderate, so by the time I'm done with thet there are at least a dozen posts already.

      --
      mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  15. What An Incredibly Inane Idea by Jane+Q.+Public · · Score: 1

    This is completely ridiculous. They are attempting to judge value when there simply is no objective measure for the kind of things they are trying to judge.

    I think I would object to having my name listed on this site, even if the "rating" were high.

    1. Re:What An Incredibly Inane Idea by Tanuki64 · · Score: 2, Insightful

      They are attempting to judge value when there simply is no objective measure for the kind of things they are trying to judge.
      This is only half true. You can judge the quality of code. How good does is comply to the OO principles? Makes the design sense? Does it look maintainable? Robust? Reusable? How is it documented? There are even some metrics, which could be measured by static code analysis programs. Nevertheless I doubt that for each with Ohloh registered software project a senior software engineer will spend time to analyze the code independently from its purpose and give an objective evaluation of the skills of the programmers.
    2. Re:What An Incredibly Inane Idea by BeanThere · · Score: 1

      They are attempting to judge value when there simply is no objective measure for the kind of things they are trying to judge.

      I think you're confusing "no objective measure" with "no known algorithms to computate those measures". Just because we don't know how to implement meaningful metrics with a computer or with some formulas, doesn't mean they don't exist. The proof of this is that other humans who are very good coders *are* actually, on the whole, pretty good (in fact, the *best* system out of them *all*) at judging the quality of other coders - MUCH better than any known computational metric - that doesn't mean what they're doing is terribly subjective, there are effectively objective but poorly understood processes in the brain that analyse quality (based on amongst others aspects that Tanuki64 already mentioned) (we just don't know how to 'duplicate' those quality-analysing 'algorithms', but they must exist, because our brains can do them). The book Zen and the Art of Motorcycle Maintenance actually discusses this whole notion of 'quality' and the brain's analysis thereof.

      In the "old days", instead of PHBs who like to think everything in business (including performance 'metrics') can be reduced to little formulas, we used to just promote to managerial positions the people who were just really good themselves, and *they* would usually judge who was good or bad, and that was the end of it. And there is nothing wrong with this, it *worked*, despite our contemporary egalitarian indoctrinations crying otherwise ("but, but, it could be unfair!", boo hoo cry me a river - the occasional incidences of poor evaluations would be more than compensated for by not only an overall improvement in analysing the quality of workers, AND consequently better *appreciation* of actual quality work done, which is important for motivation and morale) - plus, managers who actually understand what they are managing tend to be better. I'd like to see a return to that 'old' culture, but it sometimes almost seems like 'stupid' PHBs have managed to take over and now protect one another, keeping themselves enriched and in employ even as they destroy companies (but that's another topic). Those egalitarian notions where don't want to be *judged* (except by so-called "impartial", "fair" machines/formulas) also contribute to our own downfall.

      Another approach might be to let the coders all evaluate and score one another via secret ballots; the aggregate scores could be (very very loosely) used as metrics - or rather, a 'rough guide' rather than absolute analysis - it's far from perfect, but it would still be much better than any automated metric, and better than letting a dumb PHB decide. It might suck for the 'overly arrogant and rude guy that nobody likes', but OTOH might make them be a bit nicer :)

      Metrics like LOC make people motivated to add lots of pointless lines. Yay. Some of the the most quality commits I've ever done were deletes, and the most quality module rewrites I've ever done almost always allowed the system to do more with LESS lines of code. I constantly strive to streamline my code.

    3. Re:What An Incredibly Inane Idea by Jane+Q.+Public · · Score: 1

      I was not referring to the code itself, I was referring to the fact that it is impossible to track who is actually contributing responsibly. For example, one open source project with which I am familiar (and I am sure that many others are similar in this) keeps strict controls on who can commit. Those who do commit, therefore, are generally committing other people's code. How good are they at documenting such? Not.

  16. Nonsense by Jane+Q.+Public · · Score: 1

    It's not a measure at all. For example, on some projects a ajor contributor might not even have commit rights... the code would have to be committed by others. And so on.

    They are attempting to measure something for which there is no consistent measure. As a consequence, there is no question that their "ratings" MUST be distortions.

    1. Re:Nonsense by softwaredoug · · Score: 1

      Indeed, good point. Any metric can be used to the savvy developers advantage. Some people track how many bugs a piece of software has after a release... We just group similar bugs into one bug. When you know the rules, you can use them to our advantage.

      I believe Fred Brooks points this out in the Mythical Man Month.

  17. L337 development skills! by hellfire · · Score: 3, Funny

    So in other words, I could commit some of my own code to a CVS repository, find some errors that I missed, fix them, commit it again, decide to add more comments, commit it again, find one more thing I probably could have done differently and then rewrite it, commit it again...

    Your willingness to fix errors, add comments, and do code rewrites puts you in the pantheon of programming gods! The next thing you are going to tell me you actually write your own legible "how to" user guides in PDF!

    --

    "All great wisdom is contained in .signature files"

  18. Sing for it! by lymond01 · · Score: 1

    Like the bards of olde, OS devs don't code for money. They code for prestige and fame amongst their fellows! Surely this site will decide who is the greatest dev to walk the earth. And that dev will have his own code set in stone and copied for ages to come. That developer will be legend.

    Unless, heaven forbid, the voting is more like the U.S.'s political system.

  19. No, no no! by morgan_greywolf · · Score: 2, Funny

    of penguin stuffed animals in your possession.
    # of kernel builds
    # of ICQ shouting matches ending in "Nazi!!!"
    # of cans of Jolt consumed
    # of steps from mom's basement to side door. No! You got it all wrong! Everybody knows that programmer productivity is inversely proportional to the number of Slashdot posts!
  20. Advogato by NaCh0 · · Score: 1

    It's been done before. It is called advogato. This is a site where developers can join, blog, and rate each other based on a trust matrix.

    1. Re:Advogato by Anonymous Coward · · Score: 0

      That was the first thing I thought of as well, but Advogato doesn't grind through its data in depth. It just has simple relationships where one coder can anoint another as Apprentice, Journeyman, or Master. Now say you want to know "is Bob l33t3r than Jim?" when neither of them have a direct relationship to the other, and you are to lazy to ask their friends and research their code and make an informed opinion. You want the computer to answer the question.

      A program could use Advogato's database to answer this question by giving everybody a ranking based on how many people consider them better or worse coders than them and comparing who is doing the considering. Of course, there is a problem with data input -- does "Master" mean "Better Than Me" (the easier for an algorithm) or "A Really Good Coder" (the likely human interpretation)? Also, what happens to the rankings if some jerk rates rms as an "Apprentice" and then calls someone like me "Master"?

      Going back to the beginning, the reason this article was posted is because Advogato doesn't do this yet and Ohloh does. That's why it is nifty. It also tries to match developers to projects they work on and programming languages, although it is clearly buggy (Firefox is written in Javascript? No wonder it is so slow!)

  21. But what's the point? by EmbeddedJanitor · · Score: 4, Insightful
    Making OSS dev is hardly a competition sport, so why do this? Kudos is one thing, but that should come from the community, not from some database.

    Some people will get a shiny glory and some will feel annoyed bbecause their projects/contributions have not been tracked.

    --
    Engineering is the art of compromise.
    1. Re:But what's the point? by Per+Abrahamsen · · Score: 1

      Making OSS dev is hardly a competition sport, so why do this? Kudos is one thing, but that should come from the community, not from some database.

      The "Kudos" is given by the community. And I like the inclusion of objective criteria to supplement the popularity contest. [ And if you don't think "number of commits" is an objective criteria, you don't know the meaning of the word "objective". ]

      Some people will get a shiny glory and some will feel annoyed bbecause their projects/contributions have not been tracked. Yeah, teenage angst. They need to get over it.
  22. Other frustrations by djmitche · · Score: 1

    I work on Amanda, but the site misrepresents my contributions in two important ways, too: first, I commit a lot of other peoples' patches, so my name appears in the ChangeLog a lot less often than it appears in the commit log. Second, Amanda changed from CVS to Subversion a few years back, and Ohloh doesn't index the old CVS submissions. As a result, the project is marked as just a few years old (it was originally written in '92), and few of the many historical contributors are not listed. I would like to see some way to "correct the record," but I suppose that's pretty hard.

    1. Re:Other frustrations by r_cerq · · Score: 1

      I suppose that really depends on the SCM and how the commits are structured or processed.
      I, for example, have commit access to one of the Linux kernel subsystems; about half the changes I commit, maybe a bit less, are contributed by users, and they appear properly attributed (to the original patch author) in the kernel git changelog and in ohloh.

      As for SCM changes, care must be taken during the conversion... We started out with CVS, and are currently using mercurial; when the change was made, the whole history was imported to bootstrap the new repo, and the mercurial tree includes the full changelog from the CVS era; if ohloh started tracking the HG repository, it would get the whole history (it won't, since it looking at the kernel tree, but you get the idea)

  23. Would not fly in Europe by Anonymous Coward · · Score: 0

    Registering large amounts of personal - almost political - data from a huge number of people without asking their consent would be so much against the European privacy laws. Selling access to that data, or mining it for commercial gain even more so.

  24. Their model is simple by CarpetShark · · Score: 1

    It's a very simple model really, when you think about it. Let's examine their possible train of thought:

    Sites can sell advertising when they get lots of frequent users. Sites need users to get users. Sites need some kind of user list to bootstrap. Where can you get a big list of users from? Why, isn't that opensource stuff based on lots of people communicating in the open, over the net? Oh, hey, let's use those suckers. Hmm. How can we make more suckers sign up after the first ones? Hmm... we need to make the ones who aren't in the DB feel like they should be. I know... rank them!

    Hmm... do these people care about rankings? Will it actually be useful? Ahh... Who cares?

  25. Bad measurement, but brilliant move by fedtmule · · Score: 1

    This measurement is not particular good - but what software metrics are?

    However it is still a brilliant move, as it will motivate a lot of developers to add projects to Ohloh's database. Developers will add just the projects they have contributed to, so that there ranking will go up.

  26. Re:Would this discourage contributers to open sour by Bananenrepublik · · Score: 1

    Most open source projects' commits are already gathered on cia.navi.cx. I don't see what ohioh can add besides a link to the real name, which is easy enough to find out anyway.

  27. right tool for A job ? by goarilla · · Score: 1

    this could greatly facilitate finding the proper people to fund OSS development
    especially if it's by the right companies (ibm,google,redhat,novell,...)

    1. Re:right tool for A job ? by goarilla · · Score: 1

      i mentthis could greatly facilitate finding the proper people to pay for OSS development

  28. Quantitative metrics dont work on developers by KillerCow · · Score: 1

    Quantitative metrics don't work on developers. As soon as a developer learns what it is, they are smart enough to game the system.

    I [commit] can [commit] game [commit] any [commit] system [commit] based [commit] on [commit] commit [commit] counts[commit].[commit]

    Numver off bugz fixd es eze 2 gaeme two.

    Bug free code and low bug recidivism is easy. [have tester check code before checkin].

    Number of projects? Sure. Every possible sub-component now has it's own source tree and project space.

    Lines of code? Sure, I can write lots of code. It's one of my favorite things to do. On and on and on I can write code. It's like there doesn't have to be an end to what I say. Lots of productivity here. Oddoles and oodles of work product. Lots of code means lots of productivity, and man, I can sure be productive when I have to be. blah blah blah blah balh....

  29. Re:Would this discourage contributers to open sour by Anonymous Coward · · Score: 0

    you don't have to use your real name on the interwebs, hoss

  30. Open source playing cards to help funding!!! by syousef · · Score: 1

    I can just see the tv ad:
    "Wow! Collect yours today"
    Then 2 kids in school uniforms
    "I'll trade you my RMS for your Linus and Eric S Raymond!"

    --
    These posts express my own personal views, not those of my employer
  31. You can claim aliases by Per+Abrahamsen · · Score: 1

    There are facilities in ohloh to map aliases. It seems everyone can do it. I don't know if there is any conflict management, they seem to take wiki approach throughout their database.

    I don't seem a problem in that free software contributions you want not to be associated with your legal name, won't be associated with your legal name.

  32. Another looser... by Yaa+101 · · Score: 1

    That tries to create scarcity of the abundant open source.

  33. Listed twice by solprovider · · Score: 2, Interesting

    I am listed as two people with the same pseudonym; my real name is not found. I am listed for two related projects belonging to the same organization. Both of me have the same score albeit for different skills. Ohloh obviously only checks commits to the main branches; my commits and LOCs to an experimental branch of one project would drown my official commits. I won commit status due to my assistance on the mailing lists and a lengthy complicated patch for critical functionality; my name is in the credits, but the commit is credited to someone else. I cured a critical bug in a third project (a component affecting many FOSS projects), but my patch was included as text in the bug tracking system and committed by and credited to someone else. The system measures lines of code, but great programming often reduces LOCs (as happened in the patch to the third project.) I am about to post code in a bug-tracking system that will not be integrated into the project due to management's objections ("This function has been broken for 8 years and we are afraid to fix it"); this will not be credited. Contributions to official documentation are ignored, as is useful information on personal websites.

    Another committer has a much higher score. He is involved in more products and has committed tons of code to the official branches. He has kudos from other developers. From researching several developers whose work I know, I agree with the scores (except mine. My fame is in the corporate world for completing critical, urgent IT projects. I am a very minor player in the FOSS world. I am surprised my score is so high based on the limited contributions considered.)

    Some suggestions:
    1. List one person as one person. The organization requires a unique pseudonym for all projects. Start with the page translating the pseudonyms to real names.
    2. Look at mailing list activity and distinguish between questions and answers. The first post in a user thread is a question; additional posts are often requests for information; the final post not from the original poster is usually the solution. The first post in a dev thread is often a new idea; additional posts are clarifications so give credit for length to avoid "+1" posts but avoid crediting lengthy log listings.
    3. Look at bug-tracking systems. Many official commits are patches provided by non-committers through the bug-tracking system.
    4. Counting LOCs is usually a poor determination of the quality of contributions. One of my official commits added code. My commit was reverted and replaced with half the LOCs of the original code. While I would accept credit for the concept that was implemented, those LOCs should not contribute positively to my score. Did the committer writing the excellent replacement code lose points for reducing LOC?

    Ohloh ignores many important types of contributions and poorly assigns credit for much work to the committer rather than the contributor. Ohloh does not distinguish between types of commits; many commits are correcting bugs introduced by the same committer. Assigning importance ratings to commits requires integration with bug-tracking systems; CVS and SVN do not have scoring mechanisms.

    Ohloh cannot score personality. Much of my career has been accomplishing the "impossible" (whether functional or due to deadlines) as my focus is on business usefulness rather than technical limitations. One person (scored 9 by Ohloh) is an incredible programmer once someone proves something can and should be done, but is extremely resistant to new ideas. Creativity is not reflected in the scores.

    Ohloh has a good idea. I like the kudos system (and hope merit wins over popularity.) The system still needs work to be accepted as a reliable source of useful information.

    --
    I spend my life entertaining my brain.
  34. Names can be linked together. by Anonymous Coward · · Score: 0

    If you could be bothered going to Ohloh and look at it, you will see that if you create an account you can then link to that all the different names you have used for different projects so that Ohloh knows they are all you.

  35. I like the dollar figure by RAMMS+EIN · · Score: 1

    I like the dollar figure ohloh attaches to projects. "This is what it would have cost an enterprise to develop this software." It really gives you an appreciation for how much the open source community is giving to the world.

    --
    Please correct me if I got my facts wrong.
    1. Re:I like the dollar figure by Anonymous Coward · · Score: 0

      More likely an appreciation for how much the open source community is giving away to the corporations.
      If this was for the end users only or for hobby purposes, then great. When IBM, Google and so on piggy back on the passion and the desire to do good, it does not seem like a dollar figure to fully appreciate. I doubt the dollars given "to the world" are distributed evenly. The way I see it is that, instead of world saviours, there are lots of instances where it is just a matter of giving away stuff to commercial entities that do not deserve any sympathy, and diluting the value of your peers work in the process. In a kind of vicious way, people will start to see a purpose in the ranking and thus producing more stuff for free. When you will be 50 and burned out, with little disposable income to support your family you will be able to show them a snapshot of the week when you were number one. They will surely be proud of you. Good luck with that!

  36. And yet again... by Pseudonym · · Score: 1

    Once more, a coding-related site which lumps C and C++ together into one "C/C++" agglomeration. That's the point where I stopped looking.

    --
    sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
  37. And of course, they don't track mercurial by Jonathan+S.+Shapiro · · Score: 1

    An increasing number of projects are using mercurial these days. Seems like a not-small oversight.

    --
    Jonathan S. Shapiro (The EROS Guy)
  38. From the front page by nog_lorp · · Score: 1
    Ohloh says

    Mozilla Firefox 89 contributors, written in JavaScript.
  39. The "Karma" Algorithm I use by adamkennedy · · Score: 1

    After I gave up looking for good single metrics, years ago I invented a "karma" algorithm for use in CVS Monitor (google it).

    The karma score is calculated for a single commit, and uses a combination of lines and files added/removed/changed (with some munging so that file moves don't get line scores), and then adds to that the size of the commit message in bytes, and then applies a maximum upper score per commit.

    It's worked pretty well, since all the best ways of gaming your karma score also encourage good practices... for example.

    * Write longer and more detailed commit messages

    * Commit in several smaller pieces rather than large amounts at once

    * You get (up to) double points if you implement on a branch, and then merge the branch to trunk. As a bonus, you can pick up major points if you are the guy that takes responsibility for merging all the brances to trunk.

    Looking at several historical projects, the scoring system does seem to reflect the "importance" of each developer in a project to a reasonable degree.

  40. why not help them instead by wikinerd · · Score: 1

    Instead of trying to evaluate free software developers, why not help them instead? We know who they are, their names and emails are just a click away from the About box of the software we use, and most of them are googleable. Some of them aren't so lucky in their life outside free software. Some would appreciate some donated webspace, computer hardware, or other support. I have started AlgoLibre.org as a first effort to remind people that some free software developers may need our assistance. If there is any service benefiting free software developers you would like to run, you can run it through AlgoLibre, which is strictly non-commercial as well. Or just drop in and share your interest in the project, perhaps subscribing to the Recent Changes RSS feed if you want to stay tuned. I actually first started the project when I had the idea to provide some kind of medical insurance to all free software developers, so that in case a developer gets ill we can contribute to their medical expenses, and it should run in a wiki-like distributed non-centralised fashion just like free software works, or like a philanthropic circle: developers would explain their need on the site and users would choose whether to contribute or not.

  41. Link it to bugs by Anonymous Coward · · Score: 0

    I wrote a paper way back when on a very similar topic. I called it "distributed auditing," and the goal was to try and improve the quality of the code -- the quality of the auditors (and the developers) was a side-effect. I've put that paper up for everyone to enjoy; please don't hammer my site too hard. :p

  42. And it sucks for small projects by silentcoder · · Score: 1

    My biggest active FOSS project has gone through two forks in it's lifetime. This was not because of me, but because of problems when the companies I worked for tried to appropriate my (after hours) hobby work. The final fork happened when I started my own company.

    Ohloh has it listed., as well as the second of the two prior forks (both have since died as the companies couldn't maintain them without me). The newer project is however a niche-market project. It allows me to earn a living but it's hardly the kind of app that your typical computer user will ever want - it's there to do a specific job for a specific market section. It is very successful in that section however, and also fathered a number of large 'custom-version' projects which are my livelihood. Ohloh however only counts the roughly 8 months since it was forked - not the history of nearly 7 years prior to that.

    A while ago, due to having a low comment-to-code ratio, I went out of my way to add more comments to the code- most of it was completely unneeded - my code made sense to me and others - but it was giving a false, bad reflection on me as a programmer.

    Now where it stands, it has a fairly good rating and value on there - but if you consider the true history it's 'value' should be much higher. And since my program is so niche-market, I don't get much kudos from it, after all there are very few other FOSS people who know anything about the field.

    This is a complex and powerful application with many levels to it, but it is targeted at a small userbase and consequently has a small contributing developer base, only one person other than me has commit access - I commit other patches myself, how else would I manage it in my spare time ? I feel ohloh greatly underestimates the worth of the project and it's developers simply because it has no way of distinguishing projects everybody needs a variation off and those that are for niche-uses.

    Either way, not so much a complaint (my customers recognize the worth with or without ohloh) as an attempt at constructive criticism. On the upside, it has had 33 downloads from their sites and us small projects need all the free publicity we can get (it's a small percentage of the total downloads, but every user counts).

    --
    Unicode killed the ASCII-art *
  43. Code-to-comment ratio by pne · · Score: 1

    • Code to comment ratio is desired at 1:1 (at least in the commercial world)

    I believe code-to-comment ratio is one of the things Ohloh tracks -- but it can't even figure that out for everyone.

    For example, Perl modules are often documented in POD, rather than "normal" comments beginning with #, but Ohloh doesn't know how to parse Pod and so consider lots of well-documented modules to be nearly completely uncommented.

    (That would be sort of as if they only counted // comments in Java source but not any in /** ... */ Javadoc comments.)

    --
    Esli epei etot cumprenan, shris soa Sfaha.
  44. US$ 0.02 by psbrogna · · Score: 1

    IANA OSS contributor but I have been a programming enthusiast since 1980 and a professional programmer for ~16 years. The last ten years I've reported to an executive (non-IT boss) for my own productivity and the productivity. Over the these years I've had several conversations with my various supervisors (again; non-IT) regarding how to plan & allocate resources for ~30 projects ranging from static web sites to projects of a much larger nature. I have not found it to be an easy task- setting aside the whole issue of programming as an art and therefore by its very nature less predictable than many corporate duties, there's still the challenge of understanding the effect of the team dynamic (or other aggregate effects such as environment & tools) on an individuals' productivity. I would think that the premise of the project featured in the article would fail to account for such a significant factor in trying to track metrics of the individual. (Sidenote: I don't think this is limited to programming either).

  45. Didn't someone already show this was a bad idea? by Anonymous Coward · · Score: 0

    For some reason I keep thinking Joel Spolsky has already shown that lines of code is a poor performance measurement metric. Of course now I can't find the exact article, but he shows how easy it is to game that measurement system.

  46. Good point but not what I meant. by Jane+Q.+Public · · Score: 1

    I was referring to the human factor. A lot of open source projects have only a few people allowed to commit code. Other code that is contributed is committed by those few people. So... who should get the credit for the code?

    There is no reliable way to tell, after the fact. Period. And different projects have different commit and documentation standards.

    As long as there is no standard way of handling these things among all open source projects (yeah right), this kind of metric will remain meaningless, or even harmful.