In the last round of reputation recalculations, we noticed an anomaly: for some users, accepted answers were not subject to the +200 per day reputation cap.

In one case I investigated, a particular user had 115 accepted answers, none of which hit the daily reputation cap. After recalculation, 23 of those accepted answers hit the daily reputation cap.

This was perplexing to me, because the existing accept answer code sure looks like it enforces the reputation cap:

if (Post.HasOwner && !Post.IsCommunityOwned)
{
    TargetRepChange = MaxReputationPossible(Post.Owner,
        AppSettings.Reputation.AnswerOwnerGetsAcceptedAnswer);
    Post.Owner.Reputation += TargetRepChange.Value;

    TargetUserId = Post.Owner.Id;

    VoterRepChange = MaxReputationPossible(User,
        AppSettings.Reputation.QuestionOwnerSetsAcceptedAnswer);
    User.Reputation += VoterRepChange.Value;
}

The MaxReputationPossible function checks against User.CurrentDailyReputation to determine whether or not the users’ reputation score will be incremented. This obviously works fine for other votes, such as upvotes, but wasn’t working on accepted for some reason.

Well, it turns out that this function had a really unpleasant dependency on the User.CurrentDailyReputation value being manually set before it was called. Guess where that field wasn’t being manually set? You guessed it, in the accept answer codepath.

I modified the code so User.CurrentDailyReputation calculates (and caches, for the lifetime of that particular instance of the User object) the actual daily reputation when it’s called, rather than assuming the value is set somewhere else in the code.

NB: I did not write this code, although I know who did. It might have been the result of a miscommunication, but because MaxReputationPossible was called there, just like everywhere else.. I think it’s a plain old garden variety bug. Rest assured the responsible parties will be beaten until their morale improves.

This will only affect users who have lots of accepted answers and tend to hit the daily reputation cap frequently, so I’ll be recalculating reputation for the first two pages of users. You can expect a certain level of reputation drop, depending on how often you’re at the daily cap, and how many accepted answers you tend to get per day.

Apologies for the bug!

« Reverse Engineering the WMD Editor
Daily Dose of Daily Reputation Cap »

49 Responses

  1. Jeff Atwood says:

    First page users, before rep recalc:

    http://img253.imageshack.us/img253/2188/dailyrepacceptedbugbefojb6.png

    First page users, after rep recalc:

    http://img244.imageshack.us/img244/7966/dailyrepacceptedbugaftese3.png

  2. Jon Skeet says:

    Personally, I think this change makes it even more important to revisit *why* there’s a daily reputation cap in the first place.

    (User voice request: http://stackoverflow.uservoice.com/pages/general/suggestions/35824-change-the-reputation-limit-algorithm)

    Perhaps the idea of this was to make the reputation system uncompetitive (to prevent people from getting too attached to their rep). I can understand that. If that’s *not* the reason, I can’t see any benefit.

    Rather than fixing the bug, why not just make the previous behaviour the *expected* behaviour? I don’t haven’t seen anyone complaining about the possibility of still being able to gain rep after reaching 200 for the (relatively tricky) achievement of having an answer accepted.

    I probably have the most to lose due to this, but I think I’d object to it anyway. Turning the rep for very active users into basically “~200 * active days” seems a retrograde step to me.

    By the way, it’s probably worth looking into another issue with the rep cap at the same time – it’s always at least *seemed* that upvotes can’t give any reputation if you’ve already gained 190+ reputation in a day. That means that the rep limit can be anything from 191 to 200 depending on other votes. For instance, consider a user with 18 upvotes (180), one accepted answer (15) and two downvotes (-4). That puts the user on 191. If the user receives another upvote at this point, the behaviour I’ve observed is that they’ll stay at 191 rather than being increased to 200.

    To reiterate my first point though: why is the rep cap time based in the first place? What’s so special about a day? The rest of SO isn’t based around days – it’s based around questions, answers, comments, tags etc. What is the benefit of the limit being based on time rather than questions/answers?

  3. CMS says:

    I noticed that several times and I actually thought that was a feature…

  4. Jon Skeet says:

    The first page of users picture after the recalc is likely to be the same for a very, very long time. It was hard enough to try to catch up with people before the change. Now it’s basically impossible.

    Bear in mind that the most questions and answers people already have, the more likely they are to get those old posts voted up without even having to do anything. One day recently (Dec 26th?) I *think* I gained 200 rep without writing a single answer. Another day I’d gained 200 rep before I even got up in the morning.

    As I say, I’m pretty sure this change will certainly discourage a sense of competition. If that’s the aim, that’s fine. I *hope* most SO-ers won’t change their behaviour very much. It does make it a bit less interesting though :(

  5. Jeff Atwood says:

    In the broadest possible sense, the cap is there to prevent unlimited growth of reputation over time.

    I should also like to call everyone’s attention to this:

    http://stackoverflow.uservoice.com/pages/general/suggestions/35824-change-the-reputation-limit-algorithm

    We are *very* likely to implement an absolute per question/answer cap on reputation (likely at 10 or 20) for the same reasons, in the near future.

    On a long enough timeline, every post gets voted up to a certain level, so if they can all be voted up indefinitely.. there’s no real limit, and new users are at a permanent disadvantage.

  6. Jeff Atwood says:

    Immunity from the per-day reputation cap was never the intention for accepted answers; as you can see from the code, above, it was clearly intended to hit the limit, but didn’t because of a somewhat subtle bug.

    Also, I should point out that once the question bounty system is implemented, it *will* be immune to per-day reputation limits.

    The majority of the bounty will be offered up from the question asker’s reputation as an incentive to provide an accepted answer. There will be some nominal amount the system will offer, but the lion’s share will be subtracted from the asker’s rep and added to the accepted answering user’s rep.

    So if you want to gain a lot of reputation, more than +200 per day, answering bountied questions will be the way. You could easily gain +1000 day on bounties, I think.

  7. Jon Skeet says:

    So would you be considering the per question limit *in addition* to the time-based limit or replacing it? (Glad to see it’s being strongly considered, btw.)

    With the time-based limit, new users are already at a permanent disadvantage – much, *much* more so than with a per-answer limit.

    If the most helpful and knowledgeable person in the world joined Stack Overflow now, answering every question perfectly and instantly, they would still have to wait for the top users to receive less than 200 rep per day (for whatever reason – most probably holiday) before making any headway.

    It strikes me that there are lots of options here. I’m not overly keen on poll type SO questions, but it feels like we could do with community input beyond comments like this one. (For example, I’m a particularly “loud” user, but my opinion shouldn’t count any more than anyone else’s.) Can I suggest that we discuss a number of possibilities (whether here, on UserVoice, or in an SO question) and then have a poll of some kind to find out what the community would like to see in terms of rep limits?

  8. Jon Skeet says:

    Thanks for the reminder about bounty questions. The rep limit will make the bounty a much more significant incentive…

  9. litb says:

    i completely agree with jon. i asked the same in my bug report on user voice (posted as comment on the other one). I don’t see any sense to limit on a time basis. It annoyed me many times when i got an answer with 10+ upvotes, all of which are thrown away because i already got 200 points per day.

  10. Vinko Vrsalovic says:

    Sorry to diverge, but shouldn’t the method be called MaxPossibleReputation() instead?

    :)

  11. Jeff Atwood says:

    naming is hard.

  12. Jon Skeet says:

    For those of you who saw it very briefly: I’ve deleted my question suggesting that the community propose a number of reputation limit schemes, as Jeff noted that the bounty system will change things significantly, and the details aren’t available yet. Perhaps we can reopen the discussion when bounty has been up and running for a while.

  13. Vinko Vrsalovic says:

    Let’s go rep hunting!

  14. Oscar Reyes says:

    :-O I never though I had reached the 200 rep/day ever!. Now with -200 pts. I see I did it a few times.

  15. Mac Gravell says:

    Just say my overnight update (-1516… ouch…) I can understand *why* this is, but as Jon notes, until there is way to compete, it makes the site very tricky for the high-hitters.

  16. Jeff Atwood says:

    Bear in mind rep recalc also reflects loss of rep for deleted questions or answers.

    This is usually a very small percent overall, but if you, say, got yourself the “Disciplined” badge..

  17. Mac Gravell says:

    Actually, I did pick up disciplined, but that accounts for only a handful of votes. I guess my biggest gripe is that every time you retroactively “fix” the scores, the biggest losers are always the biggest (high volume) users.

    Note: I’m not counting the “gaming” fix in the above; that had real reasons. I guess it might have seemed less like punishment (for over-performance) if you’d fixed the code going forward. Changing history always bites.

  18. George says:

    This brings up another interesting issue that has been bandied around: Should subjective/poll questions count towards reputation increases? As a purely academic exercise, I’m curious to see what the top users’ scores look like after a calculation is done against questions tagged ’subjective’ or ‘poll’ (that obviously aren’t community wiki).

    I bring this up because once reputation changes are made, it’s only logical to revisit any other anomalous spikes in reputation (such as those caused by softball questions such as, “What is your favorite programming language”).

  19. Mac Gravell says:

    @George – fair point, although such tend to become wiki articles fairly quickly, so it is mainly medals that are the anomaly there (most gold medals are for softball questions).

    @All – one other ironic observation: 26th: “these users have been unreasonably helpful on uservoice; welcome the new moderators”; 29th: “these users have been unreasonably helpful on stackoverflow; here’s a 4-digit whack”. Tickled me, at least. OK, I’ll stop griping now.

  20. Joel Coehoorn says:

    Ouch!

    I really liked the old behavior. It allowed for more of an incentive to keep providing answers after you hit the daily cap (which I used to do before lunch pretty much every day).

    However, I understand that if it was working for some users and not others it’s important to fix it and level the playing field.

  21. Jon Skeet says:

    @Joel: Yes, I quite liked the old behaviour (if we really had to have a time-based rep limit at all – more on that later). I’m not sure that it really only happened for some users. It would be interesting to know that for sure. I can’t see why it would happen for some users but not others. Personally I’d like to see the old behaviour become the *designed* behaviour until we get bounty questions and see how that changes things.

  22. Paul Tomblin says:

    Is this the holiday surprise you promised us?

  23. Vinko Vrsalovic says:

    I support the let the bug become a feature stance. It really looks like a good way to let Jon catch Greg.

    And I’m afraid about bounty questions and the cheats they’ll become part of.

  24. Steven A. Lowe says:

    Three comments:

    1. some notification when recalcs change rep would be courteous; see post on ‘vote fraud’ blog entry

    2. users who ask hard/emergency questions worthy of a bounty are not likely to have much rep to spend on them; thus the bounty system may cause more problems than it fixes. I hope I am wrong.

    3. Please publicize relevant blog posts like on on SO (use the badge-notification banner) because frankly – and no offense – I doubt very many people (a) know there is a SO blog and (b) read it. I wouldn’t have known except for a link from a SO post about the vote-fraud recalcs, and even then I didn’t notice the list of other blog posts for days because it appears off-screen on my laptop [why is the SO/blog screen so statically wide in the first place?]

    –S

  25. Jon Skeet says:

    (Apologies if this gets truncated or is badly formatted. I’ve no idea how the blog will handle it…)

    A few thoughts on reputation and possible limit strategies…

    Firstly, we need to think about what reputation is for. The way I see it, rep has the following positive characteristics:

    - It gives a good way of determining who should have what moderation powers. This is reputation as a measure of how much the community (and thus the system) trusts the user.

    - It provides a fun element of competition which encourages users to try to be helpful, and adds to the “stickiness” of the site.

    It has the following negative characteristics:

    - It takes time in terms of user discussion and coding implementation. While we’re fussing about the latest rep change, we would be doing more good answering questions. (Obvious hypocrisy duly noted.)

    - It may affect how people spend their time in terms of answering questions which they think are most likely to get them some rep, rather than where they might actually do the most good. (There’s
    certainly a *perception* that people answer light and fluffy questions to get more rep. Whether that’s the case or not is another matter.)

    - For a new user, it could be pretty daunting given the scores near the top. The competition aspect is reduced somewhat if you’ve got no chance of making it to the first page.

    So, what about rep limits? Why do we need them, and what does the current limit achieve? Well, they clearly stop users from getting rep “too fast” – but what constitutes “too fast” in the first place?
    I would argue (and have done before – apologies for the repetition) that how *quickly* users get rep isn’t really a problem. It *would* be a problem (IMO) for users to get the sort of “fluffy” question
    which gets huge numbers of votes for relatively little technical insight. Look at my own top-voted answers (http://stackoverflow.com/users/22656/jon-skeet) for example – none of the top 5 deserve the reputation they’d get without caps. (Well, the top one is a community wiki answer anyway, but you see what I mean.)

    I have a suggestion. It’s made in ignorance of exactly what the bounty system is going to entail – and more importantly, how it will be used. (Obviously Jeff and the team know about the former, but no-one will know the latter until after it’s been going for a while.) I don’t know how the system described below would interact with bounty.

    1) Change the rep limit to 100 (rep) per question/answer from upvotes; the accepted answer would *always* give 15, and there’d be no time element to the limit. That way very active users wouldn’t be penalised, but no-one would get outrageous amounts of rep for an answer as trivial as ones like those at the top of my own list.

    2) Display a user’s “average rep gain per day” as one of their stats. Ideally this would be calculated for all time, the past month (or 30 days), and the past week. Potentially display “rep gained today” as well. This is more for the sake of interest than anything else.

    3) Introduce a monthly league table – we’d keep “all time” rep and that would be used for moderation powers, but a new league table would be started on the 1st of each month. This would give new but enthusiastic users a chance to make themselves known pretty quickly, countering the last of my “negative” aspects listed above. The winner each month could be given a gold badge (a new one, obviously: “Rep Champion” or something). We could keep a history of who won each month, for posterity.

    Comments?

  26. Robert Gamble says:

    I second Jon’s suggestion regarding rep limits, I think a better idea would be max 100 points (from upvotes) per post *per day* but 100 points total would be better than the limits we have now.

    Regarding the rest of Jon’s ideas: #2 might be useful, no opinion on #3.

    I also want to say that I think rep bounty system is horrible idea, I hope I’m wrong.

  27. Jonathan Leffler says:

    I’m not dreadfully happy about the change; it seems reasonable to give a bonus for an answer being accepted and for the points from those to be uncapped.

    However, I need to bring up another point – previously Uservoiced, but the admin has closed it.

    Strunk & White badge – I’m due one, and I haven’t got it, and I’m irked. And the admin claims WAD – working as designed. I’ve edited hundreds, and hundreds of entries and not got the badge. The Uservoice item had a number of subscribers, mostly from the top 70 who are already being penalized retroactively, who are also missing their S&W.

    When is that part of the system actually going to be fixed – as opposed to merely claiming WAD? If it is currently WAD, then the FAQ page and the Badges page are both inaccurate; you don’t get an S&W for editing 100 entries.

  28. Robert Gamble says:

    Regarding Strunk & White: Please revisit the code that you believe if working properly, it definitely isn’t. I can vouch for Jonathan’s claims, I have *seen* more than 100 of his edits. There are plenty of people that should have this badge that don’t.

  29. John Sheehan says:

    I also think I should have S&W and don’t.

    Jon’s solution is a series of great ideas. Monthly leaders in particular can really help with new users overcoming the rep mountains in front of them.

    I also am leery of the bounty. I think it totally changes the definition of reputation from trust to currency. If you’re new and you have a hard question and no bounty to offer, you’re screwed. So only those with significant rep can spend the bounty to get answers to harder questions. Rich getting richer…

  30. Steven A. Lowe says:

    i agree with jon and the others: the +15 for an accepted answer should not count against the daily rep cap. This was not a bug, it was a feature!

    Otherwise, as Jon pointed out, not only do noobs have zero chance of catching up, but even more importantly, I have no chance of catching up to Jon!

    A little friendly competition is good for the soul, and for the site – but if the race is rigged so that the leaders cannot be surpassed, then there really is no point in trying…

  31. Joel Coehoorn says:

    I really like the “Monthly League” idea, Jon. Put it up on Uservoice and I’ll add some votes to it.

    BTW: it’s probably worthwhile to start checking uservoice again, in case anyone had given up on it. When I first got moderation powers there the moderation queue had over 350 items, and is now sitting under 1/2 that and falling. I also checked the completed items at that time. There were a few items that had been completed in the past 3 days, but then nothing for the next 4 weeks. That is now significantly improved.

    So things there are getting better.

  32. Bill the Lizard says:

    I really like Jon’s idea of having a monthly leader board. Having one area where everyone gets reset to zero on a regular basis would really encourage participation from newer users.

    John Sheehan said:

    “So only those with significant rep can spend the bounty to get answers to harder questions. Rich getting richer…”

    If the “rich” are spending rep to get answers, it’s a good opportunity for the “poor” to gain a massive amount of rep quickly. All they have to do is answer a hard bounty question. I’m interested to see which way it works out.

  33. Jon Skeet says:

    Proposal for a monthly league duly filed:
    http://stackoverflow.uservoice.com/pages/general/suggestions/95721-monthly-league-for-reputation

  34. George says:

    The idea of the monthly leaderboard is great — but it’s a separate issue, not related to the growth of reputation. The core question related to reputation is: How much reputation can a user gain in one day, and why is this the case? What is the most fair and equitable manner for assigning reputation? Should everyone have a fair chance to ‘overtake’ the leader? Or all else being equal, will those in the lead always be in the lead?

    This Monthly Leader Board idea, while interesting (I’d vote it up if I had any votes), doesn’t address this issue — it sidesteps the ‘Reputation’ part but embraces the ‘competition’ part. I maintain that if we removed subjective/poll questions from reputation gains that we’d do more to improve the technical knowledge on the site; and have a truer representation of whether a user spent a lot of time on the site, or whether they knew what they were talking about (each is not necessarily exclusive of the other).

    Obviously my post brings up other issues about the scope of Stack Overflow that I don’t fully address here. I’ll probably save those for a blog post.

  35. David B says:

    There’s a very simple solution here. Once you’ve exceeded the largest rep for a moderator function, you should be able to proceed without a rep cap.

    The idea is that the cap is to allow the system to establish trust over time. Once you’ve met the maximum trust level, go nuts.

  36. Daniel Daranas says:

    Hmm.

    1) Daily rep gains could become _logarithmic_ above the +200 threshold, instead of being cut off entirely.

    2) Rep gains for a single good answer could become logarithmic, too, after some threshold, say, +20 votes.

    3) Reputation could be radioactive, i.e., destroy itself with time. If its semi disintegration period was 1 year, this means that 1000 points today would be 500 points in a year. This could be an incentive for new users.

    (An extreme variation of (3) would be imitating the tennis rankings, in which all what you’ve done exactly one year before is LOST today and replaced by the points that you win this week)

    But what do I know…

  37. George says:

    @Daniel Daranas: You’ve hit on something that is both entertaining and interesting (and relevant!): How to encourage participation on Stack Overflow and have the ‘moderator’ group be representative of who actually spends time on the site on a consistent basis (and is therefore able to accurately gauge the community’s wishes). I like both of your ideas. Put them on Uservoice?

  38. Tim says:

    This is all so amazing. After 3000 points why does anyone care at all? I guess it has to be there because the prolific answerers are there for joel’s and jeff’s enrichment.

    I see another outstanding ebay opportunity and SO cheat… people with high rep can sell hitpoints to anyone who wants them – they just put a bounty on a question – wait for the “buyer” of the points to answer the question, then assign it.

    wheeeeeeeeeeeeee.

    Is this going to be like communism – where there was a false economy and it lasted for a while with some elite members and then it all came crashing in on itself? I am not really condemning the users who are answering lots of questions and helping people – just pointing out some issues.

    I wish Jeff luck with this…

  39. BQ says:

    @Daniel Daranas: Decay of rep is a BAD idea… If I’m using rep as a measure of trust, I either trust someone or I don’t. Just because an answer has aged, I don’t necessarily trust the answer less. If someone stops participating in SO, I don’t value his contributions less after he’s gone dark. Decay would do that.

    Other thoughts: I like most of Jon’s ideas, especially the “monthly league” and accepted answer always being +15.

    Also, I’d like to suggest basing the rep value of votes (both up and down) on other factors. An upvote on an answer to a question with 10 views should arguably be worth more than an upvote on a question with 100 views. If 100 people view an answer and only one finds it worth upvoting, then the system is really just rewarding those who answer questions that are titled or tagged with popular or high profile subjects and keywords.

  40. Daniel Daranas says:

    @BQ After some thought, I agree with you in that decay of recap is a bad idea. My concept of the usefulness of rep is the same as yours.

    OTOH About my suggestions (1) and (2):

    I like my own suggestion (1) _if_ there has to be a limit _at all_ in daily gains of rep. A logarithm is not a limit, but at least it’s midway between there not being a limit and limiting it with a daily maximum.

    I like (2) the most because it addresses the case in which many people have already upvoted an answer and some other people might just following the “me too, me too” habit.

    In any case, a limit *per post* makes much more sense to me than a limit based on something arbitrary, like a day.

  41. Rob Allen says:

    +1 for accepted answers always delivering 15 rep. I’m iffy on the whole rep limits thing since, as Jeff has mentioned and demonstrated in recent weeks, fraud is trivially easy to detect and correct, so why penalize someone for having a good day?

    +1 for the the monthly league action (and 3 votes on user voice).

    -1 for rep decay. Trust doesn’t decay and rep as a measure of that trust shouldn’t either.

  42. BQ says:

    Just a thought, but since you cannot vote for your own answer… how about giving more weight to votes of someone who answers a question but still votes for other answers.

    If someone up-votes other competing answers, it negatively impacts his ability go get votes for his answer because it becomes less visible (assuming fewer votes, since he can’t vote for it). On the other hand, if his answer has tons of up-votes, it gives him credibility on the given question and his votes are probably a very good indicator of other quality answers.

    Obviously, this would allow for gaming the system in other ways (posting an answer just to have an increased voting ability), so perhaps magnifying it based on the voting for the voter’s answer (or some threshold, so we don’t get recursive on this) might be advantageous.

    And magnifying a down-vote shouldn’t be an option since it helps gain up-votes for the voter’s answer anyway.

  43. Steven A. Lowe says:

    I like Tim’s idea. What would a good market price be for a kilorep?

    ;-)

  44. AgentConundrum says:

    Forgive me for the following, as I’ve not had time to read *all* of the posts above, but do want to comment on a number of the items I’ve seen thus far.

    - Regarding rep limits, I prefer Jon’s idea of a per question/answer limit to a time-based one. The reasons being that time seems arbitrary and seemingly punishes those who are quite active; these people should be given proper compensation/trust for having helpfully given their time to answer many questions over the course of a day. We would still have a limit, but it would be based on knowledge transfer rather than frequency of votes.

    - Regarding the bounty, I have to say if the rep system is intended not to be a currency, but rather an indication of the system’s trust in a user, then rep-based bounty seems to be counter-intuitive. I’d like to propose that the bounty be (or include as part of a larger plan) a new badge, which I would further like to suggest be a bronze/silver badge entitled “Savior” for having “rescued” a user who needs a quick answer.

    On second though, giving someone a rep boost for having answered a bounty question might be just fine. A small “thank you” rep boost might be indicated for having used the system as intended to help someone in need (this isn’t entirely unlike the “accepted answer” boost in some ways). I do object, in part, to the idea that a user need to “pay” with rep in order to expedite an answer. Admittedly, I say this only in support of new/anonymous users; the idea of sacrificing some rep/ability to help get your answers quickly does have merit, it just has a downside for those with no rep. Similarly, this has quite a large theoretical impact on those with large rep. If the highest ability to date is 10k and up (I’m making an assumption here based on recent blog posts and a comment I saw recently about a “Tools” menu being added for some users), then a user like Jon with 18k+ rep can easily afford 200 rep to have a question answered more quickly (he’d make it up in a day and it wouldn’t have the slightest impact on his ability, he would simply have an advantage for any questions he might ask). Some might say that the users with highest rep are already well known enough that their questions will be unfairly weighted by the community, so this might be a non-starter so far as the topic of rep bounties is concerned.

  45. Pop Catalin says:

    I think the best way to compute reputation would be based on diminishing returns not based on caps.

    For example a system that gives you 10 rep per up vote for the first 20 upvotes per day, then 5 rep for the next 20 up votes, then 2 rep for the next 40 upvotes … then 1 rep for the rest.

    Also questions that have more than 10 upvotes should get 1 rep (up to a 50 votes max).

    So active users are not “heavily” penalized for being active, but they can’t get insane amounts of rep/day either.

    Also, accepted answers shouldn’t be capped at all. It is wrong for the system to not acknowledge a valuable contribution (by not giving rep) when the system has worked, the user got his answer. So the system should acknowledge the contribution of the one that provided that answer by giving him the reputation for the accepted answer.

  46. Jay says:

    Did this only take effect for the first 2 pages of users? I’m certainly not on the first two pages, but I lost over 80 rep points overnight. That seems an odd coincidence if it’s NOT related to this ‘recalc’ effort.

  47. test says:

    Sorry for the pointless post, but I see all these avatars and links from SO users. How does one “sign” their posts here?

  48. Arron says:

    @Jon I love all 3 ideas, I think that they would make the site even more of a community site.

  49. Tom Alsberg says:

    I just started participating in StackOverflow (to experiment with it, get to know it and help a bit too where I can), after finding some rather useful answers here to other people’s questions (which I’d have asked somewhere else before but my question might have been lost among a lot of other talk by the time someone who could answer it would see it).

    So I guess the scoring does works motivating people to be helpful (because they like to be voted for, and see their scores rise, like in arcade games), even if it is a rationally useless number rather arbitrarily indicative (I got a fair chunk of reputation in one day for answers with explanations to simple questions arising of a misunderstanding, with no real information that couldn’t be found in documentation – I up-voted some more creative answers from other people to more difficult questions but noticed they got less reputation for them).

    The idea of voting on questions and keeping unanswered interesting questions visible (even if they were inactive for a long time) is also nice. So thanks for the great site!

    Seeing what reputation some people have here, I do not expect ever reaching those scales, as I don’t know how much time I will spend here (though it was a few hours in the last few days spent just on reading other people’s interesting answers) and while I’ll probably try to be helpful where I can be, most questions are so obviously on topics and technologies about which I know so little.

    That said about reputation, if you are trying to make it more “fair”, and am thinking of a per-question/answer cap to avoid disadvantaging new users, just take into account that this may put new users at an even greater permanent disadvantage (unless you apply it retroactively to reputation gained from old questions/answers).

    So I say, keep it simple, and people are here for fun and for learning and contributing. It’s a number after all, and you don’t want to make it mean more than the content.

Leave a Reply