So you're new to Steem and you've heard people talking about "curation" this and "rewards" that - but what's all this about the mysterious **Voting Power?** Apparently you lose it if you vote too much, but then you get it back, and you can look it up on [Steemstats](https://steemstats.com) and [Steemd.com](http://steemd.com/@biophil), but **how does it actually work?** ## The Basics Think of your voting power as a big tank of water. Every time you vote, a valve at the bottom of the tank pops open and squirts out some power. The fuller the tank, the more power squirts out the valve. The amount of power that squirts out the valve is one of the things that determines how powerful your vote is. (The other is your Steem Power, which you can look up in your wallet and is a completely separate thing.) <center>  </center> If you vote and vote and vote without stopping, it's like leaving the valve open, and it won't take long before your tank is empty. Fortunately for you, there is a steady drip of power coming back into your tank! This drip refills your tank at the same rate, always, no matter what. What happens to the drip if your tank is full? The drip gets wasted! Think of it like the tank just overflows if it's full; all that voting power just dripping down the sides going to no purpose. ## The Summary #### How voting power works: * Your account has a number between 0 and 100 called "voting power." * When you vote for a post, slightly more than a 200th of that voting power gets "spent" on your vote. * Your voting power regenerates over time at a fixed rate of about 1 point every 100 minutes (to be precise, it would grow from 0 to 100 in exactly one week). #### How to vote optimally: * In general, you should never vote *less* than about 27 times per day. If you do vote less, you're letting your voting power go to waste (because your "tank" is full some of that time, and the "drip" is spilling over the brim). * **Surprising news: if you want to maximize your *total* influence, it doesn't matter how much you vote**, as long as you vote more than about 27 times per day. Your *total* influence is the same whether you vote 1000 times per day or 27. This is because of the constant drip of voting power filling your tank. * **However, The more you vote, the less *each* of your votes is worth.** So you could vote 1000 times per day, but each of those votes wouldn't be worth very much. Your *total* influence would be optimal, but your *influence per vote* would be very low. ## The Details (with formulas, code references, and general jolliness!) Down to brass tacks. Here is the complete formula for voting power (if you don't want to parse this formula yourself, I'll walk you through it in a minute): <center>  </center> where my variables are (times are given in seconds, powers are numbers between 0 and 100) * *T* is the time since your last vote * *Tw* is the number of seconds in a week (604800) * *p* is your voting power right after you *last* clicked "vote" * *p+* is your voting power the moment *after* you click "vote" this time * *w* is the weight of your vote, between 0 and 1 (for users with more than 100 Million Vests, or about 30,000 SP) **If you're just a regular Joe like me (with less than 30,000 SP) and you don't get to set your vote weight,** the formula simplifies to this because *w=1*: <center>  </center> **Let me walk you through this.** * *100T/Tw* is the amount of power that has regenerated *since your last vote.* Note that this is constant, and doesn't depend on *p*. * *(p+100T/Tw)* is thus the amount of power you have *right before you vote.* * (199/200) comes from the fact that a 200th of your power gets used each time you vote; thus, right after you vote, you have 199/200 of your original power left. * The last term, 1/100, serves no useful purpose that I can find. It makes it so that every time you vote, *just a little bit more* than a 200th of your voting power gets used, which makes things go from simple and intuitive to complex and weird. For no reason. Bug your favorite dev to get rid of the 1/100. In fact, I may just go put in a pull request myself to get this fixed. **So how much is each vote worth?** The formula for how much power gets applied to each vote is this: <center>  </center> **If we didn't have that silly 1/100**, the answer would be "exactly a 200th of your voting power gets applied to each vote." ## The Code Here is a list of code references for each of the components of this: * [steem_evaluator.cpp #876](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L876) regenerated power, *(T/Tw)* * [steem_evaluator.cpp #877](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L877) available power, *(p+T/Tw)* * [steem_evaluator.cpp #881](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L881) multiplied by weight * [steem_evaluator.cpp #882](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L882) used power, the 200th, and the 1/100 * [steem_evaluator.cpp #919](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L919) voting power update ## The Story A month ago I posted [this question](https://steemit.com/steem/@biophil/question-what-is-the-formula-for-voting-power-decay-and-regeneration) about voting power, and got exactly 0 replies. So since I really wanted to know, and nobody would tell me, I ran on over to github, grabbed the Steem source code, and over the course of a pair of international flights for my trip to the [Netherlands](https://steemit.com/photography/@biophil/maastricht), I figured it out. I freaking figured it out. (You should be pretty impressed with me, because I don't actually speak C++. So I was wading through mostly-uncommented code in a language I don't even know...) ## About Me I'm [Philip N. Brown](http://ece.ucsb.edu/~pnbrown), a PhD student in electrical engineering at UCSB. I'm the author of the popular [Game Theory of Steem](https://steemit.com/steem/@biophil/class-war-on-steem-the-game-theory-of-steem-part-7) series, and currently I'm Editor-In-Chief of the [Lost Content Digest](https://steemit.com/lostcontent-digest/@biophil/lost-content-digest-4-all-proceeds-go-to-featured-authors). Follow me if you enjoy my work! ------ [Edit note: My original formulas had an error that I have since corrected. The *100T/Tw* used to be *T/Tw*; the problem was a units mismatch. I have *p* in units of percentage points, but *T/Tw* is a fraction between 0 and 1. To make sure we're adding like units, I needed to multiply the *T/Tw* by 100.]
author | biophil |
---|---|
permlink | the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references |
category | steem-help |
json_metadata | {"tags":["steem-help","education","mathematics","steem","voting"],"image":["https://ipfs.pics/ipfs/QmQ9nSfaCW19yJ9VkbrAUpMedhnyutdAupCvZF3K8TdVtV","https://ipfs.pics/ipfs/QmRiHNQomQETershrMuhA98Hc8YKJiq8iUzwLXm6XoyXBc","https://ipfs.pics/ipfs/QmVwAdtGXewxFr9HvPrku92MYQZ8bwpDe4EGc5zBA36nhy","https://ipfs.pics/ipfs/Qmax2C4pV287GMTaiSgpJWJUoPMQHnCGfiViwYe4cw23Cc"],"links":["https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L876"]} |
created | 2016-08-26 16:08:03 |
last_update | 2016-08-26 23:58:39 |
depth | 0 |
children | 45 |
last_payout | 2016-09-26 19:52:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 401.100 HBD |
curator_payout_value | 111.284 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,972 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 999,707 |
net_rshares | 62,704,614,127,251 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dantheman | 0 | 15,995,881,724,808 | 55% | ||
smooth | 0 | 26,955,380,692,395 | 100% | ||
pharesim | 0 | 8,264,561,459,531 | 100% | ||
boy | 0 | 2,476,299,074 | 100% | ||
bue-witness | 0 | 3,005,934,233 | 100% | ||
bunny | 0 | 557,365,219 | 100% | ||
bue | 0 | 42,788,549,501 | 100% | ||
mini | 0 | 1,327,197,588 | 100% | ||
moon | 0 | 170,849,766 | 100% | ||
smooth.witness | 0 | 4,721,973,907,795 | 100% | ||
healthcare | 0 | 497,735,355 | 100% | ||
daniel.pan | 0 | 766,313,784 | 100% | ||
helen.tan | 0 | 230,380,875 | 100% | ||
noisy | 0 | 51,661,722,933 | 100% | ||
nastrom | 0 | 4,466,611,814 | 100% | ||
max-infeld | 0 | 17,124,023,921 | 100% | ||
ninzacode | 0 | 20,568,579,908 | 100% | ||
jademont | 0 | 12,951,094,430 | 100% | ||
eeks | 0 | 562,893,461,048 | 100% | ||
hipster | 0 | 973,627,142,162 | 100% | ||
georgedonnelly | 0 | 15,545,447,216 | 100% | ||
james-show | 0 | 31,569,499,182 | 100% | ||
teamsteem | 0 | 333,310,096,448 | 100% | ||
bbqbear | 0 | 123,597,132,127 | 100% | ||
cian.dafe | 0 | 12,319,003,485 | 100% | ||
kevinwong | 0 | 540,448,825,936 | 100% | ||
murh | 0 | 2,500,664,263 | 33.01% | ||
btcturbo | 0 | 17,719,059,069 | 100% | ||
justtryme90 | 0 | 39,178,573,887 | 100% | ||
drinkzya | 0 | 31,826,587,984 | 100% | ||
hisnameisolllie | 0 | 279,968,879,838 | 100% | ||
juanmiguelsalas | 0 | 50,071,586,172 | 100% | ||
sunnyray | 0 | 861,607,685 | 100% | ||
kenny-crane | 0 | 114,139,938,977 | 100% | ||
samether | 0 | 14,063,553,648 | 100% | ||
fjccoin | 0 | 1,377,786,639 | 100% | ||
caster | 0 | 1,477,735,814 | 100% | ||
schro | 0 | 138,147,938,526 | 100% | ||
thedashguy | 0 | 173,366,946,210 | 100% | ||
tocode | 0 | 12,465,988,113 | 100% | ||
knopki | 0 | 294,114,011 | 100% | ||
ericvancewalton | 0 | 166,806,131,505 | 100% | ||
dennygalindo | 0 | 4,739,230,152 | 100% | ||
robrigo | 0 | 106,580,236,472 | 100% | ||
mindover | 0 | 18,635,639,815 | 100% | ||
steemswede | 0 | 168,330,472 | 100% | ||
sonatagreen | 0 | 333,120,989 | 100% | ||
slowwalker | 0 | 175,872,289,050 | 30% | ||
conspiracy-guy | 0 | 103,881,772,981 | 100% | ||
ghozia | 0 | 62,798,045 | 100% | ||
strangerarray | 0 | 25,106,539,251 | 100% | ||
ausbitbank | 0 | 17,532,035,255 | 100% | ||
akareyon | 0 | 19,779,698,386 | 100% | ||
fulltimegeek | 0 | 18,207,383,895 | 100% | ||
cryptobarry | 0 | 18,710,152,507 | 100% | ||
paco | 0 | 89,907,059,674 | 100% | ||
biophil | 0 | 34,821,625,709 | 100% | ||
igster | 0 | 25,413,391,818 | 100% | ||
pkattera | 0 | 82,570,883,439 | 100% | ||
stephencurry | 0 | 84,027,489,428 | 100% | ||
grolelo | 0 | 16,689,323,413 | 100% | ||
poseidon | 0 | 4,392,521,170 | 100% | ||
smolalit | 0 | 5,479,227,986 | 100% | ||
bola | 0 | 1,617,073,654 | 100% | ||
deanliu | 0 | 20,824,001,034 | 100% | ||
james212 | 0 | 974,746,955,400 | 100% | ||
lostnuggett | 0 | 1,638,089,237 | 100% | ||
aleco | 0 | 1,235,578,732 | 100% | ||
justbc | 0 | 15,807,283,665 | 100% | ||
quigua | 0 | 470,415,558 | 100% | ||
team-leibniz | 0 | 23,814,188,555 | 100% | ||
fatboy | 0 | 35,557,628,112 | 100% | ||
ace108 | 0 | 865,721,655 | 100% | ||
logic | 0 | 5,901,563,725 | 100% | ||
remlaps | 0 | 957,837,035 | 100% | ||
steemit2000 | 0 | 112,259,110 | 100% | ||
solidgold | 0 | 25,983,956,519 | 100% | ||
nicoleta | 0 | 73,717,403 | 100% | ||
pulpably | 0 | 174,572,682 | 100% | ||
pakisnxt | 0 | 560,780,046 | 100% | ||
lomomo | 0 | 1,255,395,472 | 100% | ||
rawnetics | 0 | 22,833,223,989 | 100% | ||
timcliff | 0 | 2,365,372,534 | 100% | ||
toxic | 0 | 502,258,189,989 | 100% | ||
kurtbeil | 0 | 6,909,336,703 | 100% | ||
zionuziriel | 0 | 60,499,081 | 100% | ||
cmorton | 0 | 3,580,202,162 | 100% | ||
virtashare | 0 | 3,686,589,753 | 100% | ||
envi.sage | 0 | 82,599,900 | 100% | ||
bledarus | 0 | 2,471,354,592 | 100% | ||
philipnbrown | 0 | 61,618,178 | 100% | ||
kyriacos | 0 | 9,591,642,196 | 100% | ||
pompe72 | 0 | 62,928,068 | 100% | ||
lemouth | 0 | 4,399,048,508 | 100% | ||
anotherjoe | 0 | 39,209,419,816 | 100% | ||
mrgrey | 0 | 7,704,678,262 | 100% | ||
cinderphoenix | 0 | 102,334,329 | 100% | ||
vasilii | 0 | 54,856,004 | 100% | ||
erroneous-logic | 0 | 1,865,619,079 | 100% | ||
steemtime | 0 | 56,051,653 | 100% | ||
sethlinson | 0 | 6,272,827,550 | 100% | ||
craigwilliamz | 0 | 6,566,647,813 | 100% | ||
roland.haynes | 0 | 1,466,426,713 | 100% | ||
oldtimer | 0 | 234,352,399,490 | 100% | ||
daut44 | 0 | 19,757,679,012 | 100% | ||
steemitpatina | 0 | 8,709,802,940 | 100% | ||
mattclarke | 0 | 3,599,208,017 | 100% | ||
dreamwalk | 0 | 57,151,743 | 100% | ||
darkflame | 0 | 0 | 100% | ||
shenanigator | 0 | 71,176,066,198 | 100% | ||
cutie | 0 | 3,161,663,480 | 100% | ||
nickawesome101 | 0 | 55,321,718 | 100% | ||
jjepic | 0 | 447,777,754 | 100% | ||
onionweb | 0 | 56,549,691 | 100% | ||
team101 | 0 | 57,413,935 | 100% | ||
carlyle | 0 | 1,531,312,775 | 100% | ||
norene | 0 | 60,127,610 | 100% | ||
dumbclubs | 0 | 534,937,690 | 100% | ||
kosmatimuc | 0 | 51,207,552 | 100% | ||
ruscion | 0 | 89,829,764 | 100% | ||
bmann | 0 | 66,079,034 | 100% | ||
chuckleberry | 0 | 51,445,853 | 100% | ||
goose | 0 | 7,994,936,205 | 100% | ||
venusdehilo | 0 | 492,586,535 | 100% | ||
plotbot2015 | 0 | 57,655,878 | 100% | ||
knight-angel | 0 | 55,007,448 | 100% | ||
burnin | 0 | 4,214,688,588 | 100% | ||
bitcoinparadise | 0 | 137,350,420 | 100% | ||
littenti | 0 | 54,450,502 | 100% | ||
steempowerwhale | 0 | 1,939,472,644 | 100% | ||
themattsnyder | 0 | 53,089,656 | 100% | ||
roman-dikanev | 0 | 51,873,348 | 100% | ||
develcuy | 0 | 0 | 20% | ||
marquismiller | 0 | 53,479,285 | 100% | ||
caliman5899 | 0 | 50,932,088 | 100% | ||
borishaifa | 0 | 50,583,221 | 100% | ||
hickmanjos | 0 | 51,414,119 | 100% | ||
xauroragoddessx | 0 | 51,250,690 | 100% | ||
robotev | 0 | 1,270,740,913 | 100% | ||
stanleyfordyale | 0 | 0 | 100% | ||
exploretraveler | 0 | 23,939,473,237 | 100% | ||
x3q7r | 0 | 141,790,970 | 100% | ||
awispa | 0 | 0 | 100% | ||
davidflomed | 0 | 0 | 100% | ||
beeskee | 0 | 0 | 100% | ||
hammaraxx | 0 | 0 | 100% | ||
fingersik | 0 | 0 | 100% | ||
johnmontoya | 0 | 0 | 100% | ||
sallykwitt | 0 | 0 | 100% | ||
quicktyson | 0 | 0 | 100% | ||
mike29 | 0 | 0 | 100% | ||
binarylawyer | 0 | 0 | 100% | ||
artegogo | 0 | 0 | 100% | ||
tousignant | 0 | 0 | 100% | ||
dbddv01 | 0 | 0 | 100% | ||
appelsin | 0 | 0 | 100% | ||
pauladamski | 0 | 0 | 100% | ||
bbilgin | 0 | 0 | 100% | ||
sphericalart | 0 | 0 | 100% | ||
crispier-bacon | 0 | 0 | 100% | ||
otong316 | 0 | 0 | 100% | ||
tormovies | 0 | 0 | 100% |
My head hurts... But I'm not a regular Joe. I'm Another Joe. :)
author | anotherjoe |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t190002611z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 19:00:12 |
last_update | 2016-08-26 19:00:12 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.123 HBD |
curator_payout_value | 0.038 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 40,326,779,382,210 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,002,143 |
net_rshares | 307,965,280,651 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 31,339,689,840 | 100% | ||
anotherjoe | 0 | 42,165,615,773 | 100% | ||
oldtimer | 0 | 234,352,399,490 | 100% | ||
nickawesome101 | 0 | 54,192,703 | 100% | ||
littenti | 0 | 53,382,845 | 100% |
When I first started, I got so excited and was just upvoting everything lol. It's posts like these that helped me learn how to use this site. Thank you @biophil
author | bitcoinparadise |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t001708724z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"users":["biophil"]} |
created | 2016-08-27 00:17:06 |
last_update | 2016-08-27 00:17:06 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 160 |
author_reputation | 52,935,636,369,082 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,006,393 |
net_rshares | 0 |
Thank you @biophil, I understand now.
author | bola |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t183909033z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"users":["biophil"]} |
created | 2016-08-26 18:39:27 |
last_update | 2016-08-26 18:39:27 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 37 |
author_reputation | 51,245,914,991,562 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,838 |
net_rshares | 0 |
Too many figure for a beginner (((
author | borishaifa |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t163645465z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 16:36:12 |
last_update | 2016-08-26 16:36:12 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 34 |
author_reputation | 15,732,096,291,861 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,000,052 |
net_rshares | 0 |
Strange that you, @biophil, or anyone else for that matter, realizes that the -1/100 term guarantees that the vote power curve actually hits the x axis, making it cero at some point if a person votes too many times too fast, and so limiting the actual number of times you can vote (some 66 times in a row if you don't wait any time), and when voting power is cero, then the system will not allow you to vote any more, until you get your voting power back through waiting time. If the term weren't there the voting power would be ever closer to cero, but never actually cero. A serial voter could then vote an infinite number of times to the tone of once every three seconds (another system limit, you can't vote more than once every three seconds) even though his vote power would be ever tinier.
author | catsmart |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160829t231516292z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"users":["biophil"]} |
created | 2016-08-29 23:15:15 |
last_update | 2016-08-29 23:19:27 |
depth | 1 |
children | 1 |
last_payout | 2016-09-26 19:52: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 | 797 |
author_reputation | 10,393,969,130,947 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,048,470 |
net_rshares | 109,755,884 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
catsmart | 0 | 54,899,020 | 100% | ||
danbar | 0 | 54,856,864 | 100% |
I'm guessing that's what the devs had in mind, but they weren't thinking about it correctly. I encourage you to work out the math with and without the 1/100 and see if your *total vote influence* is higher in either case. You'll find that in both cases, your total influence is the same, and doesn't depend on how much you vote *at all.* (as long as you keep your voting power strictly below 100.) The whole point of this is that *your vote doesn't need to hit zero* for your voting power to be limited. It is limited by the rate that voting power "drips back into the tank," not by the fact that your power hits zero. Don't worry, I didn't get it the first time around either. But just remember: it doesn't matter how much you vote, how fast it decays, or anything. It only matters that the drip into the tank is constant.
author | biophil |
---|---|
permlink | re-catsmart-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160830t010428015z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-30 01:04:27 |
last_update | 2016-08-30 01:04:27 |
depth | 2 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 825 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,049,685 |
net_rshares | 0 |
nice post man. im looking for this and im impressed on how you solve or got it. i enjoy reading this.
author | crowtactic21 |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t121658897z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-27 12:30:57 |
last_update | 2016-08-27 12:30:57 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 102 |
author_reputation | 122,083,296,764 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,012,151 |
net_rshares | 0 |
Thank you this really helped me understand voting power. Upvoted!
author | exploretraveler |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160917t183557944z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-09-17 18:35:57 |
last_update | 2016-09-17 18:35:57 |
depth | 1 |
children | 1 |
last_payout | 2016-09-26 19:52: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 | 65 |
author_reputation | 194,809,188,791,591 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,278,784 |
net_rshares | 65,461,872,888 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 41,522,399,651 | 100% | ||
exploretraveler | 0 | 23,939,473,237 | 100% |
The numbers aren't quite right any more; the minimum number of votes is actually around 40, not 27. Otherwise it's essentially correct. Thanks!
author | biophil |
---|---|
permlink | re-exploretraveler-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160917t220335699z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-09-17 22:03:36 |
last_update | 2016-09-17 22:03:36 |
depth | 2 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 143 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,280,661 |
net_rshares | 66,760,728,929 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 40,708,234,952 | 100% | ||
exploretraveler | 0 | 26,052,493,977 | 100% |
Very good biophil. Excellent really! Pretty surprised to see you are in science/engineering, have always thought of you in some bla-bla field from your BTS days. Anyway thumbs up!!!!
author | james-show |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t172556225z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 17:26:00 |
last_update | 2016-08-26 17:26:00 |
depth | 1 |
children | 2 |
last_payout | 2016-09-26 19:52: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 | 182 |
author_reputation | 5,698,866,469,447 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,000,812 |
net_rshares | 29,141,306,150 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
james-show | 0 | 29,141,306,150 | 100% |
Thanks! Haha, I've got to ask what about me made you think that? and what's bla-bla?
author | biophil |
---|---|
permlink | re-james-show-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t173202142z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 17:32:03 |
last_update | 2016-08-26 17:32:03 |
depth | 2 |
children | 1 |
last_payout | 2016-09-26 19:52: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 | 84 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,000,883 |
net_rshares | 0 |
[hint] well if you know my bts moniker, you will know I consider most anything bullish overwhelming enthusiasm ... best regards tk
author | james-show |
---|---|
permlink | re-biophil-re-james-show-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t174410609z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 17:44:15 |
last_update | 2016-08-26 17:44:15 |
depth | 3 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 130 |
author_reputation | 5,698,866,469,447 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,050 |
net_rshares | 29,141,959,719 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
james-show | 0 | 29,141,959,719 | 100% |
Got lost once we got to the equations, so rubbish at maths! But the more reading from these kinds of posts the information slowly sinks in. Its difficult to find time to vote at least 27 times a day but we keep trying!
author | knight-angel |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t171522898z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 17:15:21 |
last_update | 2016-08-26 17:15:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 218 |
author_reputation | 11,500,046,828,479 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,000,629 |
net_rshares | 53,884,847 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
knight-angel | 0 | 53,884,847 | 100% |
@biophil Thank you for the detailed explanation
author | kyriacos |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t133423153z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"users":["biophil"]} |
created | 2016-08-27 13:34:24 |
last_update | 2016-08-27 13:34:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 48 |
author_reputation | 151,079,958,921,004 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,012,707 |
net_rshares | 0 |
Maybe you could make a post on curation rewards. I keep hearing things about voting early but not before thirty minutes have elapsed. I just don't vote a lot anymore.
author | leprechaun |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t181146695z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-27 18:11:54 |
last_update | 2016-08-27 18:11:54 |
depth | 1 |
children | 1 |
last_payout | 2016-09-26 19:52: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 | 168 |
author_reputation | 43,025,812,810,398 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,016,058 |
net_rshares | 0 |
Yeah, I've had a lot of requests for that. Curation rewards are very complicated, and there's no single formula for how they work. They're basically going to be a little different for each post, so I'm going to have to think long and hard about how to present them well. But I will at some point! If you're following me you should see it pop up in your feed sometime in the next few weeks. The basic story on voting power is that you can't do yourself any harm by voting, so if you don't dislike it too much, you might as well do it.
author | biophil |
---|---|
permlink | re-leprechaun-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t182224660z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-27 18:22:24 |
last_update | 2016-08-27 18:22:24 |
depth | 2 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 534 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,016,164 |
net_rshares | 0 |
I have just read your old introduction post. I can't reply there anymore, so I will just post it here ;-) " 'I'm particularly interested in characterizing and influencing user behavior in socio-technical systems' I bet that you have heard about The Venus Project and work of J. Fresco? :-) Btw, big wooooow for running ultra marathons. I'm preparing to run Spartan Race Super next week, for the first time but it is mere 15-18 km, so I am not even half marathon runner :-) "
author | logic |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t215018192z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 21:50:18 |
last_update | 2016-08-26 21:50:18 |
depth | 1 |
children | 3 |
last_payout | 2016-09-26 19:52: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 | 475 |
author_reputation | 92,052,875,413,650 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,004,698 |
net_rshares | 0 |
I hadn't heard of The Venus Project. Sounds interesting! The ultra was way beyond my abilities, and I barely finished it. But at least I finished it. :) I've been thinking I should write about it on here at some point. Good luck with the Spartan! That's one of those obstacle course races, right? I've always wanted to do one of those.
author | biophil |
---|---|
permlink | re-logic-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t002942352z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-27 00:29:42 |
last_update | 2016-08-27 00:29:42 |
depth | 2 |
children | 2 |
last_payout | 2016-09-26 19:52: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 | 336 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,006,527 |
net_rshares | 0 |
If you haven't heard about it then the best introduction would be reading the book "The Best That Money Can't Buy" (The Venus Project sells it on their website). Otherwise you can scratch a bit of the surface of the project by watching their recent documentary on YT "The Choice is Ours". Their documentaries are always free to watch. They don't sell them. https://www.youtube.com/watch?v=Yb5ivvcTvRQ You should write about it. I can't imagine someone running a marathon. It must take years to get to that form and mental perseverance. Forget about ultra marathons :-) I hardly run 15 km atm :-) Yes Spartan Race is an obstacle course. Mud run like :-)
author | logic |
---|---|
permlink | re-biophil-re-logic-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t013206465z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"links":["https://www.youtube.com/watch?v=Yb5ivvcTvRQ"]} |
created | 2016-08-27 01:32:09 |
last_update | 2016-08-27 01:32:09 |
depth | 3 |
children | 1 |
last_payout | 2016-09-26 19:52: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 | 655 |
author_reputation | 92,052,875,413,650 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,007,120 |
net_rshares | 0 |
Thank you for your contribution and efforts. I now see the light! 
author | marquismiller |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160828t044051796z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"image":["https://s11.postimg.org/7qc20aybn/download_5.png"]} |
created | 2016-08-28 04:40:51 |
last_update | 2016-08-28 04:40:51 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 125 |
author_reputation | 138,987,245,257 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,022,475 |
net_rshares | 0 |
Impressed, and followed!
author | onionweb |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160825t061511376z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 16:21:42 |
last_update | 2016-08-26 16:21:42 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 24 |
author_reputation | 3,706,650,400 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 999,868 |
net_rshares | 0 |
Thanks for that detailed explanation. Followed.
author | pakisnxt |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t163238942z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 16:32:39 |
last_update | 2016-08-26 16:32:39 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 47 |
author_reputation | 48,647,007,602 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 999,997 |
net_rshares | 0 |
Great breakdown, now I know more then I did 10 minutes ago, thanks :) Of to another Q&A
author | pauladamski |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20180814t220949372z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"app":"steemit/0.1"} |
created | 2018-08-14 22:09:48 |
last_update | 2018-08-14 22:09:48 |
depth | 1 |
children | 0 |
last_payout | 2018-08-21 22:09: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 | 87 |
author_reputation | 110,853,255,923 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 68,211,540 |
net_rshares | 0 |
Excellent. I understand more because of your cartoon!! Great to meet you @biophil. Following you and upvoted this post.
author | sallykwitt |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20170730t045000503z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"users":["biophil"],"app":"steemit/0.1"} |
created | 2017-07-30 04:50:03 |
last_update | 2017-07-30 04:50:03 |
depth | 1 |
children | 0 |
last_payout | 2017-08-06 04:50:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.255 HBD |
curator_payout_value | 0.084 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 139,328,483,437 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,185,841 |
net_rshares | 88,317,557,354 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 88,317,557,354 | 100% | ||
quicktyson | 0 | 0 | 100% | ||
binarylawyer | 0 | 0 | 100% |
Very nice post. I don't usually vote for steem-centric content any more but this is a topic that hasn't been covered very well and this is a very nice clearly explanation. I will be pointing to this post in the future when I get questions about how the voting power works.
author | smooth |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t182658800z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 18:26:57 |
last_update | 2016-08-26 18:26:57 |
depth | 1 |
children | 4 |
last_payout | 2016-09-26 19:52:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 272 |
author_reputation | 253,602,537,834,068 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,660 |
net_rshares | 92,883,435,954 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 17,532,035,255 | 100% | ||
shenanigator | 0 | 71,176,179,155 | 100% | ||
nickawesome101 | 0 | 54,192,703 | 100% | ||
burnin | 0 | 4,121,028,841 | 100% |
Thanks so much! From what I've found, it's one of the least-documented features of the whole system. I will probably put out at least one more of these on the specifics of the curation reward formula, which I think is equally mysterious.
author | biophil |
---|---|
permlink | re-smooth-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t183033400z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 18:30:36 |
last_update | 2016-08-26 18:30:36 |
depth | 2 |
children | 2 |
last_payout | 2016-09-26 19:52: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 | 237 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,709 |
net_rshares | 0 |
Please let me know when the curation post is ready as well.
author | shenanigator |
---|---|
permlink | re-biophil-re-smooth-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t184242323z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 18:42:36 |
last_update | 2016-08-26 18:42:36 |
depth | 3 |
children | 1 |
last_payout | 2016-09-26 19:52: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 | 59 |
author_reputation | 61,400,000,740,515 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,885 |
net_rshares | 25,983,956,519 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
solidgold | 0 | 25,983,956,519 | 100% |
Yes, I've been looking for something like this! I'll be linking to it in the Steemit FAQ I'm putting together. https://steemit.com/steemit/@shenanigator/official-steemit-faq-rough-draft-your-edits-are-needed
author | shenanigator |
---|---|
permlink | re-smooth-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t182937141z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"links":["https://steemit.com/steemit/@shenanigator/official-steemit-faq-rough-draft-your-edits-are-needed"]} |
created | 2016-08-26 18:29:33 |
last_update | 2016-08-26 18:29:33 |
depth | 2 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 207 |
author_reputation | 61,400,000,740,515 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,694 |
net_rshares | 32,089,005,729 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 32,035,942,040 | 100% | ||
nickawesome101 | 0 | 53,063,689 | 100% | ||
johnmontoya | 0 | 0 | 100% |
THANK you for presenting this in words before diving in the number-y part. I'd been wondering how it worked, and if there were an optimal number of votes... or even a number at which somehow I'd actually do a disservice by voting. I appreciate you shining a lantern into the black box.
author | steemitpatina |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t143022972z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-27 14:30:21 |
last_update | 2016-08-27 14:30:21 |
depth | 1 |
children | 1 |
last_payout | 2016-09-26 19:52: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 | 285 |
author_reputation | 7,507,292,756,109 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,013,328 |
net_rshares | 34,201,182,133 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 34,147,799,288 | 100% | ||
littenti | 0 | 53,382,845 | 100% |
You bet! I try to always go words before numbers. You reach more people that way. :)
author | biophil |
---|---|
permlink | re-steemitpatina-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t152757247z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-27 15:28:00 |
last_update | 2016-08-27 15:28:00 |
depth | 2 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 84 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,013,951 |
net_rshares | 0 |
Thanks for the math. You can always check your voting power at steemstats.com. https://pixabay.com/static/uploads/photo/2016/04/08/00/57/sky-1315337_960_720.jpg https://steemit.com/introduceyourself/@steempowerwhale/i-am-steempowerwhale-and-i-am-here-to-upvote-your-lifetime-dreams
author | steempowerwhale |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t180805559z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"image":["https://pixabay.com/static/uploads/photo/2016/04/08/00/57/sky-1315337_960_720.jpg"]} |
created | 2016-08-26 18:08:09 |
last_update | 2016-08-26 18:08:09 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 282 |
author_reputation | 6,727,613,422,973 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,402 |
net_rshares | 0 |
Thanks for the in depth information.
author | team101 |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t183808590z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 18:39:09 |
last_update | 2016-08-26 18:39:09 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 36 |
author_reputation | 12,700,047,182,916 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,835 |
net_rshares | 0 |
Thanks for your detailed explanation! Can you please clear up two questions? 1. I thought that your first 20 votes within 24 hours would use 5% of your voting power, and then it would start to drop after that. 2. If you first cast votes with your full available voting power, and then continue to vote more, do the new votes you cast have an effect on the first votes that you cast?
author | timcliff |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t164107453z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 16:41:09 |
last_update | 2016-08-26 16:41:09 |
depth | 1 |
children | 5 |
last_payout | 2016-09-26 19:52: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 | 382 |
author_reputation | 272,954,445,077,789 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,000,117 |
net_rshares | 36,490,565,729 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 34,125,193,195 | 100% | ||
timcliff | 0 | 2,365,372,534 | 100% |
1. There's no breakpoint like that. Every vote uses up a 200th of your current power plus a 100th of a percentage point. 1. Great question! Each vote is worth what it's worth *when you cast it;* past votes aren't affected by future votes.
author | biophil |
---|---|
permlink | re-timcliff-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t164807382z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 16:48:06 |
last_update | 2016-08-26 16:48:06 |
depth | 2 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 238 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,000,221 |
net_rshares | 33,428,760,681 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 33,428,760,681 | 100% |
That's what my research turned up as well: 20 votes in 24h maximizes the use of your voting power. I'll have to search for my reference for that.
author | georgedonnelly |
---|---|
permlink | re-timcliff-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t175353153z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 17:53:51 |
last_update | 2016-08-26 17:53:51 |
depth | 2 |
children | 3 |
last_payout | 2016-09-26 19:52: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 | 145 |
author_reputation | 7,073,205,089,284 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,001,182 |
net_rshares | 0 |
Maybe that's true if you do all 20 at once. If you space them out evenly throughout the day, the correct number is 27.
author | biophil |
---|---|
permlink | re-georgedonnelly-re-timcliff-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t215356904z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 21:54:00 |
last_update | 2016-08-26 21:54:00 |
depth | 3 |
children | 2 |
last_payout | 2016-09-26 19:52: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 | 118 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,004,746 |
net_rshares | 0 |
I was looking for something like this. Thanks for the clear and precise explanation and formula on voting power. I have two questions for you or for whoever can provide answers. (1) Is there a formula for best time to vote after a post is posted? (2) Is there a formula for estimating curation reward?
author | toxic |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t223745319z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 22:37:45 |
last_update | 2016-08-26 22:37:45 |
depth | 1 |
children | 1 |
last_payout | 2016-09-26 19:52: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 | 301 |
author_reputation | 35,449,004,859 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,005,304 |
net_rshares | 0 |
I will probably write a similar post about those questions, but I do not have the answers for you in a convenient form at the moment. Those answers are much more complicated than this stuff on voting power.
author | biophil |
---|---|
permlink | re-toxic-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t224608971z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 22:46:12 |
last_update | 2016-08-26 22:46:12 |
depth | 2 |
children | 0 |
last_payout | 2016-09-26 19:52:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.202 HBD |
curator_payout_value | 0.066 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 45,223,914,794,461 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,005,401 |
net_rshares | 492,008,973,513 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
toxic | 0 | 492,008,973,513 | 100% |
Well, I skipped reading through your comments on the code (I'm more artsy than geeky), congrats on busting through it anyway. I'm sure other readers will be happy to dig into the details. The general comments were helpful and your tank analogy is very clear. I've been wondering how much voting was too much, and now I see that I've been voting too little. Heading off in search of more things to upvote now...
author | venusdehilo |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t161409524z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-26 16:14:06 |
last_update | 2016-08-26 16:14:06 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 410 |
author_reputation | 32,457,729,298 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 999,782 |
net_rshares | 482,533,748 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
venusdehilo | 0 | 482,533,748 | 100% |
I tagged you and this article in my newest post. https://steemit.com/steemit/@whatsup/exploring-steemtools-com-congratulations-you-ve-won-steembingo-com-jackpot-671-tools-1
author | whatsup |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t230458579z |
category | steem-help |
json_metadata | {"tags":["steem-help"],"links":["https://steemit.com/steemit/@whatsup/exploring-steemtools-com-congratulations-you-ve-won-steembingo-com-jackpot-671-tools-1"]} |
created | 2016-08-26 23:05:00 |
last_update | 2016-08-26 23:05:00 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 173 |
author_reputation | 519,839,651,581,670 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,005,595 |
net_rshares | 32,036,081,065 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
biophil | 0 | 32,036,081,065 | 100% |
I'm totally new to steemit. I just heard about it today actually! This post really helped me to understand why its important to just not vote on everything since my vote now holds value. Not quite understanding the formulas though but it's understandable without that though! Thanks for the information to help us newbies out ! Lol
author | xauroragoddessx |
---|---|
permlink | re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t090438070z |
category | steem-help |
json_metadata | {"tags":["steem-help"]} |
created | 2016-08-27 09:04:45 |
last_update | 2016-08-27 09:06:18 |
depth | 1 |
children | 0 |
last_payout | 2016-09-26 19:52: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 | 331 |
author_reputation | 0 |
root_title | "The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,010,515 |
net_rshares | 0 |