Difference between revisions of "Reputation System"

From Bee Wiki (HIVE)
Jump to: navigation, search
(other languages)
(@sndbox)
Line 33: Line 33:
 
[[File:reputationthree.png]]  
 
[[File:reputationthree.png]]  
  
<h1>Raw reputation calculation in pure ruby ...</h1>
+
===Raw reputation calculation in pure ruby ...===
  
 
<syntaxhighlight lang="ruby">
 
<syntaxhighlight lang="ruby">
Line 68: Line 68:
 
* '''@nepd''' : [https://steemit.com/steemit/@nepd/from-25-to-50-my-first-10-days-at-steemit From 25 to 50: My First 10 Days at Steemit] ''April 5th, 2017''
 
* '''@nepd''' : [https://steemit.com/steemit/@nepd/from-25-to-50-my-first-10-days-at-steemit From 25 to 50: My First 10 Days at Steemit] ''April 5th, 2017''
 
* '''@alphacore''' : [https://steemit.com/steemit/@alphacore/steemit-top-200-reputation-list Steemit Top 200 Reputation List] ''June 19th, 2017''
 
* '''@alphacore''' : [https://steemit.com/steemit/@alphacore/steemit-top-200-reputation-list Steemit Top 200 Reputation List] ''June 19th, 2017''
* '''@distress2success''' : [https://steemit.com/steem/@distress2success/the-dark-side-of-steemit-users-with-negative-reputation The Dark Side of Steemit - Users with Negative Reputation] ''September 13th, 2017''
+
* '''@sndbox''' : [https://steemit.com/toolkit/@sndbox/what-is-a-steemit-reputation-score-an-illustrated-guide What is a Steemit Reputation Score? (An Illustrated Guide)] ''October 17th, 2017''
  
 
==Related articles==
 
==Related articles==

Revision as of 21:38, 22 October 2017

When you first create your account you start at a reputation of 25 and your reputation will increase or decrease based on the upvotes or downvotes you receive. It is about 1.3 times harder to get to the next level than it was to get to the previous level. Basically it is 30% harder to get to a Reputation Score of 50 from a Reputation Score of 49 than it was from a Reputation Score of 49 from a Reputation Score of 48.[1]

The site Steem.cool created by @blueorgy defines itself as a precision live reputation viewer using the Steemit formula and more. On Steem Whales (SteemWhales.com) you can see a steemians ranking by reputation.

Digging a little deeper

The reputation system is a piece of data that allows the network to communicate the "trust-worthiness" of any given member within the network, the system does this through a plugin running on the network that looks at a number of metrics.

Raw reputation on the blockchain is actually stored as a record of the total amount of rshares that have been recieved by any given account. What that essentially means is that it records the amount of times you have been voted for (on any of your posts or comments) and how much steem power each of those accounts had behind them (or to be more explicit the percentage of voting power of the total steem power of each account which voted. )

Posts talking about reputation

An excellent explanation on calculating reputation level (which is the number displayed on steemit.com and on esteem as well as on busy.org) from raw reputation can be found here:

https://steemit.com/steemit/@digitalnotvir/how-reputation-scores-are-calculated-the-details-explained-with-simple-math

An interesting glimpse into early iterations of the reputation system can be found here:

https://steemit.com/steemit/@dantheman/brief-update-on-reputation-score

Nate Brune (@picokernel) discussing the reputation system:

https://steemit.com/steemit/@picokernel/the-situation-with-reputation

Where to find reputation

Reputation.png

Reputationtwo.png

You can also find your raw reputation on steemd.com by browsing to steemd.com/@yourusername

Reputationthree.png

Raw reputation calculation in pure ruby ...

raw = 99324188663068
neg = raw < 0
level = Math.log10(raw.to_i.abs)
level = [level - 9, 0].max
level = (neg ? -1 : 1) * level
level = (level * 9) + 25

Returns: 69.97349523557958

Calculations thanks to @inertia.


References

  1. Complete Overview of Reputation Score, How it’s Calculated, and How to Increase it – Reputation Score Table Included Written by Sevin Wilson (@sevinwilson) on Steemit in May 25th, 2017

Links

Related articles

External links

In other languages




Help keep this wiki page updated. Register, click in edit, add or modify the text and save.
If you're already a steemian you can be rewarded with steem, see how in @steemcenterwiki.