Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
A new system has been devised and proposed to me by a group of users. Here it is:

The changes are (in the order they'll be implemented)

  1. Reduction/Elimination of vote-out bonus:
    Until the user reaches Level 5 (Monk) they receive a bonus for using all of their votes equal to 1/6 of the total number of votes they received. After reaching Level 5, this bonus is removed, and the user receives no special bonus for using all of their votes.
  2. Delay of Posting Bonus:
    Instead of receiving a 1 XP bonus for posting a node, the user receives no special bonus until some other user votes ++ on the node.
  3. Weighted XP Reward for High Node Reputation:
    Average Node reputation is calculated on a seven-day average. This value is referred to as the variable NORM; REP represents the current actual value of any given node's reputation.

    As new votes are cast on a node, a 1 XP bonus or penalty is assigned according to the following odds, ODDS++ being a reward and ODDS-- being a penalty
    if ($REP < $NORM) { $ODDS++ == 1/3; $ODDS-- == 1/3; } elsif ($NORM <= $REP < (2 * $NORM)) { $ODDS++ == 1/2; $ODDS-- == 1/3; } elsif ((2 * $NORM) <= $REP < (3 * $NORM)) { $ODDS++ == 2/3; $ODDS-- == 1/3; } elsif ((3 * $NORM) <= $REP < (4 * $NORM)) { $ODDS++ == 3/4; $ODDS-- == 1/4; } else { $ODDS++ = 1; $ODDS-- = 0; }

The odds for the XP bonus to the voter remains flat, regardless, but is lowered from 1/3 to 1/4.

Lemme know what you think, personally I think it will help to make levels a better indication of site contributions. The reduction/elimination of the voting bonus will prevent users from gaining XP by only voting. Also this change will also hopefully make votes more meaningful because people won't feel compelled to use them up but will use them to in effect say "good job!" or "this is unhelpful, or incorrect." This will make votes more meaningful because people will only vote on posts they think deserve a push in either direction.

Update:
Since all of you seem to be happy with the proposed change (mostly) I will begin to implement it.
Done:#1, #2 and #3.

vroom | Tim Vroom | vroom@cs.hope.edu


In reply to Proposed XP System Changes by vroom

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-04-18 23:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found