Originally posted by EternalOptimist
View Post
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Reputation
Collapse
X
Collapse
-
“The period of the disintegration of the European Union has begun. And the first vessel to have departed is Britain” -
Based on the reps I’ve received so far and assuming a linear relationship exists in the form:RepPoints = p * postCount + a * age + r * reputation + c
Where p is the reppers current post count, age is months since reppers join date, r is the reppers current reputation and c is just a constant.
The data to play with is as follows:
14 = 9709p + 36a + 171r + c
17 = 9207p + 63a + (190r) + c
6 = 2781 + 30a + (150r) + c
The figures in brackets are guesses as to the reppers current reputation.
Ignoring c and solving for the rest gives:[1] repPoints = postCount/630 + age/7.3 – reputation/149
Which isn’t right, as a reppers reputation shouldn’t reduce the rep points awarded.
Assuming current reputation has minimal affect and the variables are just postcount and age:[2] repPoints = postCount/936 + age/9.9
Assuming time on the board has minimal affect and the variables are just postcount and reputation:[3] repPoints = postCount/1000 + reputation/50
I’d go with the last [3] until there's more data. I had expected time on the board to have been in there though.Last edited by TimberWolf; 5 November 2010, 12:15.Comment
-
Here's a pseudocode representation of the function that calculates points when a user gives reputation:
Code:calculate_reputation_points(system, user, is_giving_negative_reputation) { if (user.postcount < system.minimum_postcount OR user.reputation < system.minimum_reputation) { return 0; } points = 1; points = points + integer_value(user.postcount / system.postcount_power); points = points + integer_value(user.reputation / system.reputation_power); points = points + integer_value(user.days_since_joining / system.length_of_service_power); if (is_giving_negative_reputation) { points = integer_value(points / 2); if (points < 1) { points = 1; } points = -points; } return points; }
Comment
-
Originally posted by NickFitz View PostHere's a pseudocode representation of the function that calculates points when a user gives reputation:
Code:calculate_reputation_points(system, user, is_giving_negative_reputation) { if (user.postcount < system.minimum_postcount OR user.reputation < system.minimum_reputation) { return 0; } points = 1; points = points + integer_value(user.postcount / system.postcount_power); points = points + integer_value(user.reputation / system.reputation_power); points = points + integer_value(user.days_since_joining / system.length_of_service_power); if (is_giving_negative_reputation) { points = integer_value(points / 2); if (points < 1) { points = 1; } points = -points; } return points; }
“The period of the disintegration of the European Union has begun. And the first vessel to have departed is Britain”Comment
-
Originally posted by NickFitz View PostHere's a pseudocode representation of the function that calculates points when a user gives reputation:
Code:calculate_reputation_points(system, user, is_giving_negative_reputation) { if (user.postcount < system.minimum_postcount OR user.reputation < system.minimum_reputation) { return 0; } points = 1; points = points + integer_value(user.postcount / system.postcount_power); points = points + integer_value(user.reputation / system.reputation_power); points = points + integer_value(user.days_since_joining / system.length_of_service_power); if (is_giving_negative_reputation) { points = integer_value(points / 2); if (points < 1) { points = 1; } points = -points; } return points; }
Comment
-
Originally posted by TimberWolf View PostCool. What are the values of system.postcount_power, system.reputation_power and system.length_of_service_power?Comment
-
Originally posted by NickFitz View PostThe defaults are 100 days = 1 point, 500 posts = 1 point, and 100 rep = 1 point, but they're configurable so admin could have changed them.
Algebraically:repPoints = postCount / 500 + reputation / 100 + age(in days) / 100 + 1 [all integerised]
A postcount of 9726 (me) alone would give 9726/500 = 19 points and I gave out 14 earlier.Comment
-
I'll need to find an old envelope ...+50 Xeno Geek Points
Come back Toolpusher, scotspine, Voodooflux.Pogle
As for the rest of you - DILLIGAF
Purveyor of fine quality smut since 2005
CUK Olympic University Challenge Champions 2010/2012Comment
-
Originally posted by NickFitz View PostThe defaults are 100 days = 1 point, 500 posts = 1 point, and 100 rep = 1 point, but they're configurable so admin could have changed them.Comment
-
Originally posted by MayContainNuts View PostDoes that mean I'm worthless until 500 posts!?!Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Spot the hidden contractor Yesterday 10:43
- Accounting for Contractors Dec 19 15:30
- Chartered Accountants with MarchMutual Dec 19 15:05
- Chartered Accountants with March Mutual Dec 19 15:05
- Chartered Accountants Dec 19 15:05
- Unfairly barred from contracting? Petrofac just paid the price Dec 19 09:43
- An IR35 case law look back: contractor must-knows for 2025-26 Dec 18 09:30
- A contractor’s Autumn Budget financial review Dec 17 10:59
- Why limited company working could be back in vogue in 2025 Dec 16 09:45
- Expert Accounting for Contractors: Trusted by thousands Dec 12 14:47
Comment