create account

What is Steemit reputation and how does it work? by arcange

View this thread on: hive.blogpeakd.comecency.com
· @arcange · (edited)
$195.69
What is Steemit reputation and how does it work?
<center>https://i.imgsafe.org/fde02d597e.jpg</center>
##  <center>All you wanted to know about reputation</center>

A lot of users found themselves confused about what reputation is, how it is computed, how it changes, which effect it has on what, ...

I have compiled here all the information I found about reputation and tried to make it easier for everyone to understand how it works on Steemit.

### What is reputation for?

The reputation has two roles:
1. It is an indicator that shows how “trusted or appreciated by the community” you are.
2. It is a tool that prevent user with low reputation to harm other users.

### How it works

Reputation points are calculated using the mathematical function **Log base 10**.
Here is a representation of this function. *(note for the purists: I know the X-axis scale is not correct for reputation. I made it as is for simplicity)*

<center>https://i.imgsafe.org/fe040c0e97.png</center>

As you can see, is it very easy to raise your reputation at the beginning, but the higher your reputation, the harder it is to increase it. In fact, each time you want to increase your reputation of 1 point, it is **ten times harder**!

The main effect is that a reputation of 60 is 10 times stronger than the reputation of 59.
It is the same for a negative reputation. A reputation of -8 is 10 times weaker than the reputation of -7.

People with a low reputation cannot harm the reputation of someone with a strong reputation.

This explains why creating a bot that systematically flags other posts is useless, unless the bot has a high reputation, something that will be hard to achieve for a “flag bot”. In no time, the bot’s reputation will be ruined and it will become harmless.

There is no lower or upper limit to reputation.

### About Reward Shares

Before continuing to see how reputation points are “computed”, you need to understand the concept of “Reward Shares“

When you vote for a post or comment, you tell the system to take some money (**the reward**) from the Global Reward Pool and give 75% of this **reward** to the author (**the author reward**) and to share the remaining 25% of the reward between the people that voted for the post (**the curation reward**).

The more votes for the post from people with high voting power, the higher both rewards will be.

But the **curation reward** is not distributed equally among all voters.
Depending on the timing of your vote, the voting power you have and how much you allocated to your vote (percentage gauge), you will get a tiny part of the pie or a bigger one.
The size of your part is called **the reward share**

Here is an example of the distribution of the reward share on a comment:

https://i.imgsafe.org/fd021b0c13.png

You see that, despite all users voted with full power (100%), they have different Reward Shares.

OK, now, let's go back to the reputation. All you have to do is to keep in mind this Reward Share value exists.


### How reputation is “computed”

Each time some vote for a post or a comment, the vote can have an impact on the author reputation, depending on:
* the reputation of the voter
* the Reward Share of the voter

Let's have a look at the code that is executed each time you vote for something.
*You can find it on github [here](https://github.com/steemit/steem/blob/master/libraries/plugins/follow/follow_plugin.cpp)*

```cpp
 const auto& cv_idx = db.get_index< comment_vote_index >().indices().get< by_comment_voter >();
 auto cv = cv_idx.find( boost::make_tuple( comment.id, db.get_account( op.voter ).id ) );

 const auto& rep_idx = db.get_index< reputation_index >().indices().get< by_account >();
 auto voter_rep = rep_idx.find( op.voter );
 auto author_rep = rep_idx.find( op.author );

 // Rules are a plugin, do not effect consensus, and are subject to change.
 // Rule #1: Must have non-negative reputation to effect another user's reputation
 if( voter_rep != rep_idx.end() && voter_rep->reputation < 0 ) return;

 if( author_rep == rep_idx.end() )
 {
 // Rule #2: If you are down voting another user, you must have more reputation than them to impact their reputation
 // User rep is 0, so requires voter having positive rep
 if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > 0 )) return;

 db.create< reputation_object >( [&]( reputation_object& r )
 {
    r.account = op.author;
    r.reputation = ( cv->rshares >> 6 ); // Shift away precision from vests. It is noise
 });
 }
 else
 {
 // Rule #2: If you are down voting another user, you must have more reputation than them to impact their reputation
 if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > author_rep->reputation ) ) return;

 db.modify( *author_rep, [&]( reputation_object& r )
 {
    r.reputation += ( cv->rshares >> 6 ); // Shift away precision from vests. It is noise
 });
}
```
<br>
Here you are. Everything you ever wanted to know is defined is those 33 lines of code. 
Now that you have read them, isn’t it clear to you?

<center>https://i.imgsafe.org/fd31f6397c.png</center>

***I you feel like this, don’t worry. I will help you to translate it to a human understandable language.***

```
 auto cv = cv_idx.find( boost::make_tuple( comment.id, db.get_account( op.voter ).id ) );
```
> Out of all votes, get the vote info of the voter (you)

```
auto voter_rep = rep_idx.find( op.voter );
auto author_rep = rep_idx.find( op.author );
```
> Get the reputation of the voter (you)
Get the reputation of the author of the post or comment

```
 // Rule #1: Must have non-negative reputation to effect another user's reputation
 if( voter_rep != rep_idx.end() && voter_rep->reputation < 0 ) return;
```
> Self documented, if you have the a negative reputation, the process stops.
You have no influence on other’s reputation.

```
if( author_rep == rep_idx.end() )
```
> The process check the existing reputation of the **author**

* **Case 1: the author has no reputation yet**
```
    // Rule #2: If you are down voting another user, you must have more reputation than them to impact their reputation
    // User rep is 0, so requires voter having positive rep
    if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > 0 )) return;
```
> Self-documented, if your vote is negative and your reputation is not positive, the process stop.

```
    db.create< reputation_object >( [&]( reputation_object& r )
```
> The reputation of the author is initialized, then ...

```
    r.reputation = ( cv->rshares >> 6 ); // Shift away precision from vests. It is noise
```
> Your **Reward Share** becomes the new author reputation.


* **Case 2: the author has some reputation,  the process is pretty similar ...**

```
    // Rule #2: If you are down voting another user, you must have more reputation than them to impact their reputation
    if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > author_rep->reputation ) ) return;
```
>Self-documented, if your vote is negative and your reputation is not greater than the author’s reputation, the process stop.

```
    db.modify( *author_rep, [&]( reputation_object& r )
```
> The process will modify the existing author reputation

```
    r.reputation += ( cv->rshares >> 6 ); // Shift away precision from vests. It is noise
```
> Your **Reward Share** is added to the author’s reputation.

That’s it. Easy and simple. 

Finally, the reputation is simply a **VERY BIG** number that contains the sum of all the **Reward Shares** of every votes associated to your posts and comments.
If someone unvote your post, his Reward Shares get deduced and your reputation is lowered.
If your post or comment gets flagged, the Reward Share is deduced and your reputation is diminished.

To display it as a human readable number , you can use the following formula:

`max(log10(abs(reputation))-9,0)*((reputation>= 0)?1:-1)*9+25`

### How to raise your reputation

The best way to increase your reputation to get votes from people with a positive reputation and, even better, with a lot of voting power.

To achieve this goal:
* publish quality posts. Forget quantity, it's about quality!
* take part in the discussions (you can get extra rewards and reputation points for your comments)
* vote carefully (do not vote for crap posts, vote for appropriate content and authors)
* increase the number of followers and build your following list

### Conclusion

I hope you now better understand how reputation works and how to build it.

Remember, reputation is a key factor which reflect how you behave and how the members of the community evaluate your work.

As in real life, having a high level of reputation is a hard work and a long run.
And as in real life, ruining it can be very fast. Then it will be even harder to rebuild.

If you aim at top reputation, focus on quality and on a constructive attitude.

Thanks for reading!

---
<center>[![](http://i.cubeupload.com/XzdQbq.png)](http://steemitboard.com/@arcange)</center>
###### <center>_footer created with **[steemitboard](steemitboard.com)** - click any award to see my board of honor_</center>

### <center>Support me And my work as a [witness](https://steemit.com/steemit/@arcange/arcange-witness-thread) by voting for me [here!](https://steemit.com/~witnesses)</center>
<center>https://i.imgsafe.org/ce6527e1a7.png</center>
You Like this post, do not forget to **upvote**, **[follow me](https://steemit.com/@arcange)** Or **resteem**
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 211 others
properties (23)
authorarcange
permlinkwhat-is-steemit-reputation-and-how-does-it-work
categorysteemit
json_metadata{"tags":["steemit","steem","reputation"],"image":["https://i.imgsafe.org/fde02d597e.jpg","https://i.imgsafe.org/fe040c0e97.png","https://i.imgsafe.org/fd021b0c13.png","https://i.imgsafe.org/fd31f6397c.png","http://i.cubeupload.com/XzdQbq.png","https://i.imgsafe.org/ce6527e1a7.png"],"links":["https://github.com/steemit/steem/blob/master/libraries/plugins/follow/follow_plugin.cpp","http://steemitboard.com/@arcange","steemitboard.com","https://steemit.com/steemit/@arcange/arcange-witness-thread","https://steemit.com/~witnesses","https://steemit.com/@arcange"],"app":"steemit/0.1","format":"markdown"}
created2017-06-10 15:10:21
last_update2017-06-10 15:35:24
depth0
children140
last_payout2017-06-17 15:10:21
cashout_time1969-12-31 23:59:59
total_payout_value155.890 HBD
curator_payout_value39.801 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,460
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,535,854
net_rshares14,162,405,575,369
author_curate_reward""
vote details (275)
@abh12345 ·
That's what i was looking for thank you!

Could you detail "vote carefully (do not vote for crap posts, vote for appropriate content and authors)"  What is termed a 'crap' post by the system?

Low word count, bad grammar?!

Thanks again!
properties (22)
authorabh12345
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t151638339z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:16:42
last_update2017-06-10 15:16:42
depth1
children4
last_payout2017-06-17 15:16:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length237
author_reputation1,401,181,767,850,181
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,217
net_rshares0
@arcange ·
Everyone has is own opinion on "crap post".  
Just ask yourself "Would I give this author some bucks for this?"
properties (22)
authorarcange
permlinkre-abh12345-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160759989z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 16:08:00
last_update2017-06-11 16:08:00
depth2
children3
last_payout2017-06-18 16:08:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,698
net_rshares0
@abh12345 ·
Yes I was wondering from a data point of view. E.g number of words, number of spelling mistakes. Anything like this built into the system?
properties (22)
authorabh12345
permlinkre-arcange-re-abh12345-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t163506125z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 16:35:06
last_update2017-06-11 16:35:06
depth3
children2
last_payout2017-06-18 16:35:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation1,401,181,767,850,181
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,603,115
net_rshares0
@anakinskywalker ·
Steemit is cool but not easy to understand. I still dont understand it. They try to explain it easy but I still dont understand the need for steem power, dollars and steem. Its too much for a newbie. lol i dont even understand the 50% payout deal. I just try to post and say fuck it. but im really lost.
properties (22)
authoranakinskywalker
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t155745275z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:57:45
last_update2017-06-10 15:57:45
depth1
children3
last_payout2017-06-17 15:57:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length303
author_reputation34,730,498,634
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,538,307
net_rshares0
@arcange ·
http://i.cubeupload.com/mavCly.jpg
👍  
properties (23)
authorarcange
permlinkre-anakinskywalker-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160531668z
categorysteemit
json_metadata{"tags":["steemit"],"image":["http://i.cubeupload.com/mavCly.jpg"],"app":"steemit/0.1"}
created2017-06-11 16:05:30
last_update2017-06-11 16:05:30
depth2
children2
last_payout2017-06-18 16:05:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,589
net_rshares266,962,512
author_curate_reward""
vote details (1)
@anakinskywalker ·
i sure do master
properties (22)
authoranakinskywalker
permlinkre-arcange-re-anakinskywalker-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t161127237z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 16:11:27
last_update2017-06-11 16:11:27
depth3
children1
last_payout2017-06-18 16:11:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation34,730,498,634
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,885
net_rshares0
@angelro ·
Good explanation
properties (22)
authorangelro
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20171011t104716832z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-11 10:47:18
last_update2017-10-11 10:47:18
depth1
children0
last_payout2017-10-18 10:47:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation5,222,523,003,970
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,382,402
net_rshares0
@arian1 ·
A useful and interesting read! Thanks for sharing!
properties (22)
authorarian1
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t021102322z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 02:11:03
last_update2017-06-11 02:11:03
depth1
children0
last_payout2017-06-18 02:11:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation49,419,754,215
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,566,976
net_rshares0
@austinhopper ·
How does voting carefully on things effect my reputation score? What is the math behind that?
properties (22)
authoraustinhopper
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180116t071413089z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-16 07:14:12
last_update2018-01-16 07:14:12
depth1
children1
last_payout2018-01-23 07:14:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation1,404,909,557,440
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,880,488
net_rshares0
@joeyarnoldvn ·
Voting on Steemit might be similar to an auction, to a bidding process. Some kind of game. You get rewarded for voting for something that goes on to reap larger rewards. Generally, the more votes, the more rewards there is. Some of that is mentioned in the post here. I've seen other posts about them. I don't have the math, the formulas here but have seen them before. But maybe you can at least get the generality of the voting system. Voting is impacted by your voting power. Each time you vote, your power goes down from 100%, step by step, towards 0% and it may take a few days for your voting power to go back up towards 100%. More voting power (%) means you may get more rewards, potentially. And the rewards are added to your total reputation score. You can see your reputation score at http://steem.cool
properties (22)
authorjoeyarnoldvn
permlinkre-austinhopper-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180424t172027018z
categorysteemit
json_metadata{"tags":["steemit"],"links":["http://steem.cool"],"app":"steemit/0.1"}
created2018-04-24 17:20:27
last_update2018-04-24 17:20:27
depth2
children0
last_payout2018-05-01 17:20:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length812
author_reputation51,367,218,709,933
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,905,340
net_rshares0
@avance2010 ·
I was wondering about that little number next to my name. This explanation was greatly appreciated and I will try to pass that info to the Spanish community of Steemit. You are wonderful Arcange. Thank you for taking the time to explain the numbers to us!!! Keep giving us more light about how the Steemit system works. I greatly appreaciate it. Upvote and re-steemit.
properties (22)
authoravance2010
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170801t193937820z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-01 19:39:39
last_update2017-08-01 19:39:39
depth1
children0
last_payout2017-08-08 19:39:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length368
author_reputation86,292,153,471
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,460,747
net_rshares0
@barber78 ·
Thank you for the quality info on this subject !
properties (22)
authorbarber78
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180718t232727993z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-18 23:27:27
last_update2018-07-18 23:27:27
depth1
children0
last_payout2018-07-25 23:27:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation63,778,754,064,733
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,172,312
net_rshares0
@bloomberg215 ·
Great post. Very informative. Thank you.
properties (22)
authorbloomberg215
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t002526562z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 00:24:18
last_update2017-06-11 00:24:18
depth1
children0
last_payout2017-06-18 00:24:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation2,112,647,900,726
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,562,996
net_rshares0
@bobbyboe ·
Very profound information. As you are very precise in your explanation, translating even the source-code for us non-coders (I really appreciated, thank you)... I was wondering if some of your information later on was on another level of "precision", or maybe I missunderstood some argument?
Your conclusion was...

 To achieve this goal (raise your reputation)
• vote carefully (do not vote for crap posts, vote for appropriate content and authors)
• increase the number of followers and build your following list

1. I understood "voting for crap" wastes my votingpower that could be better invested in upvoting good content... but does it harm my reputation? how?

2. Increase and build up followers and specialy the following list... does this directly influence my reputation? and how?
I could understand the following argumentation: many followers... so many people have my post in theire home-tag and it might be more likely that they come back and vote again for my content... was that your argument? or is there any deeper more direct relation? (btw. I found that many people voting for me often without following me) 
And the argument about the people I follow? Why ist very important to care for whom I follow with regard to my reputation?
properties (22)
authorbobbyboe
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170924t134032552z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-24 13:40:33
last_update2017-09-24 13:40:33
depth1
children0
last_payout2017-10-01 13:40:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,249
author_reputation2,597,193,520,252
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,795,370
net_rshares0
@brianrets ·
I'm new to this amazing platform and I'd like to thank you Sir for this very helpful information.
👍  
properties (23)
authorbrianrets
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180218t154827749z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-18 15:50:36
last_update2018-02-18 15:50:36
depth1
children0
last_payout2018-02-25 15:50:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation3,205,056,151
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,547,324
net_rshares0
author_curate_reward""
vote details (1)
@btcmillionaire ·
$1.06
Thanks I literally had no idea how reputation worked until I read this.

How does someone flag a post? Why would they do that?
👍  
properties (23)
authorbtcmillionaire
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170614t094856772z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-14 09:48:57
last_update2017-06-14 09:48:57
depth1
children1
last_payout2017-06-21 09:48:57
cashout_time1969-12-31 23:59:59
total_payout_value1.054 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation8,659,596,341,168
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,811,455
net_rshares41,858,875,530
author_curate_reward""
vote details (1)
@corason ·
well. maybe if it's stuff like gore, illegal activities(like porn you really don't want to see).
or a complete garbage post.
👍  
properties (23)
authorcorason
permlinkre-btcmillionaire-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180404t224655022z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-04 22:46:57
last_update2018-04-04 22:46:57
depth2
children0
last_payout2018-04-11 22:46:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation21,145,173,393
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,377,055
net_rshares276,866,189
author_curate_reward""
vote details (1)
@champok · (edited)
Its great. Many things i have come to know from this  post. Really its helpful for me as i am a new user of STEEMIT. Thanks again
👍  
properties (23)
authorchampok
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170704t171402633z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-04 17:14:03
last_update2017-07-04 17:14:33
depth1
children0
last_payout2017-07-11 17:14:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation6,158,770,443
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,300,737
net_rshares0
author_curate_reward""
vote details (1)
@cherie ·
what a sweet post ! thank you so much
👍  ,
properties (23)
authorcherie
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t093824837z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-15 09:38:24
last_update2017-06-15 09:38:24
depth1
children0
last_payout2017-06-22 09:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation750,139,561,914
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,906,037
net_rshares261,158,979
author_curate_reward""
vote details (2)
@cherie ·
ALSO , if you promote your posts ..meaning you PAY to put them in first positions , then more people can see them and you get more chances for rewards ..it is a pyramidal effect as well , so VERY tricky to go high
👍  
properties (23)
authorcherie
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t094048647z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-15 09:40:48
last_update2017-06-15 09:40:48
depth1
children0
last_payout2017-06-22 09:40:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length213
author_reputation750,139,561,914
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,906,183
net_rshares261,158,979
author_curate_reward""
vote details (1)
@cherie ·
i will vote for you as a witness arcange
👍  
properties (23)
authorcherie
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t094938070z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-15 09:49:36
last_update2017-06-15 09:49:36
depth1
children0
last_payout2017-06-22 09:49:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation750,139,561,914
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,906,610
net_rshares261,158,979
author_curate_reward""
vote details (1)
@coincussion ·
Thank you for the explanation and the breakdown of code with the meaning. It all makes sense to me now.  I have definitely followed you!
👍  
properties (23)
authorcoincussion
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180216t041522272z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-16 04:15:24
last_update2018-02-16 04:15:24
depth1
children0
last_payout2018-02-23 04:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation179,326,507,838
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,906,433
net_rshares0
author_curate_reward""
vote details (1)
@coinmaker ·
Great works Thank you for explanation
👍  
properties (23)
authorcoinmaker
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152237034z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:22:48
last_update2017-06-10 15:22:48
depth1
children0
last_payout2017-06-17 15:22:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation3,190,339,179,870
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,545
net_rshares0
author_curate_reward""
vote details (1)
@coolbowser ·
I'm fairly new and didn't realize until yesterday that you can have a bad reputation. I guess it never dawned on me until I saw someone with a 5.  Wow and it can even go negative. Thanks for the info. Great post.
👍  
properties (23)
authorcoolbowser
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t112851478z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 11:28:51
last_update2017-06-11 11:28:51
depth1
children0
last_payout2017-06-18 11:28:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length212
author_reputation51,199,911,688,687
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,587,086
net_rshares0
author_curate_reward""
vote details (1)
@cryptodog ·
This is exactly what I wanted to know. Thanks for explaining it in an easy to understand way @arcange.
properties (22)
authorcryptodog
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152959271z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"}
created2017-06-10 15:30:03
last_update2017-06-10 15:30:03
depth1
children1
last_payout2017-06-17 15:30:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation867,897,048,877
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,885
net_rshares0
@arcange ·
Glad it helped.
properties (22)
authorarcange
permlinkre-cryptodog-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160300041z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 16:03:00
last_update2017-06-11 16:03:00
depth2
children0
last_payout2017-06-18 16:03:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,464
net_rshares0
@cryptopher ·
You put in good work on this one!  Thank you!
properties (22)
authorcryptopher
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t161606693z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 16:16:06
last_update2017-06-10 16:16:06
depth1
children1
last_payout2017-06-17 16:16:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation252,978,213,989
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,539,322
net_rshares0
@arcange ·
Thank you
👍  
properties (23)
authorarcange
permlinkre-cryptopher-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082123304z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:21:24
last_update2017-06-12 08:21:24
depth2
children0
last_payout2017-06-19 08:21:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,256
net_rshares140,396,877
author_curate_reward""
vote details (1)
@dbennett ·
Thanks for this. It let me know that I'm basically on track and gave me ways to improve. Yay!
properties (22)
authordbennett
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180216t005525016z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-16 00:55:24
last_update2018-02-16 00:55:24
depth1
children0
last_payout2018-02-23 00:55:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation2,520,038,288,432
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,873,030
net_rshares0
@dejavu · (edited)
Thanks, very infomative and helpful 

https://image.slidesharecdn.com/womanentrepreneurship-150420055825-conversion-gate02/95/woman-entrepreneurship-9-638.jpg?cb=1429511601
👍  
properties (23)
authordejavu
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t161843448z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://image.slidesharecdn.com/womanentrepreneurship-150420055825-conversion-gate02/95/woman-entrepreneurship-9-638.jpg?cb=1429511601"],"app":"steemit/0.1"}
created2017-06-10 16:18:45
last_update2017-06-10 16:19:57
depth1
children0
last_payout2017-06-17 16:18:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation432,165,049,403
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,539,453
net_rshares693,309,756
author_curate_reward""
vote details (1)
@dez1337 ·
Great post @arcange. I had some strugles myself to understand the reputation system when I started so I guess this post is more than usefull for new members :)
properties (22)
authordez1337
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t161452026z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"}
created2017-06-10 16:14:51
last_update2017-06-10 16:14:51
depth1
children1
last_payout2017-06-17 16:14:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length159
author_reputation20,544,257,521,749
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,539,238
net_rshares0
@arcange ·
$0.04
Thank you
👍  
properties (23)
authorarcange
permlinkre-dez1337-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082058231z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:20:57
last_update2017-06-12 08:20:57
depth2
children0
last_payout2017-06-19 08:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,241
net_rshares14,586,600,606
author_curate_reward""
vote details (1)
@dominikboecker ·
Thanks for sharing and providing a fantastic post on Reputation, lots learned!
properties (22)
authordominikboecker
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t011503993z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 01:15:03
last_update2017-06-11 01:15:03
depth1
children0
last_payout2017-06-18 01:15:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation1,162,499,213,359
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,564,912
net_rshares0
@drguru ·
very nice thanks for sharing
properties (22)
authordrguru
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20171214t163032030z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-14 16:30:33
last_update2017-12-14 16:30:33
depth1
children0
last_payout2017-12-21 16:30:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation434,682,142,588
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,515,030
net_rshares0
@epearson ·
This was very clear.  I've been on Steemit a few weeks, and this helped fill some gaps in my understanding.  I really enjoyed how you broke down the code.  Thank again!
properties (22)
authorepearson
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180318t142241664z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-18 14:22:42
last_update2018-03-18 14:22:42
depth1
children0
last_payout2018-03-25 14:22:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation3,695,460,037,986
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,148,405
net_rshares0
@ercpok ·
Thank you for sharing the useful information such that I can know more about the reputation and I think it is a good system since it could reflect the user's good or bad behavior and less users will having bad behavior such as plagiarism because of the decrease in reputation.
👍  , , , , , ,
properties (23)
authorercpok
permlinkre-arcange-2017611t1379302z
categorysteemit
json_metadata{"tags":"steemit","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-10 17:37:12
last_update2017-06-10 17:37:12
depth1
children0
last_payout2017-06-17 17:37:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length276
author_reputation663,024,938,116
root_title"What is Steemit reputation and how does it work?"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,543,392
net_rshares2,474,424,738
author_curate_reward""
vote details (7)
@erikaflynn ·
Great explanation! It was a big secret for me what is Reward Share and where it comes from.
I think It would be a good article for Steem centre wiki.
properties (22)
authorerikaflynn
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t155546366z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:55:51
last_update2017-06-10 15:55:51
depth1
children1
last_payout2017-06-17 15:55:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation12,282,595,621,854
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,538,186
net_rshares0
@arcange ·
Thanks!
properties (22)
authorarcange
permlinkre-erikaflynn-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082015894z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:20:15
last_update2017-06-12 08:20:15
depth2
children0
last_payout2017-06-19 08:20:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,214
net_rshares0
@etcmike · (edited)
$0.88
Thank you for putting together this informative post on the complex subject of reputation.  I am sure it will help the newer members to the community to understand their reputation score better.

100% upvote and re-steem

Have a fantastic weekend!
Steem on,
Mike
👍  , ,
properties (23)
authoretcmike
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t151757413z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:17:54
last_update2017-06-10 15:18:39
depth1
children1
last_payout2017-06-17 15:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.660 HBD
curator_payout_value0.216 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length262
author_reputation534,676,096,189,306
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,276
net_rshares270,461,710,000
author_curate_reward""
vote details (3)
@arcange ·
$0.16
Thanks you. A good week-end to you!
👍  
properties (23)
authorarcange
permlinkre-etcmike-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160138707z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 16:01:39
last_update2017-06-11 16:01:39
depth2
children0
last_payout2017-06-18 16:01:39
cashout_time1969-12-31 23:59:59
total_payout_value0.122 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,377
net_rshares53,785,885,548
author_curate_reward""
vote details (1)
@fairbee ·
You are rocking with posts Today. This is A must read one.
properties (22)
authorfairbee
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t151551197z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:16:03
last_update2017-06-10 15:16:03
depth1
children1
last_payout2017-06-17 15:16:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation142,126,803,055
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,185
net_rshares0
@arcange ·
Thanks! =)
properties (22)
authorarcange
permlinkre-fairbee-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t153803185z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:38:06
last_update2017-06-10 15:38:06
depth2
children0
last_payout2017-06-17 15:38:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,537,251
net_rshares0
@flepmajoor ·
Thanks a lot for this explanation, clears up a lot.
properties (22)
authorflepmajoor
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t151919462z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:19:18
last_update2017-06-10 15:19:18
depth1
children1
last_payout2017-06-17 15:19:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation17,804,315,209
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,353
net_rshares0
@arcange ·
Thanks you.
properties (22)
authorarcange
permlinkre-flepmajoor-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082324976z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:23:24
last_update2017-06-12 08:23:24
depth2
children0
last_payout2017-06-19 08:23:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,321
net_rshares0
@happyphoenix ·
Nice sharing, thank you give information about reputation. :)
properties (22)
authorhappyphoenix
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t164322269z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 16:43:27
last_update2017-06-10 16:43:27
depth1
children0
last_payout2017-06-17 16:43:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation69,899,273,920,724
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,540,820
net_rshares0
@harvz ·
nice! now I know.
properties (22)
authorharvz
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180109t194333265z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-09 19:42:42
last_update2018-01-09 19:42:42
depth1
children0
last_payout2018-01-16 19:42:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation22,319,281,689
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,324,963
net_rshares0
@heigovannik ·
Thank you for sharing! So the first meaningful milestone would be having 60 reputation points yeah?
properties (22)
authorheigovannik
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20181001t185153850z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-10-01 18:51:54
last_update2018-10-01 18:51:54
depth1
children1
last_payout2018-10-08 18:51:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation315,723,758,624
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,431,439
net_rshares0
@arcange ·
Not the first one, but a good one ;)
properties (22)
authorarcange
permlinkre-heigovannik-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20181002t235554439z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-10-02 23:55:54
last_update2018-10-02 23:55:54
depth2
children0
last_payout2018-10-09 23:55:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,510,505
net_rshares0
@heimindanger ·
$0.06
Great post! How did you find out about the minimum being -8 ? I thought it was possible to go as low as we want
👍  ,
properties (23)
authorheimindanger
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152134376z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:21:33
last_update2017-06-10 15:21:33
depth1
children2
last_payout2017-06-17 15:21:33
cashout_time1969-12-31 23:59:59
total_payout_value0.060 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation-16,507,408,909,111
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,481
net_rshares20,870,720,568
author_curate_reward""
vote details (2)
@demotruk ·
$0.40
I don't think that's correct either. I believe -8 was the lowest score a user had when reputation was initially created, but the front end representation has changed since then.
👍  , , ,
properties (23)
authordemotruk
permlinkre-heimindanger-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152808736z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:28:09
last_update2017-06-10 15:28:09
depth2
children1
last_payout2017-06-17 15:28:09
cashout_time1969-12-31 23:59:59
total_payout_value0.346 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation278,747,146,820,861
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,793
net_rshares127,713,520,892
author_curate_reward""
vote details (4)
@arcange ·
$1.00
You're right. I'm such an old-timer =)
Post updated!
👍  , , ,
properties (23)
authorarcange
permlinkre-demotruk-re-heimindanger-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t153604334z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:36:06
last_update2017-06-10 15:36:06
depth3
children0
last_payout2017-06-17 15:36:06
cashout_time1969-12-31 23:59:59
total_payout_value0.910 HBD
curator_payout_value0.090 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,537,166
net_rshares306,660,431,014
author_curate_reward""
vote details (4)
@ilyastarar ·
This has finally cleared everything for me. Thank you!!!
👍  
properties (23)
authorilyastarar
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20171226t162723649z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-26 16:27:27
last_update2017-12-26 16:27:27
depth1
children1
last_payout2018-01-02 16:27:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation22,538,822,918,099
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,363,611
net_rshares0
author_curate_reward""
vote details (1)
@sathyasankar ·
But do you think reputation is still relevant? Anybody can buy reputation!
properties (22)
authorsathyasankar
permlinkre-ilyastarar-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180625t182254700z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-25 18:22:57
last_update2018-06-25 18:22:57
depth2
children0
last_payout2018-07-02 18:22:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation25,037,930,470,038
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,234,482
net_rshares0
@jakeswingle16 ·
Great article @arcange. That clears it up how voting works and how important keeping your reputation in good standing really is. One problem though with this setup. People being people and there's some oddballs out here i'm sure eveyone can agree, but who knows if that is a good thing or not.  It seems we would have to judge people to come up with a final conclusion would it not? Not everyone is as social as we might expect. Maybe not as educated as we sometime expect either. Maybe in order to get in with the right crowd you have to pretend to be someone your not, and what good is that if you can't be genuine to yourself? I have a hard time understanding why someone would want to downvote something if they don't like it or whatever the excuse is. If you don't agree with it then why not have a conversation about it, or just leave the page alone and don't push anything? I get it if it's offensive but just out of your opinion your gonna give somone a black eye and they don't even get to know why most of the time. That is one thing i will never understand. It's like someone poking you in the eye and you don't even get to see who did it or why. If i look at a post and read it i do one of two things, comment and upvote or read it and leave. Why would i want to harm somones score. Maybe at the time i may not read it right but then if i go back at a later time i read it again and love it. I think it can have a big impact on why people want to get discouraged early because they don't understand it plus i think in my opinion it isn't the most perfect setup that it could become. I think we should look into why we should have a negative button to push. Maybe look into other options. Thank you for the clarity and maybe we can find the perfect solution so we can actually make this the go to platform that people want to use. Remember when this goes out to the public in mainstream we will have anyone and everyone coming on board posting like the wild west and we better have this profected by then.
👍  
properties (23)
authorjakeswingle16
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t175558113z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"}
created2017-06-10 17:55:57
last_update2017-06-10 17:55:57
depth1
children2
last_payout2017-06-17 17:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,016
author_reputation4,064,219,823,027
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,544,331
net_rshares0
author_curate_reward""
vote details (1)
@arcange ·
Thanks for you feedback.
PS: You should break up your answers with paragraphs. I nearly gave up reading it.
properties (22)
authorarcange
permlinkre-jakeswingle16-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082443618z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:24:42
last_update2017-06-12 08:24:42
depth2
children0
last_payout2017-06-19 08:24:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,367
net_rshares0
@joeyarnoldvn ·
Be yourself and share yourself with people you like, engage in conversations more, brand yourself, give people some hope, inspiration, share your world with them, as that is how we grow.
👍  
properties (23)
authorjoeyarnoldvn
permlinkre-jakeswingle16-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180424t171111510z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-24 17:11:12
last_update2018-04-24 17:11:12
depth2
children0
last_payout2018-05-01 17:11:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation51,367,218,709,933
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,903,909
net_rshares1,939,229,526
author_curate_reward""
vote details (1)
@joeyarnoldvn ·
The definition of quality can be more relative than objective depending on who is defining that word for example. Beauty is in the eye of the beholder. What is beautiful to me may not be beautiful to you and what is beautiful to you may not be beautiful to me and same thing goes for quality. Some people post quality stuff but may not be seen by some people and therefore may not see immediate benefits. The potential may still be there for those with better content, but it is similar to being a better singer than Beyonce and yet undiscovered by talent scouts, agents, & so that is the paradox or the dilemma that people have. People generally have to balance themselves between quality & quantity because first, quality is key, but like a tree falling in the forest when nobody is around, did the tree make a sound, and do we make an impact like a tree, do we truly influence people when nobody knows us, is the question. So, it may take some self-marketing which includes being more engaged in the comments for example and it can take time to grow your brand. In order to grow, it may take a bunch of work, dedication, consistency. Rome wasn't built in a day. Thanks for the post. I'm Oatmeal.
properties (22)
authorjoeyarnoldvn
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180424t170350766z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-24 17:03:51
last_update2018-04-24 17:03:51
depth1
children0
last_payout2018-05-01 17:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,198
author_reputation51,367,218,709,933
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,902,750
net_rshares0
@jure ·
Thank you for in detail explanation :)
properties (22)
authorjure
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180118t073426166z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-18 07:34:42
last_update2018-01-18 07:34:42
depth1
children0
last_payout2018-01-25 07:34:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation1,756,592,875
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,340,214
net_rshares0
@justoneopinion ·
Still need help here. So only people who have been previously rewarded can  reward with reputation? So how can there be any change in popular opinion in the community arguing against the post? Wont the most powerful people punish people for their dissenting opinion?  and wont people with low reputations just abandon the system? or just turn into dead fish?  Guess I need to read more.
👍  ,
properties (23)
authorjustoneopinion
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t163625809z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 16:36:27
last_update2017-06-10 16:36:27
depth1
children0
last_payout2017-06-17 16:36:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length386
author_reputation53,562,754,073
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,540,451
net_rshares1,476,698,254
author_curate_reward""
vote details (2)
@jznsamuel ·
$1.10
That was the most important thing I read on steemit today. Never knew there was so much going on behind the scenes for reputation, thanks for sharing was very useful.
👍  , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorjznsamuel
permlinkre-arcange-2017610t22738559z
categorysteemit
json_metadata{"tags":"steemit","app":"esteem/1.4.4","format":"markdown+html"}
created2017-06-10 16:37:48
last_update2017-06-10 16:37:48
depth1
children2
last_payout2017-06-17 16:37:48
cashout_time1969-12-31 23:59:59
total_payout_value1.018 HBD
curator_payout_value0.082 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation150,069,294,355,975
root_title"What is Steemit reputation and how does it work?"
beneficiaries
0.
accountesteemapp
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,540,533
net_rshares337,845,571,180
author_curate_reward""
vote details (22)
@arcange ·
Thanks for your positive feedback!
properties (22)
authorarcange
permlinkre-jznsamuel-re-arcange-2017610t22738559z-20170611t155943715z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 15:59:45
last_update2017-06-11 15:59:45
depth2
children1
last_payout2017-06-18 15:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,232
net_rshares0
@ayowrite ·
great
properties (22)
authorayowrite
permlinkre-arcange-re-jznsamuel-re-arcange-2017610t22738559z-20180718t064417237z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-18 06:44:21
last_update2018-07-18 06:44:21
depth3
children0
last_payout2018-07-25 06:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation30,194,029
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,081,228
net_rshares0
@kabir88 ·
Very informative post, it's a shame you don't get rewarded for it after 7 days. Is this going to be changed?

Thanks for taking time to share your research with the steemit community
👍  ,
properties (23)
authorkabir88
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180307t100426841z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-07 10:04:27
last_update2018-03-07 10:04:27
depth1
children0
last_payout2018-03-14 10:04:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation9,762,676,591,926
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,835,209
net_rshares1,659,976,560
author_curate_reward""
vote details (2)
@karensuestudios ·
Very informative. Just learned something new about Steemit!
👍  
properties (23)
authorkarensuestudios
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t161648577z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-15 16:16:45
last_update2017-06-15 16:16:45
depth1
children0
last_payout2017-06-22 16:16:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation160,921,990,211,887
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,932,483
net_rshares0
author_curate_reward""
vote details (1)
@kate-m ·
$0.05
That just mildly boggled my brain!
👍  ,
properties (23)
authorkate-m
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20171126t202055120z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-26 20:20:57
last_update2017-11-26 20:20:57
depth1
children0
last_payout2017-12-03 20:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.041 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation1,210,258,549,746
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,607,323
net_rshares23,034,946,609
author_curate_reward""
vote details (2)
@komo ·
Thank you a lot. This post really help me understanding what reputation on steemit means.
properties (22)
authorkomo
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180112t082739568z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-12 08:27:39
last_update2018-01-12 08:27:39
depth1
children0
last_payout2018-01-19 08:27:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation120,219,363,947
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,951,660
net_rshares0
@kongen ·
And where can we find the Reputation status???!! Follow me guys!
properties (22)
authorkongen
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180316t191503789z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-16 19:15:06
last_update2018-03-16 19:15:06
depth1
children0
last_payout2018-03-23 19:15:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation-80,612,357,479
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,815,600
net_rshares0
@kyusho ·
Thanks... I do not get into the nitty gritty code of things, just sort of go with the flow.  But your post caught my eye as I have been at 67 for a long time... and beginning to wonder.

Also my eSteem app has me at 68 on one page and still at 67 on others... so this was timely for me.

I should stick to the go with the flow thing.
👍  
properties (23)
authorkyusho
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t154144093z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:42:03
last_update2017-06-10 15:42:03
depth1
children0
last_payout2017-06-17 15:42:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length333
author_reputation77,157,400,538,407
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,537,467
net_rshares0
author_curate_reward""
vote details (1)
@magick323 ·
Thank you for the tutorial. A lot of this is complicated. Thanks for breaking it down for minnows like me. Have a great weekend!
👍  
properties (23)
authormagick323
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152951426z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:29:36
last_update2017-06-10 15:29:36
depth1
children1
last_payout2017-06-17 15:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation2,064,080,220,529
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,873
net_rshares0
author_curate_reward""
vote details (1)
@arcange ·
Thank you!
properties (22)
authorarcange
permlinkre-magick323-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082347572z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:23:48
last_update2017-06-12 08:23:48
depth2
children0
last_payout2017-06-19 08:23:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,335
net_rshares0
@magick323 ·
https://steemitimages.com/0x0/https://steemitimages.com/DQmQhGVcEP6ifCdCYWzYYSzuT6qgbPcgGnXmZRVX8MebuH4/baby-cry.gif
👍  
properties (23)
authormagick323
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t171855362z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmQhGVcEP6ifCdCYWzYYSzuT6qgbPcgGnXmZRVX8MebuH4/baby-cry.gif"],"app":"steemit/0.1"}
created2017-06-10 17:18:54
last_update2017-06-10 17:18:54
depth1
children1
last_payout2017-06-17 17:18:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation2,064,080,220,529
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,542,514
net_rshares266,962,512
author_curate_reward""
vote details (1)
@cherie ·
AHAHAHAHAH
👍  
properties (23)
authorcherie
permlinkre-magick323-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t094144076z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-15 09:41:45
last_update2017-06-15 09:41:45
depth2
children0
last_payout2017-06-22 09:41:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation750,139,561,914
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,906,220
net_rshares266,962,512
author_curate_reward""
vote details (1)
@magick323 ·
@arcange - you mention we should publish quality posts. Do you critique posts for newbies? If so, here is a chapter summary on my series about depression: https://steemit.com/health/@magick323/how-to-combat-depression-part-two-your-friends-are-assholes-and-other-hard-truths

 I am wondering what I am doing wrong? Any advice appreciated!
properties (22)
authormagick323
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t212650348z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"links":["https://steemit.com/health/@magick323/how-to-combat-depression-part-two-your-friends-are-assholes-and-other-hard-truths"],"app":"steemit/0.1"}
created2017-06-10 21:26:36
last_update2017-06-10 21:26:36
depth1
children0
last_payout2017-06-17 21:26:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length338
author_reputation2,064,080,220,529
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,554,915
net_rshares0
@makecents ·
Concise explanation of the reputation system, thanks!
properties (22)
authormakecents
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t153312790z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:33:00
last_update2017-06-10 15:33:00
depth1
children1
last_payout2017-06-17 15:33:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation171,463,604,019
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,537,030
net_rshares0
@arcange ·
Thanks!
properties (22)
authorarcange
permlinkre-makecents-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160322740z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 16:03:24
last_update2017-06-11 16:03:24
depth2
children0
last_payout2017-06-18 16:03:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,492
net_rshares0
@mariacherries ·
&#127826; I still think that there's a big flaw with that system, because if somebody with high reputation and/or high Steem Power, does not like you or you make a mistake or  whatever, they can flag you and then your....
https://media.giphy.com/media/3o6Zt2Cke3AYnDq2SA/giphy.gif
But, well no system is perfect, right?
👍  , , ,
properties (23)
authormariacherries
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t172853140z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://media.giphy.com/media/3o6Zt2Cke3AYnDq2SA/giphy.gif"],"app":"steemit/0.1"}
created2017-06-10 17:28:57
last_update2017-06-10 17:28:57
depth1
children1
last_payout2017-06-17 17:28:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length319
author_reputation1,951,647,327,700
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,542,994
net_rshares4,730,737,060
author_curate_reward""
vote details (4)
@joeyarnoldvn ·
Make friends with people with higher reputations, be yourself as that attracts people like you, brand yourself, and you may continue to grow that way. Love the South Park meme. Love it. I'm Oatmeal.
properties (22)
authorjoeyarnoldvn
permlinkre-mariacherries-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180424t170823524z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-24 17:08:24
last_update2018-04-24 17:08:24
depth2
children0
last_payout2018-05-01 17:08:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length198
author_reputation51,367,218,709,933
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,903,469
net_rshares0
@mariandavp ·
I am a Steemer since last August and I just found out how the reputation works! Lol. Thank you @arcange!!!
properties (22)
authormariandavp
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t162636941z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"}
created2017-06-10 16:26:39
last_update2017-06-10 16:26:39
depth1
children1
last_payout2017-06-17 16:26:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation200,420,201,215,223
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,539,866
net_rshares0
@arcange ·
$0.24
Never too late to learn =)
👍  
properties (23)
authorarcange
permlinkre-mariandavp-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160821184z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 16:08:21
last_update2017-06-11 16:08:21
depth2
children0
last_payout2017-06-18 16:08:21
cashout_time1969-12-31 23:59:59
total_payout_value0.238 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,716
net_rshares77,193,534,137
author_curate_reward""
vote details (1)
@mbare ·
Thanks for the easy-to-understand explaination. I am suffering from low reputation due to being a new user and being downvoted/flagged by steemcleaners on one of my posts. Hope to recover soon by making more quality contributions to the community. Thanks again and all the best to you for this helpful post :)
properties (22)
authormbare
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20171128t140935484z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-28 14:09:33
last_update2017-11-28 14:09:33
depth1
children0
last_payout2017-12-05 14:09:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length309
author_reputation20,755,602,157
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,784,465
net_rshares0
@mdeecoded ·
This is exactly what i have been searching for, Well explain @arcange. Thanks so Much
properties (22)
authormdeecoded
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180630t223654691z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"}
created2018-06-30 22:37:00
last_update2018-06-30 22:37:00
depth1
children1
last_payout2018-07-07 22:37:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation101,013,281,756
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,923,210
net_rshares0
@arcange · (edited)
Glad you found it and it has been useful to you
properties (22)
authorarcange
permlinkre-mdeecoded-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180701t044417705z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-01 04:44:21
last_update2018-07-01 04:44:33
depth2
children0
last_payout2018-07-08 04:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,949,573
net_rshares0
@mdog ·
thanks for explaining the reputation system... now i understand that getting to 60 reputation is no easy task
👍  
properties (23)
authormdog
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t154235572z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:42:39
last_update2017-06-10 15:42:39
depth1
children1
last_payout2017-06-17 15:42:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation536,054,640,041
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,537,492
net_rshares0
author_curate_reward""
vote details (1)
@arcange ·
It's not an easy task, but it is not an unreachable target ;)
👍  
properties (23)
authorarcange
permlinkre-mdog-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t081945571z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:19:45
last_update2017-06-12 08:19:45
depth2
children0
last_payout2017-06-19 08:19:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,193
net_rshares177,540,096
author_curate_reward""
vote details (1)
@mrfringe ·
Thank you, there is a lot to learn about this steemit business. I was reading up on it when I first signed up and it seemed simple enough, but it took 2 weeks to get my account active and I forgot about it. Now I'm on here and I'm looking around I can see it is quite complicated. I look forward to figuring it all out and these type of posts help a lot. Thanks again.
👍  
properties (23)
authormrfringe
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180814t195153208z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-08-14 19:51:57
last_update2018-08-14 19:51:57
depth1
children0
last_payout2018-08-21 19:51:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length368
author_reputation19,249,633,253,129
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,201,103
net_rshares5,452,380,487
author_curate_reward""
vote details (1)
@mtunit ·
Steemit it is Dark Mirror .
👎  
properties (23)
authormtunit
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180320t174537828z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-20 17:45:39
last_update2018-03-20 17:45:39
depth1
children1
last_payout2018-03-27 17:45:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation-43,022,951,106
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,590,455
net_rshares-593,091,103
author_curate_reward""
vote details (1)
@nakedverse ·
Great Post . I think Im heading in the right direction .
Thank you !
properties (22)
authornakedverse
permlinkre-mtunit-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180404t143859419z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-04 14:39:03
last_update2018-04-04 14:39:03
depth2
children0
last_payout2018-04-11 14:39:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation74,733,924,352,720
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,311,421
net_rshares0
@muhammadyasir ·
Great article explaining the importance of reputation.  Thank you for this contribution to the community. However, I can't find the resteem handle ?
properties (22)
authormuhammadyasir
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170703t181544619z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 18:15:48
last_update2017-07-03 18:15:48
depth1
children3
last_payout2017-07-10 18:15:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation63,536,694,651
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,176,098
net_rshares0
@arcange ·
Thanks for your comment. 
You can't resteem this post because it has been published "long time" ago.
properties (22)
authorarcange
permlinkre-muhammadyasir-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170703t182258161z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 18:22:57
last_update2017-07-03 18:22:57
depth2
children2
last_payout2017-07-10 18:22:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,176,873
net_rshares0
@muhammadyasir ·
So, in how many days a post can be resteemed. Is it 7 days or more than that?
properties (22)
authormuhammadyasir
permlinkre-arcange-re-muhammadyasir-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170703t182609766z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-03 18:26:15
last_update2017-07-03 18:26:15
depth3
children1
last_payout2017-07-10 18:26:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation63,536,694,651
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,177,202
net_rshares0
@mzalevsky ·
Thank you very much, it was very useful for me.
👍  
properties (23)
authormzalevsky
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180304t002705655z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-04 00:27:09
last_update2018-03-04 00:27:09
depth1
children0
last_payout2018-03-11 00:27:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation18,447,353,890
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,992,819
net_rshares0
author_curate_reward""
vote details (1)
@nganine ·
thz for explanation
properties (22)
authornganine
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180720t095320084z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-20 09:53:21
last_update2018-07-20 09:53:21
depth1
children0
last_payout2018-07-27 09:53:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation-6,647,193,907
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,346,275
net_rshares0
@nikita.onopko ·
This really was very useful, thanks so much for that explanation!
properties (22)
authornikita.onopko
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170926t223524358z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-26 22:35:24
last_update2017-09-26 22:35:24
depth1
children0
last_payout2017-10-03 22:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation157,504,587,582
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,026,865
net_rshares0
@nodsaibot ·
Thanks for posting this, was a bit confused on how it related to my earnings or lack thereof lol
properties (22)
authornodsaibot
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180130t233519298z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-30 23:36:45
last_update2018-01-30 23:36:45
depth1
children0
last_payout2018-02-06 23:36:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation475,951,454
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,695,036
net_rshares0
@notmean8x ·
I'm investigating this issue. Thanks, the article is very helpful. Vote for you.
properties (22)
authornotmean8x
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180521t083558098z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-21 08:40:51
last_update2018-05-21 08:40:51
depth1
children0
last_payout2018-05-28 08:40:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation203,596,804
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,848,065
net_rshares0
@nrajesh ·
Loved this and shared this in a comment as well. Very nicely written
properties (22)
authornrajesh
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t232807117z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 23:28:03
last_update2017-06-10 23:28:03
depth1
children1
last_payout2017-06-17 23:28:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation741,060,530,571
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,560,785
net_rshares0
@arcange ·
Thank you!
properties (22)
authorarcange
permlinkre-nrajesh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082644511z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:26:45
last_update2017-06-12 08:26:45
depth2
children0
last_payout2017-06-19 08:26:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,424
net_rshares0
@odigetti ·
Thank you for sharing those informations resteemed and followed :) !
properties (22)
authorodigetti
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t203921491z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 20:39:21
last_update2017-06-11 20:39:21
depth1
children1
last_payout2017-06-18 20:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation1,100,886,398,260
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,616,895
net_rshares0
@arcange ·
Thank you
properties (22)
authorarcange
permlinkre-odigetti-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082712261z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 08:27:12
last_update2017-06-12 08:27:12
depth2
children0
last_payout2017-06-19 08:27:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,645,441
net_rshares0
@oflyhigh ·
$1.54
Very helpful information.
But the lower reputation is not -8
I don't know the lowest one, but wang's is -16 ;)
👍  , , , , , , ,
properties (23)
authoroflyhigh
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152143418z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:21:45
last_update2017-06-10 15:21:45
depth1
children15
last_payout2017-06-17 15:21:45
cashout_time1969-12-31 23:59:59
total_payout_value1.162 HBD
curator_payout_value0.381 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation6,258,033,889,525,626
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,493
net_rshares456,475,340,261
author_curate_reward""
vote details (8)
@arcange ·
Yep, this limit was when reputation was introduced. Post udated!
properties (22)
authorarcange
permlinkre-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t153716822z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:37:18
last_update2017-06-10 15:37:18
depth2
children5
last_payout2017-06-17 15:37:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,537,211
net_rshares0
@masterroshi ·
reputation has nothing to do with how much a downvote bot can effect your account. it is their SP that dictates that. they could have 0 reputation but 200k SP and kill your account
properties (22)
authormasterroshi
permlinkre-arcange-re-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180719t173825534z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-19 17:38:24
last_update2018-07-19 17:38:24
depth3
children4
last_payout2018-07-26 17:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation3,720,114,262,202
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id65,269,628
net_rshares0
@oneshot ·
The higher is 80 and the lowest is -20.
👍  
properties (23)
authoroneshot
permlinkre-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t154013976z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:40:15
last_update2017-06-10 15:40:15
depth2
children7
last_payout2017-06-17 15:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation2,618,161,935,301
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,537,364
net_rshares0
author_curate_reward""
vote details (1)
@jure ·
so my 25 is not that bad :)))
👍  
properties (23)
authorjure
permlinkre-oneshot-re-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180118t073505578z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-18 07:35:18
last_update2018-01-18 07:35:18
depth3
children6
last_payout2018-01-25 07:35:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation1,756,592,875
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,340,293
net_rshares0
author_curate_reward""
vote details (1)
@thegame68 ·
Yes really informative because even moat of the old people don't know how it works?
properties (22)
authorthegame68
permlinkre-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170623t161521232z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-23 16:15:18
last_update2017-06-23 16:15:18
depth2
children0
last_payout2017-06-30 16:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation487,468,828,266
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,790,400
net_rshares0
@ooeygooey ·
Thank you for sharing . How does vesting work?
properties (22)
authorooeygooey
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t210110079z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-15 21:01:09
last_update2017-06-15 21:01:09
depth1
children0
last_payout2017-06-22 21:01:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation90,299,431
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,952,104
net_rshares0
@paulcolumbus ·
Good stuff, thanks for the breakdown @arcange i enjoy the daily winners too!
properties (22)
authorpaulcolumbus
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t035024747z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"}
created2017-06-15 03:50:24
last_update2017-06-15 03:50:24
depth1
children0
last_payout2017-06-22 03:50:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation2,298,382,977,831
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,887,587
net_rshares0
@pdoren ·
Thanks, very clear and useful!
properties (22)
authorpdoren
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t121046659z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 12:10:48
last_update2017-06-12 12:10:48
depth1
children1
last_payout2017-06-19 12:10:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation542,089,355
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,653,811
net_rshares0
@arcange ·
Thanks!
properties (22)
authorarcange
permlinkre-pdoren-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t122936635z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 12:29:36
last_update2017-06-12 12:29:36
depth2
children0
last_payout2017-06-19 12:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,654,609
net_rshares0
@pompe72 ·
https://www.youtube.com/watch?v=5RAQXg0IdfI
properties (22)
authorpompe72
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t163552666z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://img.youtube.com/vi/5RAQXg0IdfI/0.jpg"],"links":["https://www.youtube.com/watch?v=5RAQXg0IdfI"],"app":"steemit/0.1"}
created2017-06-10 16:36:06
last_update2017-06-10 16:36:06
depth1
children0
last_payout2017-06-17 16:36:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation43,051,612,547,985
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,540,429
net_rshares0
@powderskier ·
Thanks for this @arcange. I've been enjoying a lot of content  from others that I follow with a +50 reputation and this post helps me understand how they got there. Good content, good following, and hard work! -Cheers
properties (22)
authorpowderskier
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180324t203913694z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"}
created2018-03-24 20:39:15
last_update2018-03-24 20:39:15
depth1
children0
last_payout2018-03-31 20:39:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation81,526,482,443
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,391,387
net_rshares0
@rahul708 ·
I am new user. And this information will help me a lot.
thank u for the useful information.
properties (22)
authorrahul708
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180622t043651004z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-22 04:36:54
last_update2018-06-22 04:36:54
depth1
children0
last_payout2018-06-29 04:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation1,626,649,621
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,726,511
net_rshares0
@scorp ·
Thank you for explaining the reputation system clearly, I now understand better why reputation score is falling.
properties (22)
authorscorp
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170929t141337538z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-29 14:13:39
last_update2017-09-29 14:13:39
depth1
children0
last_payout2017-10-06 14:13:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation2,138,741,425
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,282,886
net_rshares0
@scottcbusiness ·
Thanks so much will use this to explain to others!
👍  
properties (23)
authorscottcbusiness
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180125t210738268z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-25 21:07:36
last_update2018-01-25 21:07:36
depth1
children0
last_payout2018-02-01 21:07:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation345,965,879,159,191
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,295,500
net_rshares0
author_curate_reward""
vote details (1)
@senseier2 ·
This post is extremely helpful,   I have been working hard to become a helpful part of the community by sharing thoughts and ideas...but for some reason I see my reputation drops between visits.   It was 27, then 25, 27 again, and today 22.   I feel like I might have been missing something.   I appreciate the time you spent in sharing.
👍  
properties (23)
authorsenseier2
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170801t185425326z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-01 18:54:33
last_update2017-08-01 18:54:33
depth1
children0
last_payout2017-08-08 18:54:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length337
author_reputation35,300,360,877
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,456,901
net_rshares1,148,815,124
author_curate_reward""
vote details (1)
@shortsegments ·
Bookmark good resource. 
Thank you
properties (22)
authorshortsegments
permlinkpy3khx
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2019-09-19 21:17:57
last_update2019-09-19 21:17:57
depth1
children0
last_payout2019-09-26 21:17:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation668,349,658,957,369
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,742,737
net_rshares0
@teamsteem ·
Thank you. I'll check it out a bit later.
properties (22)
authorteamsteem
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t024846215z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 02:48:12
last_update2017-06-11 02:48:12
depth1
children0
last_payout2017-06-18 02:48:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation284,804,541,406,803
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,568,254
net_rshares0
@thenomadictales ·
@arcange Hi quite a valuable information. I've been reading few posts on reputation and have a small doubt on it. 
While it says more the like you get on your posts, the positive will be the impact. Does this mean using bot for those 50-60 upvotes makes sense? I realize they don't have much value so how will that go? Sorry if that sounded like a stupid query.
properties (22)
authorthenomadictales
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180227t134038646z
categorysteemit
json_metadata{"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"}
created2018-02-27 13:40:36
last_update2018-02-27 13:40:36
depth1
children0
last_payout2018-03-06 13:40:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length361
author_reputation3,117,654,789,376
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,871,741
net_rshares0
@unclehermit ·
$0.03
great overview.Makes it a lot clearer. Thank you. It took me ages to get from 51 to 51.7 though so goodness knows how long it will take to get to 53. 60+ seems pie in the sky at the moment!
👍  ,
properties (23)
authorunclehermit
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180130t190553687z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-30 19:05:54
last_update2018-01-30 19:05:54
depth1
children0
last_payout2018-02-06 19:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation1,800,859,417,632
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,640,390
net_rshares5,642,841,753
author_curate_reward""
vote details (2)
@valued-customer ·
Thanks for helping me to gain understanding.

I am curious as to why there is the manipulation of rewards for curation dependent on time, and wealth.  I see no good reason why an upvote of someone with a lot of sp three hours after a post should be valued any differently than an upvote from someone with little sp two hours after a post was made.

I can see why a post from someone with higher reputation might be valued more than someone with lower reputation, and do support this, as a means of preventing bad actors from harming good.

I am suspicious that varying the value of votes by the wealth of the voters permits gaming the system and potentiates a kind of economic censorship, in which the wealthy would have the ability to control the speech of the rest of the community.  

While there are benefits of wealth, I do not think censorship, or a form of economic blockade, which is exactly what is happening to Youtube presently, is at all desirable, tenable, or beneficial the Steemit in the long run.

Indeed, if this is actually the case, which I am still trying to ascertain, that kind of systemic inequity will render Steemit both a tool of repression, and highly vulnerable to competitive platforms that do create fair valuations of peoples contributions to the community.

Are you able to help me understand better this aspect of Steemit?  

Thanks!
👍  
properties (23)
authorvalued-customer
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t165112560z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 16:51:15
last_update2017-06-10 16:51:15
depth1
children0
last_payout2017-06-17 16:51:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,366
author_reputation353,749,965,427,186
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,541,221
net_rshares176,871,215
author_curate_reward""
vote details (1)
@wordup ·
Thanks for the post! After reading everything I felt like I just watched an episode of Black Mirror.
properties (22)
authorwordup
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180123t223321823z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-23 22:33:24
last_update2018-01-23 22:33:24
depth1
children0
last_payout2018-01-30 22:33:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation8,950,791,864
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,757,439
net_rshares0
@worldtopbest ·
good information , help me lots..
properties (22)
authorworldtopbest
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180609t032934118z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-09 03:30:51
last_update2018-06-09 03:30:51
depth1
children0
last_payout2018-06-16 03:30:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation749,743,918
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,936,897
net_rshares0
@wwwdotgotodotmu ·
Insightful, thank you.  I discovered this post from [this one](https://goo.gl/bDKM2L). Makes an interesting read.
properties (22)
authorwwwdotgotodotmu
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180621t080016813z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://goo.gl/bDKM2L"],"app":"steemit/0.1"}
created2018-06-21 08:00:24
last_update2018-06-21 08:00:24
depth1
children0
last_payout2018-06-28 08:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation88,937,238,363
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,605,654
net_rshares0
@zacharius ·
I was actually curious about this system and I didn't even know I was hehe.. thanks for such quality information. You've earned my measly follow ☺️
👍  
properties (23)
authorzacharius
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152611903z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 15:26:12
last_update2017-06-10 15:26:12
depth1
children1
last_payout2017-06-17 15:26:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation488,821,800,096
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,536,689
net_rshares0
author_curate_reward""
vote details (1)
@arcange ·
Thanks =)
properties (22)
authorarcange
permlinkre-zacharius-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160908887z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 16:09:09
last_update2017-06-11 16:09:09
depth2
children0
last_payout2017-06-18 16:09:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,146,606,601,469,178
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,601,758
net_rshares0
@zacharyknight ·
This post is quite mathematical, I LIKE IT!
Thank you for taking the time to explain reputation.
properties (22)
authorzacharyknight
permlinkre-arcange-what-is-steemit-reputation-and-how-does-it-work-20180111t120006146z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-11 12:00:03
last_update2018-01-11 12:00:03
depth1
children0
last_payout2018-01-18 12:00:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation449,543,665
root_title"What is Steemit reputation and how does it work?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,737,005
net_rshares0