Difference between revisions of "Reputation System"

From Steem Center
Jump to: navigation, search
m (updating some semantic terminology.)
(Links, Related Articles and Reference)
Line 8: Line 8:
  
 
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. )
 
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. )
 +
 +
The site [http://steem.cool Steem.cool] created by [https://steemit.com/reputation/@blueorgy/steem-cool-precise-live-reputation-viewer-how-close-are-you-to-leveling-up-steemit-rep-formula-more @blueorgy] defines itself as a precision live reputation viewer using the [[Steemit]]  formula and more.
  
 
<h1>Posts talking about reputation:</h1>
 
<h1>Posts talking about reputation:</h1>
Line 48: Line 50:
  
 
Calculations thanks to @inertia and also require Radiator(obviously)
 
Calculations thanks to @inertia and also require Radiator(obviously)
 +
 +
 +
==Links:==
 +
 +
* '''Steemit''' : https://steemit.com
 +
* '''Steem.cool''' : http://steem.cool
 +
* '''@dantheman''' : [https://steemit.com/steemit/@dantheman/brief-update-on-reputation-score Brief Update on Reputation Score] August, 2nd, 2016
 +
* '''@digitalnotvir''' : [https://steemit.com/steemit/@digitalnotvir/how-reputation-scores-are-calculated-the-details-explained-with-simple-math How reputation scores are calculated - the details explained with simple math] August 2016
 +
* '''@blueorgy''' : [https://steemit.com/reputation/@blueorgy/steem-cool-precise-live-reputation-viewer-how-close-are-you-to-leveling-up-steemit-rep-formula-more (Steem.Cool) Precise Live Reputation Viewer - How close are you to leveling up? - Steemit REP Formula + More] August 2016
 +
* '''@asksteem''' : [https://steemit.com/steemit/@asksteem/asksteem-what-determines-steemit-reputation What Determines SteemIt Reputation?] August 2016
 +
* '''@stellabelle''' : [https://steemit.com/steemit/@stellabelle/how-i-achieved-the-1-reputation-ranking-on-steemit-and-how-you-can-improve-yours How I Achieved The #1 Reputation Ranking On Steemit And How You Can Improve Yours] August 2016
 +
* '''@shenanigator''' : [https://steemit.com/steem/@shenanigator/updated-steemit-faq-part-3-reputation UPDATED - Steemit FAQ Part 3 - "Reputation"] January 2017
 +
* '''@picokernel''' : [https://steemit.com/steemit/@picokernel/the-situation-with-reputation The situation with reputation] March, 1st, 2017
 +
 +
==Related articles:==
 +
 +
* [[Increase_your_Steem_Net_Worth|Increase your Steem Net Worth]]
 +
* [[Steem]]
 +
* [[Steemian]]
 +
* [[Steemit]]
 +
 +
==References:==
 +
 +
* '''Wikipedia''' : [https://en.wikipedia.org/wiki/Reputation_system Reputation System] ''Retrieved in 4/5/2017''
 +
* '''Oasis''' : [https://www.oasis-open.org/committees/download.php/28303/JIB2007-DSS-Survey.pdf A Survey of Trust and Reputation Systems for Online Service Provision] ''Written by Audun Josang, Roslan Ismail and Colin Boyd, published in 2007''
 +
<br>
 +
 +
----
 +
<br>
 +
{| class="wikitable" style="margin: auto;"
 +
| Help keep this wiki page updated. Register, click in [https://www.steem.center/index.php?title=Reputation_System&action=edit edit], add or modify the text and save. <br>If you're already a steemian you can be rewarded with steem, see how in [https://steemit.com/introduceyourself/@steemcenterwiki/introduction-rewarding-steem-center-wiki-editors-with-steem-too @steemcenterwiki].
 +
|-
 +
|}
 +
<br>

Revision as of 12:44, 5 April 2017

The Basics:

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.

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. )

The site Steem.cool created by @blueorgy defines itself as a precision live reputation viewer using the Steemit formula and more.

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 on ruby on rails

Network Reputation Level:

<% raw = @account.reputation.to_i %>
<% neg = raw < 0 %>
<% level = Math.log10(@account.reputation.to_i.abs) %>
<% level = [level - 9, 0].max %>
<% level = (neg ? -1 : 1) * level %>
<% level = (level * 9) + 25 %>
<%= number_to_human(level) %>

Calculations thanks to @inertia and also require Radiator(obviously)


Links:

Related articles:

References:




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.