<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://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**
author | arcange |
---|---|
permlink | what-is-steemit-reputation-and-how-does-it-work |
category | steemit |
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"} |
created | 2017-06-10 15:10:21 |
last_update | 2017-06-10 15:35:24 |
depth | 0 |
children | 140 |
last_payout | 2017-06-17 15:10:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 155.890 HBD |
curator_payout_value | 39.801 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,460 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,535,854 |
net_rshares | 14,162,405,575,369 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sandra | 0 | 22,580,765,324 | 70% | ||
ihashfury | 0 | 7,863,202,866 | 48.3% | ||
boy | 0 | 4,518,154,882 | 100% | ||
bue-witness | 0 | 5,509,126,870 | 100% | ||
bunny | 0 | 771,049,279 | 100% | ||
bue | 0 | 91,927,415,539 | 100% | ||
mini | 0 | 2,414,878,793 | 100% | ||
moon | 0 | 307,035,494 | 100% | ||
aizensou | 0 | 132,424,303,313 | 100% | ||
onceuponatime | 0 | 2,202,063,775,829 | 100% | ||
proctologic | 0 | 44,600,783,577 | 100% | ||
healthcare | 0 | 899,951,822 | 100% | ||
daniel.pan | 0 | 1,423,744,883 | 100% | ||
helen.tan | 0 | 411,592,199 | 100% | ||
noisy | 0 | 210,098,700,138 | 100% | ||
teamsteem | 0 | 1,762,597,596,952 | 41% | ||
pal | 0 | 7,651,807,714 | 0.3% | ||
lola-carola | 0 | 475,507,206 | 20% | ||
midnas-howler | 0 | 9,660,930,504 | 20% | ||
applecrisp | 0 | 54,128,500 | 25% | ||
dahaz159 | 0 | 298,071,280 | 41% | ||
trogdor | 0 | 12,404,012,763 | 10% | ||
g-dubs | 0 | 12,639,938,421 | 100% | ||
sean-king | 0 | 1,629,637,319,264 | 100% | ||
acassity | 0 | 14,542,501,093 | 100% | ||
michaellamden68 | 0 | 3,223,972,494 | 100% | ||
ydm6669 | 0 | 4,233,331,613 | 100% | ||
lauralemons | 0 | 1,209,230,587 | 41% | ||
roelandp | 0 | 1,184,780,465,538 | 100% | ||
joshbreslauer | 0 | 264,454,003,277 | 70% | ||
hitmeasap | 0 | 1,598,247,344 | 41% | ||
prot | 0 | 247,544,204 | 100% | ||
rxhector | 0 | 2,996,556,934 | 100% | ||
ausbitbank | 0 | 2,764,768,303,371 | 78% | ||
arcange | 0 | 92,561,769,551 | 100% | ||
demotruk | 0 | 935,121,369,563 | 100% | ||
btcbtcbtc20155 | 0 | 3,751,423,376 | 100% | ||
arian1 | 0 | 231,079,926 | 100% | ||
phenom | 0 | 0 | 100% | ||
heimindanger | 0 | 20,870,720,568 | 100% | ||
bola | 0 | 1,177,286,292 | 1% | ||
raphaelle | 0 | 22,642,548,400 | 100% | ||
happyphoenix | 0 | 1,591,508,972 | 32% | ||
craigslist | 0 | 608,950,228 | 100% | ||
dez1337 | 0 | 14,584,167,137 | 100% | ||
timcliff | 0 | 200,567,841,193 | 100% | ||
aleksandraz | 0 | 33,168,655,763 | 100% | ||
oflyhigh | 0 | 209,839,119,993 | 60% | ||
alchemage | 0 | 14,104,200,223 | 100% | ||
pompe72 | 0 | 625,720,060 | 100% | ||
lamech-m | 0 | 1,995,623,663 | 41% | ||
someguy123 | 0 | 54,009,767,126 | 41% | ||
sethlinson | 0 | 2,229,623,799 | 10% | ||
hilarski | 0 | 30,353,369,794 | 20% | ||
macaronikazoo | 0 | 0 | 100% | ||
themonetaryfew | 0 | 62,755,165,996 | 100% | ||
etcmike | 0 | 241,576,188,203 | 100% | ||
runridefly | 0 | 5,139,125,460 | 5% | ||
gbonikz | 0 | 62,052,210 | 100% | ||
aggroed | 0 | 7,433,404,542 | 10% | ||
kyusho | 0 | 42,792,597,272 | 100% | ||
lordoftruth | 0 | 204,704,257 | 100% | ||
abagendo | 0 | 85,298,006 | 100% | ||
nitrogen | 0 | 77,221,737 | 100% | ||
mariandavp | 0 | 82,221,346,091 | 100% | ||
abh12345 | 0 | 3,570,571,927 | 100% | ||
unlonely-soul | 0 | 8,645,362,756 | 100% | ||
freebornangel | 0 | 2,034,654,029 | 10% | ||
jang | 0 | 11,929,821,673 | 55% | ||
thegame | 0 | 242,921,893 | 4.09% | ||
steembets | 0 | 293,202,793 | 4.09% | ||
dylanhobalart | 0 | 8,303,278,500 | 100% | ||
siniceku | 0 | 1,647,551,780 | 100% | ||
so-guitarist | 0 | 717,682,696 | 100% | ||
mokluc | 0 | 1,148,438,493 | 50% | ||
judasp | 0 | 8,331,144,403 | 100% | ||
steemland.com | 0 | 245,795,578 | 4.09% | ||
jakeswingle16 | 0 | 176,871,215 | 100% | ||
selwi | 0 | 310,936,075 | 50% | ||
street.yoga | 0 | 0 | 100% | ||
steemprentice | 0 | 6,306,937,512 | 12.3% | ||
omarrium | 0 | 977,637,187 | 41% | ||
bigtakosensei | 0 | 2,089,084,777 | 100% | ||
wwwdotgotodotmu | 0 | 0 | 100% | ||
mdog | 0 | 163,782,914 | 100% | ||
kyle.anderson | 0 | 37,498,581,497 | 100% | ||
darth-azrael | 0 | 2,921,884,377 | 42% | ||
lukinsawyer | 0 | 354,885,329 | 41% | ||
da-dawn | 0 | 22,284,847,003 | 100% | ||
corvuscoraxx | 0 | 1,216,513,213 | 100% | ||
erikaflynn | 0 | 3,262,264,290 | 100% | ||
ramengirl | 0 | 110,679,366,416 | 40% | ||
borepstein | 0 | 0 | 100% | ||
rogeer | 0 | 3,636,654,756 | 100% | ||
wattacut | 0 | 132,102,346 | 100% | ||
tarazkp | 0 | 2,260,864,851 | 31.2% | ||
lenin-mccarthy | 0 | 3,717,985,775 | 100% | ||
fleur | 0 | 2,188,284,471 | 100% | ||
thereikiforest | 0 | 9,406,038,955 | 100% | ||
ofrbg | 0 | 0 | 1% | ||
juized | 0 | 497,099,439 | 100% | ||
centaurmystic | 0 | 884,345,920 | 100% | ||
olegst | 0 | 6,457,544,712 | 100% | ||
oneshot | 0 | 1,014,879,730 | 100% | ||
trafalgar | 0 | 1,072,230,911,869 | 20% | ||
crawfish37 | 0 | 1,050,579,391 | 100% | ||
frans10 | 0 | 379,783,709 | 100% | ||
corn113 | 0 | 48,614,466,764 | 50% | ||
mariacherries | 0 | 698,222,662 | 100% | ||
thomasgutierrez | 0 | 0 | 100% | ||
maniac2d | 0 | 388,248,164 | 100% | ||
steemitdiaries | 0 | 1,617,323,955 | 100% | ||
manycoolthings | 0 | 105,755,688 | 100% | ||
elevator09 | 0 | 297,154,822 | 100% | ||
awesomianist | 0 | 758,601,235 | 31.2% | ||
christpaquin | 0 | 0 | 100% | ||
btcmillionaire | 0 | 41,858,875,530 | 100% | ||
axelarator | 0 | 0 | 100% | ||
jesuscirino | 0 | 212,666,838 | 100% | ||
prameshtyagi | 0 | 1,756,324,010 | 6% | ||
arjane | 0 | 6,117,960,268 | 100% | ||
dreamiely | 0 | 1,134,146,654 | 100% | ||
honeychum | 0 | 0 | 100% | ||
cryptodog | 0 | 362,445,197 | 100% | ||
bloomberg215 | 0 | 184,142,482 | 100% | ||
jeff001 | 0 | 80,088,786 | 100% | ||
genics | 0 | 2,251,398,614 | 100% | ||
magick323 | 0 | 1,062,730,969 | 100% | ||
coinmaker | 0 | 52,358,340,346 | 100% | ||
jdc | 0 | 550,843,307 | 100% | ||
oldlineleader | 0 | 1,003,223,381 | 100% | ||
pdoren | 0 | 93,357,746 | 100% | ||
micayah | 0 | 0 | 100% | ||
makecents | 0 | 167,752,695 | 100% | ||
tutial | 0 | 361,229,402 | 100% | ||
ecuadorianin | 0 | 724,326,801 | 100% | ||
coolbowser | 0 | 6,314,790,059 | 100% | ||
marcusxman | 0 | 675,102,107 | 5% | ||
s4m0ht | 0 | 93,342,232 | 100% | ||
cryptopher | 0 | 138,874,582 | 100% | ||
kwahzee | 0 | 65,856,588 | 100% | ||
undergroundman | 0 | 126,971,223 | 100% | ||
joklahoma | 0 | 822,317,690 | 100% | ||
kate-m | 0 | 0 | 11% | ||
heigovannik | 0 | 0 | 100% | ||
nrajesh | 0 | 1,994,437,571 | 100% | ||
me-do | 0 | 1,581,667,428 | 100% | ||
emilniz | 0 | 487,837,818 | 100% | ||
jznsamuel | 0 | 1,225,309,354 | 100% | ||
erlik | 0 | 1,776,566,225 | 100% | ||
ribalinux | 0 | 2,192,000,326 | 100% | ||
callihappiness | 0 | 9,875,264,940 | 100% | ||
martin.the.chef | 0 | 2,216,081,418 | 100% | ||
laloelectrix | 0 | 818,298,268 | 100% | ||
valued-customer | 0 | 1,299,827,039 | 100% | ||
sneakgeekz | 0 | 3,686,317,803 | 25% | ||
bigram13 | 0 | 2,068,546,951 | 100% | ||
momerathalice | 0 | 639,094,120 | 41% | ||
dejavu | 0 | 679,443,561 | 100% | ||
maxdevalue | 0 | 50,744,400 | 100% | ||
ooeygooey | 0 | 726,172,708 | 100% | ||
zah | 0 | 51,780,000 | 100% | ||
carlagonz | 0 | 52,007,828 | 100% | ||
khamen | 0 | 0 | 25% | ||
dominikboecker | 0 | 51,780,000 | 100% | ||
theywillkillyou | 0 | 5,824,534,366 | 100% | ||
ercpok | 0 | 242,057,494 | 100% | ||
necio | 0 | 352,072,766 | 100% | ||
fairbee | 0 | 51,780,000 | 100% | ||
rooby | 0 | 51,780,000 | 100% | ||
dienhassan | 0 | 75,642,910 | 100% | ||
jungleebitcoin | 0 | 423,600,294 | 100% | ||
crypto-p | 0 | 121,112,594,721 | 100% | ||
muhamadali | 0 | 50,744,400 | 100% | ||
pandamama | 0 | 756,429,061 | 100% | ||
mxzn | 0 | 50,744,400 | 100% | ||
the-sassy-owl | 0 | 773,168,630 | 100% | ||
johnnwong | 0 | 1,182,777,324 | 100% | ||
go1dfish | 0 | 737,003,264 | 100% | ||
loooping | 0 | 50,744,400 | 100% | ||
genyakuc | 0 | 290,178,124 | 100% | ||
paulcolumbus | 0 | 489,042,137 | 100% | ||
ohaaland | 0 | 0 | 100% | ||
skaylap | 0 | 266,962,961 | 100% | ||
coeurdelion | 0 | 0 | 100% | ||
cherie | 0 | 272,766,044 | 100% | ||
thegame68 | 0 | 0 | 100% | ||
gear99 | 0 | 0 | 100% | ||
jure | 0 | 0 | 100% | ||
fahrullah | 0 | 0 | 100% | ||
littlejoeward | 0 | 0 | 100% | ||
senseier2 | 0 | 0 | 100% | ||
avance2010 | 0 | 0 | 100% | ||
rockz | 0 | 0 | 100% | ||
barber78 | 0 | 0 | 100% | ||
chrisdavidphoto | 0 | 0 | 100% | ||
martellus | 0 | 0 | 100% | ||
wilkas | 0 | 0 | 100% | ||
ukg | 0 | 0 | 100% | ||
nodsaibot | 0 | 0 | 100% | ||
akhairul | 0 | 0 | 100% | ||
svosse | 0 | 0 | 100% | ||
scorp | 0 | 0 | 100% | ||
peaceandwar | 0 | 0 | 100% | ||
cathysiub | 0 | 0 | 100% | ||
coolguy123 | 0 | 0 | 100% | ||
twirlspin | 0 | 0 | 100% | ||
iamericmorrison | 0 | 0 | 100% | ||
acdevan | 0 | 0 | 100% | ||
steemission | 0 | 0 | 100% | ||
harvz | 0 | 0 | 100% | ||
epearson | 0 | 0 | 100% | ||
nganine | 0 | 0 | 100% | ||
savta | 0 | 0 | 100% | ||
kychan1996 | 0 | 0 | 100% | ||
comsong | 0 | 0 | 100% | ||
davsner | 0 | 0 | 100% | ||
adi3255 | 0 | 0 | 100% | ||
porno.world | 0 | 0 | 100% | ||
spsoofbaf | 0 | 0 | 100% | ||
pyrophorus | 0 | 0 | 100% | ||
bala41288 | 0 | 0 | 100% | ||
mahy | 0 | 0 | 100% | ||
karlita | 0 | 0 | 100% | ||
powderskier | 0 | 0 | 100% | ||
pometon | 0 | 0 | 100% | ||
localyokel | 0 | 0 | 100% | ||
mikeymillions | 0 | 0 | 100% | ||
supercessang | 0 | 0 | 100% | ||
ewanderer | 0 | 0 | 100% | ||
komo | 0 | 0 | 100% | ||
wilma456 | 0 | 0 | 100% | ||
richatvns | 0 | 0 | 9% | ||
emc9876 | 0 | 0 | 100% | ||
biohackerpro | 0 | 0 | 100% | ||
scottcbusiness | 0 | 0 | 100% | ||
qelovt | 0 | 0 | 100% | ||
quoll | 0 | 0 | 100% | ||
dbennett | 0 | 0 | 100% | ||
koenau | 0 | 0 | 100% | ||
firelord | 0 | 0 | 100% | ||
aemelius | 0 | 0 | 100% | ||
lostdomium | 0 | 0 | 100% | ||
cryptoslicex | 0 | 0 | 100% | ||
conradt | 0 | 0 | 100% | ||
bizarro | 0 | 0 | 100% | ||
funshoo | 0 | 0 | 100% | ||
quickpixel | 0 | 0 | 100% | ||
takosdiary | 0 | 0 | 100% | ||
fernandosoder | 0 | 0 | 100% | ||
woad | 0 | 0 | 100% | ||
nwtdarren | 0 | 0 | 100% | ||
blockurator | 0 | 0 | 100% | ||
kongen | 0 | 0 | 100% | ||
cabalcoffers | 0 | 0 | 100% | ||
stem-explorers | 0 | 0 | 100% | ||
eurobae | 0 | 0 | 100% | ||
arkangelb | 0 | 0 | 100% | ||
thoughtfulonion | 0 | 0 | 100% | ||
fadertogrey | 0 | 0 | 0% | ||
politikhos | 0 | 0 | 100% | ||
thewinner | 0 | 0 | 100% | ||
csy | 0 | 0 | 100% | ||
ratel-ch | 0 | 0 | 100% | ||
stefan.travels | 0 | 0 | 100% | ||
nibupraju | 0 | 0 | 100% | ||
mdeecoded | 0 | 0 | 100% | ||
hagoromo-crypto | 0 | 0 | 100% | ||
rippythemechanic | 0 | 0 | 100% | ||
worldtopbest | 0 | 0 | 100% | ||
lochflush | 0 | 0 | 100% | ||
mrfringe | 0 | 0 | 100% | ||
samuel-jnr | 0 | 0 | 100% | ||
thoker54 | 0 | 0 | 100% | ||
djslurk | 0 | 0 | 100% |
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!
author | abh12345 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t151638339z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:16:42 |
last_update | 2017-06-10 15:16:42 |
depth | 1 |
children | 4 |
last_payout | 2017-06-17 15:16:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 237 |
author_reputation | 1,401,181,767,850,181 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,217 |
net_rshares | 0 |
Everyone has is own opinion on "crap post". Just ask yourself "Would I give this author some bucks for this?"
author | arcange |
---|---|
permlink | re-abh12345-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160759989z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 16:08:00 |
last_update | 2017-06-11 16:08:00 |
depth | 2 |
children | 3 |
last_payout | 2017-06-18 16:08:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,698 |
net_rshares | 0 |
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?
author | abh12345 |
---|---|
permlink | re-arcange-re-abh12345-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t163506125z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 16:35:06 |
last_update | 2017-06-11 16:35:06 |
depth | 3 |
children | 2 |
last_payout | 2017-06-18 16:35:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 1,401,181,767,850,181 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,603,115 |
net_rshares | 0 |
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.
author | anakinskywalker |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t155745275z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:57:45 |
last_update | 2017-06-10 15:57:45 |
depth | 1 |
children | 3 |
last_payout | 2017-06-17 15:57:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 303 |
author_reputation | 34,730,498,634 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,538,307 |
net_rshares | 0 |
http://i.cubeupload.com/mavCly.jpg
author | arcange |
---|---|
permlink | re-anakinskywalker-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160531668z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["http://i.cubeupload.com/mavCly.jpg"],"app":"steemit/0.1"} |
created | 2017-06-11 16:05:30 |
last_update | 2017-06-11 16:05:30 |
depth | 2 |
children | 2 |
last_payout | 2017-06-18 16:05:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,589 |
net_rshares | 266,962,512 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cherie | 0 | 266,962,512 | 100% |
i sure do master
author | anakinskywalker |
---|---|
permlink | re-arcange-re-anakinskywalker-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t161127237z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 16:11:27 |
last_update | 2017-06-11 16:11:27 |
depth | 3 |
children | 1 |
last_payout | 2017-06-18 16:11:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 34,730,498,634 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,885 |
net_rshares | 0 |
Good explanation
author | angelro |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20171011t104716832z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-10-11 10:47:18 |
last_update | 2017-10-11 10:47:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-18 10:47:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 5,222,523,003,970 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,382,402 |
net_rshares | 0 |
A useful and interesting read! Thanks for sharing!
author | arian1 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t021102322z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 02:11:03 |
last_update | 2017-06-11 02:11:03 |
depth | 1 |
children | 0 |
last_payout | 2017-06-18 02:11:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 49,419,754,215 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,566,976 |
net_rshares | 0 |
How does voting carefully on things effect my reputation score? What is the math behind that?
author | austinhopper |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180116t071413089z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-16 07:14:12 |
last_update | 2018-01-16 07:14:12 |
depth | 1 |
children | 1 |
last_payout | 2018-01-23 07:14:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 1,404,909,557,440 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,880,488 |
net_rshares | 0 |
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
author | joeyarnoldvn |
---|---|
permlink | re-austinhopper-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180424t172027018z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["http://steem.cool"],"app":"steemit/0.1"} |
created | 2018-04-24 17:20:27 |
last_update | 2018-04-24 17:20:27 |
depth | 2 |
children | 0 |
last_payout | 2018-05-01 17:20:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 812 |
author_reputation | 51,367,218,709,933 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,905,340 |
net_rshares | 0 |
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.
author | avance2010 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170801t193937820z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-08-01 19:39:39 |
last_update | 2017-08-01 19:39:39 |
depth | 1 |
children | 0 |
last_payout | 2017-08-08 19:39:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 368 |
author_reputation | 86,292,153,471 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,460,747 |
net_rshares | 0 |
Thank you for the quality info on this subject !
author | barber78 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180718t232727993z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-07-18 23:27:27 |
last_update | 2018-07-18 23:27:27 |
depth | 1 |
children | 0 |
last_payout | 2018-07-25 23:27:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 63,778,754,064,733 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,172,312 |
net_rshares | 0 |
Great post. Very informative. Thank you.
author | bloomberg215 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t002526562z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 00:24:18 |
last_update | 2017-06-11 00:24:18 |
depth | 1 |
children | 0 |
last_payout | 2017-06-18 00:24:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 2,112,647,900,726 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,562,996 |
net_rshares | 0 |
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?
author | bobbyboe |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170924t134032552z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-09-24 13:40:33 |
last_update | 2017-09-24 13:40:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-01 13:40:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,249 |
author_reputation | 2,597,193,520,252 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,795,370 |
net_rshares | 0 |
I'm new to this amazing platform and I'd like to thank you Sir for this very helpful information.
author | brianrets |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180218t154827749z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-18 15:50:36 |
last_update | 2018-02-18 15:50:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 15:50:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 3,205,056,151 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,547,324 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
Thanks I literally had no idea how reputation worked until I read this. How does someone flag a post? Why would they do that?
author | btcmillionaire |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170614t094856772z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-14 09:48:57 |
last_update | 2017-06-14 09:48:57 |
depth | 1 |
children | 1 |
last_payout | 2017-06-21 09:48:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.054 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 8,659,596,341,168 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,811,455 |
net_rshares | 41,858,875,530 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
btcmillionaire | 0 | 41,858,875,530 | 100% |
well. maybe if it's stuff like gore, illegal activities(like porn you really don't want to see). or a complete garbage post.
author | corason |
---|---|
permlink | re-btcmillionaire-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180404t224655022z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-04-04 22:46:57 |
last_update | 2018-04-04 22:46:57 |
depth | 2 |
children | 0 |
last_payout | 2018-04-11 22:46:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 21,145,173,393 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 48,377,055 |
net_rshares | 276,866,189 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
corason | 0 | 276,866,189 | 100% |
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
author | champok |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170704t171402633z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-04 17:14:03 |
last_update | 2017-07-04 17:14:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 17:14:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 6,158,770,443 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,300,737 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
author | cherie |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t093824837z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-15 09:38:24 |
last_update | 2017-06-15 09:38:24 |
depth | 1 |
children | 0 |
last_payout | 2017-06-22 09:38:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 750,139,561,914 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,906,037 |
net_rshares | 261,158,979 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cherie | 0 | 261,158,979 | 100% | ||
epearson | 0 | 0 | 100% |
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
author | cherie |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t094048647z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-15 09:40:48 |
last_update | 2017-06-15 09:40:48 |
depth | 1 |
children | 0 |
last_payout | 2017-06-22 09:40:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 213 |
author_reputation | 750,139,561,914 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,906,183 |
net_rshares | 261,158,979 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cherie | 0 | 261,158,979 | 100% |
i will vote for you as a witness arcange
author | cherie |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t094938070z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-15 09:49:36 |
last_update | 2017-06-15 09:49:36 |
depth | 1 |
children | 0 |
last_payout | 2017-06-22 09:49:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 750,139,561,914 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,906,610 |
net_rshares | 261,158,979 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cherie | 0 | 261,158,979 | 100% |
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!
author | coincussion |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180216t041522272z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-16 04:15:24 |
last_update | 2018-02-16 04:15:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 04:15:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 136 |
author_reputation | 179,326,507,838 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,906,433 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
Great works Thank you for explanation
author | coinmaker |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152237034z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:22:48 |
last_update | 2017-06-10 15:22:48 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 15:22:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 3,190,339,179,870 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,545 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
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.
author | coolbowser |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t112851478z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 11:28:51 |
last_update | 2017-06-11 11:28:51 |
depth | 1 |
children | 0 |
last_payout | 2017-06-18 11:28:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 212 |
author_reputation | 51,199,911,688,687 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,587,086 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
This is exactly what I wanted to know. Thanks for explaining it in an easy to understand way @arcange.
author | cryptodog |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152959271z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2017-06-10 15:30:03 |
last_update | 2017-06-10 15:30:03 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:30:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 867,897,048,877 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,885 |
net_rshares | 0 |
Glad it helped.
author | arcange |
---|---|
permlink | re-cryptodog-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160300041z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 16:03:00 |
last_update | 2017-06-11 16:03:00 |
depth | 2 |
children | 0 |
last_payout | 2017-06-18 16:03:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,464 |
net_rshares | 0 |
You put in good work on this one! Thank you!
author | cryptopher |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t161606693z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 16:16:06 |
last_update | 2017-06-10 16:16:06 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 16:16:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 252,978,213,989 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,539,322 |
net_rshares | 0 |
Thank you
author | arcange |
---|---|
permlink | re-cryptopher-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082123304z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:21:24 |
last_update | 2017-06-12 08:21:24 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:21:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,256 |
net_rshares | 140,396,877 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptopher | 0 | 140,396,877 | 100% |
Thanks for this. It let me know that I'm basically on track and gave me ways to improve. Yay!
author | dbennett |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180216t005525016z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-16 00:55:24 |
last_update | 2018-02-16 00:55:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 00:55:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 2,520,038,288,432 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,873,030 |
net_rshares | 0 |
Thanks, very infomative and helpful https://image.slidesharecdn.com/womanentrepreneurship-150420055825-conversion-gate02/95/woman-entrepreneurship-9-638.jpg?cb=1429511601
author | dejavu |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t161843448z |
category | steemit |
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"} |
created | 2017-06-10 16:18:45 |
last_update | 2017-06-10 16:19:57 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 16:18:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 432,165,049,403 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,539,453 |
net_rshares | 693,309,756 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dejavu | 0 | 693,309,756 | 100% |
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 :)
author | dez1337 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t161452026z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2017-06-10 16:14:51 |
last_update | 2017-06-10 16:14:51 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 16:14:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 159 |
author_reputation | 20,544,257,521,749 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,539,238 |
net_rshares | 0 |
Thank you
author | arcange |
---|---|
permlink | re-dez1337-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082058231z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:20:57 |
last_update | 2017-06-12 08:20:57 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:20:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,241 |
net_rshares | 14,586,600,606 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dez1337 | 0 | 14,586,600,606 | 100% |
Thanks for sharing and providing a fantastic post on Reputation, lots learned!
author | dominikboecker |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t011503993z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 01:15:03 |
last_update | 2017-06-11 01:15:03 |
depth | 1 |
children | 0 |
last_payout | 2017-06-18 01:15:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 1,162,499,213,359 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,564,912 |
net_rshares | 0 |
very nice thanks for sharing
author | drguru |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20171214t163032030z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-12-14 16:30:33 |
last_update | 2017-12-14 16:30:33 |
depth | 1 |
children | 0 |
last_payout | 2017-12-21 16:30:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 434,682,142,588 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,515,030 |
net_rshares | 0 |
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!
author | epearson |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180318t142241664z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-18 14:22:42 |
last_update | 2018-03-18 14:22:42 |
depth | 1 |
children | 0 |
last_payout | 2018-03-25 14:22:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 3,695,460,037,986 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,148,405 |
net_rshares | 0 |
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.
author | ercpok | ||||||
---|---|---|---|---|---|---|---|
permlink | re-arcange-2017611t1379302z | ||||||
category | steemit | ||||||
json_metadata | {"tags":"steemit","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-06-10 17:37:12 | ||||||
last_update | 2017-06-10 17:37:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-06-17 17:37:12 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 276 | ||||||
author_reputation | 663,024,938,116 | ||||||
root_title | "What is Steemit reputation and how does it work?" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 4,543,392 | ||||||
net_rshares | 2,474,424,738 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mysteem | 0 | 84,087,719 | 3% | ||
feruz | 0 | 1,519,332,117 | 3% | ||
esteemapp | 0 | 137,391,007 | 3% | ||
bounties | 0 | 172,440,311 | 3% | ||
steempoll | 0 | 166,988,555 | 3% | ||
tipping | 0 | 152,127,535 | 3% | ||
ercpok | 0 | 242,057,494 | 100% |
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.
author | erikaflynn |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t155546366z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:55:51 |
last_update | 2017-06-10 15:55:51 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:55:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 149 |
author_reputation | 12,282,595,621,854 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,538,186 |
net_rshares | 0 |
Thanks!
author | arcange |
---|---|
permlink | re-erikaflynn-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082015894z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:20:15 |
last_update | 2017-06-12 08:20:15 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:20:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,214 |
net_rshares | 0 |
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
author | etcmike |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t151757413z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:17:54 |
last_update | 2017-06-10 15:18:39 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.660 HBD |
curator_payout_value | 0.216 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 262 |
author_reputation | 534,676,096,189,306 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,276 |
net_rshares | 270,461,710,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
etcmike | 0 | 268,976,276,288 | 100% | ||
zacharius | 0 | 1,485,433,712 | 100% | ||
epearson | 0 | 0 | 100% |
Thanks you. A good week-end to you!
author | arcange |
---|---|
permlink | re-etcmike-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160138707z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 16:01:39 |
last_update | 2017-06-11 16:01:39 |
depth | 2 |
children | 0 |
last_payout | 2017-06-18 16:01:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.122 HBD |
curator_payout_value | 0.041 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,377 |
net_rshares | 53,785,885,548 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
etcmike | 0 | 53,785,885,548 | 20% |
You are rocking with posts Today. This is A must read one.
author | fairbee |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t151551197z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:16:03 |
last_update | 2017-06-10 15:16:03 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:16:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 142,126,803,055 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,185 |
net_rshares | 0 |
Thanks! =)
author | arcange |
---|---|
permlink | re-fairbee-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t153803185z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:38:06 |
last_update | 2017-06-10 15:38:06 |
depth | 2 |
children | 0 |
last_payout | 2017-06-17 15:38:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,537,251 |
net_rshares | 0 |
Thanks a lot for this explanation, clears up a lot.
author | flepmajoor |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t151919462z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:19:18 |
last_update | 2017-06-10 15:19:18 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:19:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 17,804,315,209 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,353 |
net_rshares | 0 |
Thanks you.
author | arcange |
---|---|
permlink | re-flepmajoor-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082324976z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:23:24 |
last_update | 2017-06-12 08:23:24 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:23:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,321 |
net_rshares | 0 |
Nice sharing, thank you give information about reputation. :)
author | happyphoenix |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t164322269z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 16:43:27 |
last_update | 2017-06-10 16:43:27 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 16:43:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 69,899,273,920,724 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,540,820 |
net_rshares | 0 |
nice! now I know.
author | harvz |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180109t194333265z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-09 19:42:42 |
last_update | 2018-01-09 19:42:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 19:42:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 22,319,281,689 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,324,963 |
net_rshares | 0 |
Thank you for sharing! So the first meaningful milestone would be having 60 reputation points yeah?
author | heigovannik |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20181001t185153850z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-10-01 18:51:54 |
last_update | 2018-10-01 18:51:54 |
depth | 1 |
children | 1 |
last_payout | 2018-10-08 18:51:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 315,723,758,624 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,431,439 |
net_rshares | 0 |
Not the first one, but a good one ;)
author | arcange |
---|---|
permlink | re-heigovannik-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20181002t235554439z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-10-02 23:55:54 |
last_update | 2018-10-02 23:55:54 |
depth | 2 |
children | 0 |
last_payout | 2018-10-09 23:55:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,510,505 |
net_rshares | 0 |
Great post! How did you find out about the minimum being -8 ? I thought it was possible to go as low as we want
author | heimindanger |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152134376z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:21:33 |
last_update | 2017-06-10 15:21:33 |
depth | 1 |
children | 2 |
last_payout | 2017-06-17 15:21:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.060 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | -16,507,408,909,111 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,481 |
net_rshares | 20,870,720,568 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
heimindanger | 0 | 20,870,720,568 | 100% | ||
epearson | 0 | 0 | 100% |
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.
author | demotruk |
---|---|
permlink | re-heimindanger-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152808736z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:28:09 |
last_update | 2017-06-10 15:28:09 |
depth | 2 |
children | 1 |
last_payout | 2017-06-17 15:28:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.346 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 177 |
author_reputation | 278,747,146,820,861 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,793 |
net_rshares | 127,713,520,892 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcange | 0 | 47,225,392,628 | 50% | ||
heimindanger | 0 | 20,870,720,568 | 100% | ||
themonetaryfew | 0 | 59,617,407,696 | 100% | ||
epearson | 0 | 0 | 100% |
You're right. I'm such an old-timer =) Post updated!
author | arcange |
---|---|
permlink | re-demotruk-re-heimindanger-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t153604334z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:36:06 |
last_update | 2017-06-10 15:36:06 |
depth | 3 |
children | 0 |
last_payout | 2017-06-17 15:36:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.910 HBD |
curator_payout_value | 0.090 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,537,166 |
net_rshares | 306,660,431,014 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcange | 0 | 94,965,661,793 | 100% | ||
demotruk | 0 | 190,824,048,653 | 20% | ||
heimindanger | 0 | 20,870,720,568 | 100% | ||
epearson | 0 | 0 | 100% |
This has finally cleared everything for me. Thank you!!!
author | ilyastarar |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20171226t162723649z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-12-26 16:27:27 |
last_update | 2017-12-26 16:27:27 |
depth | 1 |
children | 1 |
last_payout | 2018-01-02 16:27:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 22,538,822,918,099 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,363,611 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
But do you think reputation is still relevant? Anybody can buy reputation!
author | sathyasankar |
---|---|
permlink | re-ilyastarar-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180625t182254700z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-06-25 18:22:57 |
last_update | 2018-06-25 18:22:57 |
depth | 2 |
children | 0 |
last_payout | 2018-07-02 18:22:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 25,037,930,470,038 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,234,482 |
net_rshares | 0 |
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.
author | jakeswingle16 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t175558113z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2017-06-10 17:55:57 |
last_update | 2017-06-10 17:55:57 |
depth | 1 |
children | 2 |
last_payout | 2017-06-17 17:55:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,016 |
author_reputation | 4,064,219,823,027 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,544,331 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
Thanks for you feedback. PS: You should break up your answers with paragraphs. I nearly gave up reading it.
author | arcange |
---|---|
permlink | re-jakeswingle16-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082443618z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:24:42 |
last_update | 2017-06-12 08:24:42 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:24:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,367 |
net_rshares | 0 |
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.
author | joeyarnoldvn |
---|---|
permlink | re-jakeswingle16-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180424t171111510z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-04-24 17:11:12 |
last_update | 2018-04-24 17:11:12 |
depth | 2 |
children | 0 |
last_payout | 2018-05-01 17:11:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 186 |
author_reputation | 51,367,218,709,933 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,903,909 |
net_rshares | 1,939,229,526 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jakeswingle16 | 0 | 1,939,229,526 | 100% |
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.
author | joeyarnoldvn |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180424t170350766z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-04-24 17:03:51 |
last_update | 2018-04-24 17:03:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-01 17:03:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,198 |
author_reputation | 51,367,218,709,933 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,902,750 |
net_rshares | 0 |
Thank you for in detail explanation :)
author | jure |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180118t073426166z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-18 07:34:42 |
last_update | 2018-01-18 07:34:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-25 07:34:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 1,756,592,875 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,340,214 |
net_rshares | 0 |
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.
author | justoneopinion |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t163625809z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 16:36:27 |
last_update | 2017-06-10 16:36:27 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 16:36:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 386 |
author_reputation | 53,562,754,073 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,540,451 |
net_rshares | 1,476,698,254 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jakeswingle16 | 0 | 176,871,215 | 100% | ||
valued-customer | 0 | 1,299,827,039 | 100% |
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.
author | jznsamuel | ||||||
---|---|---|---|---|---|---|---|
permlink | re-arcange-2017610t22738559z | ||||||
category | steemit | ||||||
json_metadata | {"tags":"steemit","app":"esteem/1.4.4","format":"markdown+html"} | ||||||
created | 2017-06-10 16:37:48 | ||||||
last_update | 2017-06-10 16:37:48 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2017-06-17 16:37:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.018 HBD | ||||||
curator_payout_value | 0.082 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 166 | ||||||
author_reputation | 150,069,294,355,975 | ||||||
root_title | "What is Steemit reputation and how does it work?" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 4,540,533 | ||||||
net_rshares | 337,845,571,180 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xeldal | 0 | 126,987,123,953 | 0.3% | ||
carlos-cabeza | 0 | 155,497,278 | 3% | ||
dahaz159 | 0 | 149,035,640 | 3% | ||
good-karma | 0 | 98,719,595,033 | 3% | ||
arcange | 0 | 47,482,830,896 | 50% | ||
mysteem | 0 | 168,175,438 | 3% | ||
happyphoenix | 0 | 159,150,897 | 0.3% | ||
demo | 0 | 323,802,552 | 3% | ||
themonetaryfew | 0 | 59,617,407,696 | 100% | ||
feruz | 0 | 1,519,332,117 | 3% | ||
jakeswingle16 | 0 | 176,871,215 | 100% | ||
esteemapp | 0 | 274,782,015 | 3% | ||
reisman | 0 | 334,403,412 | 2.4% | ||
irawandedy | 0 | 326,749,645 | 3% | ||
gildar | 0 | 200,738,076 | 3% | ||
bounties | 0 | 344,880,623 | 3% | ||
steempoll | 0 | 333,977,111 | 3% | ||
tipping | 0 | 304,255,071 | 3% | ||
cherie | 0 | 266,962,512 | 100% | ||
iamericmorrison | 0 | 0 | 100% | ||
epearson | 0 | 0 | 100% | ||
motyst | 0 | 0 | 100% |
Thanks for your positive feedback!
author | arcange |
---|---|
permlink | re-jznsamuel-re-arcange-2017610t22738559z-20170611t155943715z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 15:59:45 |
last_update | 2017-06-11 15:59:45 |
depth | 2 |
children | 1 |
last_payout | 2017-06-18 15:59:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,232 |
net_rshares | 0 |
great
author | ayowrite |
---|---|
permlink | re-arcange-re-jznsamuel-re-arcange-2017610t22738559z-20180718t064417237z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-07-18 06:44:21 |
last_update | 2018-07-18 06:44:21 |
depth | 3 |
children | 0 |
last_payout | 2018-07-25 06:44:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 30,194,029 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,081,228 |
net_rshares | 0 |
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
author | kabir88 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180307t100426841z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-07 10:04:27 |
last_update | 2018-03-07 10:04:27 |
depth | 1 |
children | 0 |
last_payout | 2018-03-14 10:04:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 182 |
author_reputation | 9,762,676,591,926 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,835,209 |
net_rshares | 1,659,976,560 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% | ||
kabir88 | 0 | 1,659,976,560 | 10% |
Very informative. Just learned something new about Steemit!
author | karensuestudios |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t161648577z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-15 16:16:45 |
last_update | 2017-06-15 16:16:45 |
depth | 1 |
children | 0 |
last_payout | 2017-06-22 16:16:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 160,921,990,211,887 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,932,483 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
author | kate-m |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20171126t202055120z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-26 20:20:57 |
last_update | 2017-11-26 20:20:57 |
depth | 1 |
children | 0 |
last_payout | 2017-12-03 20:20:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 1,210,258,549,746 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,607,323 |
net_rshares | 23,034,946,609 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kate-m | 0 | 23,034,946,609 | 100% | ||
epearson | 0 | 0 | 100% |
Thank you a lot. This post really help me understanding what reputation on steemit means.
author | komo |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180112t082739568z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-12 08:27:39 |
last_update | 2018-01-12 08:27:39 |
depth | 1 |
children | 0 |
last_payout | 2018-01-19 08:27:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 120,219,363,947 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,951,660 |
net_rshares | 0 |
And where can we find the Reputation status???!! Follow me guys!
author | kongen |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180316t191503789z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-16 19:15:06 |
last_update | 2018-03-16 19:15:06 |
depth | 1 |
children | 0 |
last_payout | 2018-03-23 19:15:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | -80,612,357,479 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 44,815,600 |
net_rshares | 0 |
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.
author | kyusho |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t154144093z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:42:03 |
last_update | 2017-06-10 15:42:03 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 15:42:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 333 |
author_reputation | 77,157,400,538,407 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,537,467 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
Thank you for the tutorial. A lot of this is complicated. Thanks for breaking it down for minnows like me. Have a great weekend!
author | magick323 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152951426z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:29:36 |
last_update | 2017-06-10 15:29:36 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 2,064,080,220,529 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,873 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
Thank you!
author | arcange |
---|---|
permlink | re-magick323-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082347572z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:23:48 |
last_update | 2017-06-12 08:23:48 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:23:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,335 |
net_rshares | 0 |
https://steemitimages.com/0x0/https://steemitimages.com/DQmQhGVcEP6ifCdCYWzYYSzuT6qgbPcgGnXmZRVX8MebuH4/baby-cry.gif
author | magick323 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t171855362z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmQhGVcEP6ifCdCYWzYYSzuT6qgbPcgGnXmZRVX8MebuH4/baby-cry.gif"],"app":"steemit/0.1"} |
created | 2017-06-10 17:18:54 |
last_update | 2017-06-10 17:18:54 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 17:18:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 2,064,080,220,529 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,542,514 |
net_rshares | 266,962,512 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cherie | 0 | 266,962,512 | 100% |
AHAHAHAHAH
author | cherie |
---|---|
permlink | re-magick323-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t094144076z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-15 09:41:45 |
last_update | 2017-06-15 09:41:45 |
depth | 2 |
children | 0 |
last_payout | 2017-06-22 09:41:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 750,139,561,914 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,906,220 |
net_rshares | 266,962,512 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cherie | 0 | 266,962,512 | 100% |
@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!
author | magick323 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t212650348z |
category | steemit |
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"} |
created | 2017-06-10 21:26:36 |
last_update | 2017-06-10 21:26:36 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 21:26:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 338 |
author_reputation | 2,064,080,220,529 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,554,915 |
net_rshares | 0 |
Concise explanation of the reputation system, thanks!
author | makecents |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t153312790z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:33:00 |
last_update | 2017-06-10 15:33:00 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:33:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 171,463,604,019 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,537,030 |
net_rshares | 0 |
Thanks!
author | arcange |
---|---|
permlink | re-makecents-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160322740z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 16:03:24 |
last_update | 2017-06-11 16:03:24 |
depth | 2 |
children | 0 |
last_payout | 2017-06-18 16:03:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,492 |
net_rshares | 0 |
🍒 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?
author | mariacherries |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t172853140z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://media.giphy.com/media/3o6Zt2Cke3AYnDq2SA/giphy.gif"],"app":"steemit/0.1"} |
created | 2017-06-10 17:28:57 |
last_update | 2017-06-10 17:28:57 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 17:28:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 319 |
author_reputation | 1,951,647,327,700 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,542,994 |
net_rshares | 4,730,737,060 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ivoras | 0 | 0 | 100% | ||
evilevol | 0 | 537,765,357 | 100% | ||
lenin-mccarthy | 0 | 3,642,128,396 | 100% | ||
jdc | 0 | 550,843,307 | 100% |
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.
author | joeyarnoldvn |
---|---|
permlink | re-mariacherries-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180424t170823524z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-04-24 17:08:24 |
last_update | 2018-04-24 17:08:24 |
depth | 2 |
children | 0 |
last_payout | 2018-05-01 17:08:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 198 |
author_reputation | 51,367,218,709,933 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,903,469 |
net_rshares | 0 |
I am a Steemer since last August and I just found out how the reputation works! Lol. Thank you @arcange!!!
author | mariandavp |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t162636941z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2017-06-10 16:26:39 |
last_update | 2017-06-10 16:26:39 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 16:26:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 200,420,201,215,223 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,539,866 |
net_rshares | 0 |
Never too late to learn =)
author | arcange |
---|---|
permlink | re-mariandavp-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160821184z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 16:08:21 |
last_update | 2017-06-11 16:08:21 |
depth | 2 |
children | 0 |
last_payout | 2017-06-18 16:08:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.238 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,716 |
net_rshares | 77,193,534,137 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mariandavp | 0 | 77,193,534,137 | 100% |
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 :)
author | mbare |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20171128t140935484z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-28 14:09:33 |
last_update | 2017-11-28 14:09:33 |
depth | 1 |
children | 0 |
last_payout | 2017-12-05 14:09:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 309 |
author_reputation | 20,755,602,157 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,784,465 |
net_rshares | 0 |
This is exactly what i have been searching for, Well explain @arcange. Thanks so Much
author | mdeecoded |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180630t223654691z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2018-06-30 22:37:00 |
last_update | 2018-06-30 22:37:00 |
depth | 1 |
children | 1 |
last_payout | 2018-07-07 22:37:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 101,013,281,756 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,923,210 |
net_rshares | 0 |
Glad you found it and it has been useful to you
author | arcange |
---|---|
permlink | re-mdeecoded-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180701t044417705z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-07-01 04:44:21 |
last_update | 2018-07-01 04:44:33 |
depth | 2 |
children | 0 |
last_payout | 2018-07-08 04:44:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,949,573 |
net_rshares | 0 |
thanks for explaining the reputation system... now i understand that getting to 60 reputation is no easy task
author | mdog |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t154235572z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:42:39 |
last_update | 2017-06-10 15:42:39 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:42:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 536,054,640,041 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,537,492 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
It's not an easy task, but it is not an unreachable target ;)
author | arcange |
---|---|
permlink | re-mdog-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t081945571z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:19:45 |
last_update | 2017-06-12 08:19:45 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:19:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,193 |
net_rshares | 177,540,096 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mdog | 0 | 177,540,096 | 100% |
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.
author | mrfringe |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180814t195153208z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-08-14 19:51:57 |
last_update | 2018-08-14 19:51:57 |
depth | 1 |
children | 0 |
last_payout | 2018-08-21 19:51:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 368 |
author_reputation | 19,249,633,253,129 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,201,103 |
net_rshares | 5,452,380,487 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mrfringe | 0 | 5,452,380,487 | 100% |
Steemit it is Dark Mirror .
author | mtunit |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180320t174537828z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 17:45:39 |
last_update | 2018-03-20 17:45:39 |
depth | 1 |
children | 1 |
last_payout | 2018-03-27 17:45:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | -43,022,951,106 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,590,455 |
net_rshares | -593,091,103 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mirella | 0 | -593,091,103 | -100% |
Great Post . I think Im heading in the right direction . Thank you !
author | nakedverse |
---|---|
permlink | re-mtunit-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180404t143859419z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-04-04 14:39:03 |
last_update | 2018-04-04 14:39:03 |
depth | 2 |
children | 0 |
last_payout | 2018-04-11 14:39:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 74,733,924,352,720 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 48,311,421 |
net_rshares | 0 |
Great article explaining the importance of reputation. Thank you for this contribution to the community. However, I can't find the resteem handle ?
author | muhammadyasir |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170703t181544619z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 18:15:48 |
last_update | 2017-07-03 18:15:48 |
depth | 1 |
children | 3 |
last_payout | 2017-07-10 18:15:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 63,536,694,651 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,176,098 |
net_rshares | 0 |
Thanks for your comment. You can't resteem this post because it has been published "long time" ago.
author | arcange |
---|---|
permlink | re-muhammadyasir-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170703t182258161z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 18:22:57 |
last_update | 2017-07-03 18:22:57 |
depth | 2 |
children | 2 |
last_payout | 2017-07-10 18:22:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,176,873 |
net_rshares | 0 |
So, in how many days a post can be resteemed. Is it 7 days or more than that?
author | muhammadyasir |
---|---|
permlink | re-arcange-re-muhammadyasir-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170703t182609766z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-03 18:26:15 |
last_update | 2017-07-03 18:26:15 |
depth | 3 |
children | 1 |
last_payout | 2017-07-10 18:26:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 63,536,694,651 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,177,202 |
net_rshares | 0 |
Thank you very much, it was very useful for me.
author | mzalevsky |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180304t002705655z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-04 00:27:09 |
last_update | 2018-03-04 00:27:09 |
depth | 1 |
children | 0 |
last_payout | 2018-03-11 00:27:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 18,447,353,890 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,992,819 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
thz for explanation
author | nganine |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180720t095320084z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-07-20 09:53:21 |
last_update | 2018-07-20 09:53:21 |
depth | 1 |
children | 0 |
last_payout | 2018-07-27 09:53:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | -6,647,193,907 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,346,275 |
net_rshares | 0 |
This really was very useful, thanks so much for that explanation!
author | nikita.onopko |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170926t223524358z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-09-26 22:35:24 |
last_update | 2017-09-26 22:35:24 |
depth | 1 |
children | 0 |
last_payout | 2017-10-03 22:35:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 157,504,587,582 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,026,865 |
net_rshares | 0 |
Thanks for posting this, was a bit confused on how it related to my earnings or lack thereof lol
author | nodsaibot |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180130t233519298z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-30 23:36:45 |
last_update | 2018-01-30 23:36:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-06 23:36:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 475,951,454 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,695,036 |
net_rshares | 0 |
I'm investigating this issue. Thanks, the article is very helpful. Vote for you.
author | notmean8x |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180521t083558098z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-05-21 08:40:51 |
last_update | 2018-05-21 08:40:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-28 08:40:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 203,596,804 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,848,065 |
net_rshares | 0 |
Loved this and shared this in a comment as well. Very nicely written
author | nrajesh |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t232807117z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 23:28:03 |
last_update | 2017-06-10 23:28:03 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 23:28:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 741,060,530,571 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,560,785 |
net_rshares | 0 |
Thank you!
author | arcange |
---|---|
permlink | re-nrajesh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082644511z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:26:45 |
last_update | 2017-06-12 08:26:45 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:26:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,424 |
net_rshares | 0 |
Thank you for sharing those informations resteemed and followed :) !
author | odigetti |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t203921491z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 20:39:21 |
last_update | 2017-06-11 20:39:21 |
depth | 1 |
children | 1 |
last_payout | 2017-06-18 20:39:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 1,100,886,398,260 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,616,895 |
net_rshares | 0 |
Thank you
author | arcange |
---|---|
permlink | re-odigetti-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t082712261z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 08:27:12 |
last_update | 2017-06-12 08:27:12 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 08:27:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,645,441 |
net_rshares | 0 |
Very helpful information. But the lower reputation is not -8 I don't know the lowest one, but wang's is -16 ;)
author | oflyhigh |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152143418z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:21:45 |
last_update | 2017-06-10 15:21:45 |
depth | 1 |
children | 15 |
last_payout | 2017-06-17 15:21:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.162 HBD |
curator_payout_value | 0.381 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 6,258,033,889,525,626 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,493 |
net_rshares | 456,475,340,261 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcange | 0 | 47,482,830,896 | 50% | ||
oflyhigh | 0 | 346,237,343,369 | 100% | ||
themonetaryfew | 0 | 62,755,165,996 | 100% | ||
svosse | 0 | 0 | 100% | ||
pometon | 0 | 0 | 100% | ||
takosdiary | 0 | 0 | 100% | ||
how2s101 | 0 | 0 | 100% | ||
rippythemechanic | 0 | 0 | 100% |
Yep, this limit was when reputation was introduced. Post udated!
author | arcange |
---|---|
permlink | re-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t153716822z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:37:18 |
last_update | 2017-06-10 15:37:18 |
depth | 2 |
children | 5 |
last_payout | 2017-06-17 15:37:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,537,211 |
net_rshares | 0 |
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
author | masterroshi |
---|---|
permlink | re-arcange-re-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180719t173825534z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-07-19 17:38:24 |
last_update | 2018-07-19 17:38:24 |
depth | 3 |
children | 4 |
last_payout | 2018-07-26 17:38:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 180 |
author_reputation | 3,720,114,262,202 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 65,269,628 |
net_rshares | 0 |
The higher is 80 and the lowest is -20.
author | oneshot |
---|---|
permlink | re-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t154013976z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:40:15 |
last_update | 2017-06-10 15:40:15 |
depth | 2 |
children | 7 |
last_payout | 2017-06-17 15:40:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 2,618,161,935,301 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,537,364 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fernandosoder | 0 | 0 | 100% |
so my 25 is not that bad :)))
author | jure |
---|---|
permlink | re-oneshot-re-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180118t073505578z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-18 07:35:18 |
last_update | 2018-01-18 07:35:18 |
depth | 3 |
children | 6 |
last_payout | 2018-01-25 07:35:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 1,756,592,875 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,340,293 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fernandosoder | 0 | 0 | 100% |
Yes really informative because even moat of the old people don't know how it works?
author | thegame68 |
---|---|
permlink | re-oflyhigh-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170623t161521232z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-23 16:15:18 |
last_update | 2017-06-23 16:15:18 |
depth | 2 |
children | 0 |
last_payout | 2017-06-30 16:15:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 487,468,828,266 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,790,400 |
net_rshares | 0 |
Thank you for sharing . How does vesting work?
author | ooeygooey |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t210110079z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-15 21:01:09 |
last_update | 2017-06-15 21:01:09 |
depth | 1 |
children | 0 |
last_payout | 2017-06-22 21:01:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 90,299,431 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,952,104 |
net_rshares | 0 |
Good stuff, thanks for the breakdown @arcange i enjoy the daily winners too!
author | paulcolumbus |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170615t035024747z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2017-06-15 03:50:24 |
last_update | 2017-06-15 03:50:24 |
depth | 1 |
children | 0 |
last_payout | 2017-06-22 03:50:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 2,298,382,977,831 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,887,587 |
net_rshares | 0 |
Thanks, very clear and useful!
author | pdoren |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t121046659z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 12:10:48 |
last_update | 2017-06-12 12:10:48 |
depth | 1 |
children | 1 |
last_payout | 2017-06-19 12:10:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 542,089,355 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,653,811 |
net_rshares | 0 |
Thanks!
author | arcange |
---|---|
permlink | re-pdoren-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170612t122936635z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-12 12:29:36 |
last_update | 2017-06-12 12:29:36 |
depth | 2 |
children | 0 |
last_payout | 2017-06-19 12:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,654,609 |
net_rshares | 0 |
https://www.youtube.com/watch?v=5RAQXg0IdfI
author | pompe72 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t163552666z |
category | steemit |
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"} |
created | 2017-06-10 16:36:06 |
last_update | 2017-06-10 16:36:06 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 16:36:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 43,051,612,547,985 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,540,429 |
net_rshares | 0 |
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
author | powderskier |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180324t203913694z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2018-03-24 20:39:15 |
last_update | 2018-03-24 20:39:15 |
depth | 1 |
children | 0 |
last_payout | 2018-03-31 20:39:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 217 |
author_reputation | 81,526,482,443 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,391,387 |
net_rshares | 0 |
I am new user. And this information will help me a lot. thank u for the useful information.
author | rahul708 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180622t043651004z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-06-22 04:36:54 |
last_update | 2018-06-22 04:36:54 |
depth | 1 |
children | 0 |
last_payout | 2018-06-29 04:36:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 1,626,649,621 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 61,726,511 |
net_rshares | 0 |
Thank you for explaining the reputation system clearly, I now understand better why reputation score is falling.
author | scorp |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170929t141337538z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-09-29 14:13:39 |
last_update | 2017-09-29 14:13:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 14:13:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 2,138,741,425 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,282,886 |
net_rshares | 0 |
Thanks so much will use this to explain to others!
author | scottcbusiness |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180125t210738268z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-25 21:07:36 |
last_update | 2018-01-25 21:07:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-01 21:07:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 345,965,879,159,191 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,295,500 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
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.
author | senseier2 |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170801t185425326z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-08-01 18:54:33 |
last_update | 2017-08-01 18:54:33 |
depth | 1 |
children | 0 |
last_payout | 2017-08-08 18:54:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 337 |
author_reputation | 35,300,360,877 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,456,901 |
net_rshares | 1,148,815,124 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
senseier2 | 0 | 1,148,815,124 | 100% |
Bookmark good resource. Thank you
author | shortsegments |
---|---|
permlink | py3khx |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2019-09-19 21:17:57 |
last_update | 2019-09-19 21:17:57 |
depth | 1 |
children | 0 |
last_payout | 2019-09-26 21:17:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 668,349,658,957,369 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,742,737 |
net_rshares | 0 |
Thank you. I'll check it out a bit later.
author | teamsteem |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t024846215z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 02:48:12 |
last_update | 2017-06-11 02:48:12 |
depth | 1 |
children | 0 |
last_payout | 2017-06-18 02:48:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 284,804,541,406,803 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,568,254 |
net_rshares | 0 |
@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.
author | thenomadictales |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180227t134038646z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2018-02-27 13:40:36 |
last_update | 2018-02-27 13:40:36 |
depth | 1 |
children | 0 |
last_payout | 2018-03-06 13:40:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 361 |
author_reputation | 3,117,654,789,376 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,871,741 |
net_rshares | 0 |
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!
author | unclehermit |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180130t190553687z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-30 19:05:54 |
last_update | 2018-01-30 19:05:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-06 19:05:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 189 |
author_reputation | 1,800,859,417,632 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,640,390 |
net_rshares | 5,642,841,753 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
unclehermit | 0 | 5,642,841,753 | 100% | ||
epearson | 0 | 0 | 100% |
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!
author | valued-customer |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t165112560z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 16:51:15 |
last_update | 2017-06-10 16:51:15 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 16:51:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,366 |
author_reputation | 353,749,965,427,186 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,541,221 |
net_rshares | 176,871,215 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jakeswingle16 | 0 | 176,871,215 | 100% |
Thanks for the post! After reading everything I felt like I just watched an episode of Black Mirror.
author | wordup |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180123t223321823z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-23 22:33:24 |
last_update | 2018-01-23 22:33:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-30 22:33:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 8,950,791,864 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,757,439 |
net_rshares | 0 |
good information , help me lots..
author | worldtopbest |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180609t032934118z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-06-09 03:30:51 |
last_update | 2018-06-09 03:30:51 |
depth | 1 |
children | 0 |
last_payout | 2018-06-16 03:30:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 749,743,918 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,936,897 |
net_rshares | 0 |
Insightful, thank you. I discovered this post from [this one](https://goo.gl/bDKM2L). Makes an interesting read.
author | wwwdotgotodotmu |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180621t080016813z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["https://goo.gl/bDKM2L"],"app":"steemit/0.1"} |
created | 2018-06-21 08:00:24 |
last_update | 2018-06-21 08:00:24 |
depth | 1 |
children | 0 |
last_payout | 2018-06-28 08:00:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 88,937,238,363 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 61,605,654 |
net_rshares | 0 |
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 ☺️
author | zacharius |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170610t152611903z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-10 15:26:12 |
last_update | 2017-06-10 15:26:12 |
depth | 1 |
children | 1 |
last_payout | 2017-06-17 15:26:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 147 |
author_reputation | 488,821,800,096 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,536,689 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epearson | 0 | 0 | 100% |
Thanks =)
author | arcange |
---|---|
permlink | re-zacharius-re-arcange-what-is-steemit-reputation-and-how-does-it-work-20170611t160908887z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-06-11 16:09:09 |
last_update | 2017-06-11 16:09:09 |
depth | 2 |
children | 0 |
last_payout | 2017-06-18 16:09:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 1,146,606,601,469,178 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,601,758 |
net_rshares | 0 |
This post is quite mathematical, I LIKE IT! Thank you for taking the time to explain reputation.
author | zacharyknight |
---|---|
permlink | re-arcange-what-is-steemit-reputation-and-how-does-it-work-20180111t120006146z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-11 12:00:03 |
last_update | 2018-01-11 12:00:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-18 12:00:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 449,543,665 |
root_title | "What is Steemit reputation and how does it work?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,737,005 |
net_rshares | 0 |