create account

The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!) by biophil

View this thread on: hive.blogpeakd.comecency.com
· @biophil · (edited)
$512.38
The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)
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>
![](https://ipfs.pics/ipfs/QmQ9nSfaCW19yJ9VkbrAUpMedhnyutdAupCvZF3K8TdVtV)
</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>
![](https://ipfs.pics/ipfs/QmRiHNQomQETershrMuhA98Hc8YKJiq8iUzwLXm6XoyXBc)
</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>
![](https://ipfs.pics/ipfs/QmVwAdtGXewxFr9HvPrku92MYQZ8bwpDe4EGc5zBA36nhy)
</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>
![](https://ipfs.pics/ipfs/Qmax2C4pV287GMTaiSgpJWJUoPMQHnCGfiViwYe4cw23Cc)
</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.]
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 98 others
properties (23)
authorbiophil
permlinkthe-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references
categorysteem-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"]}
created2016-08-26 16:08:03
last_update2016-08-26 23:58:39
depth0
children45
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value401.100 HBD
curator_payout_value111.284 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,972
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id999,707
net_rshares62,704,614,127,251
author_curate_reward""
vote details (162)
@anotherjoe ·
$0.16
My head hurts...

But I'm not a regular Joe. I'm Another Joe. :)
👍  , , , ,
properties (23)
authoranotherjoe
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t190002611z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 19:00:12
last_update2016-08-26 19:00:12
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.123 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation40,326,779,382,210
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,002,143
net_rshares307,965,280,651
author_curate_reward""
vote details (5)
@bitcoinparadise ·
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
properties (22)
authorbitcoinparadise
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t001708724z
categorysteem-help
json_metadata{"tags":["steem-help"],"users":["biophil"]}
created2016-08-27 00:17:06
last_update2016-08-27 00:17:06
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation52,935,636,369,082
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,006,393
net_rshares0
@bola ·
Thank you @biophil, I understand now.
properties (22)
authorbola
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t183909033z
categorysteem-help
json_metadata{"tags":["steem-help"],"users":["biophil"]}
created2016-08-26 18:39:27
last_update2016-08-26 18:39:27
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation51,245,914,991,562
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,838
net_rshares0
@borishaifa ·
Too many figure for a beginner (((
properties (22)
authorborishaifa
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t163645465z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 16:36:12
last_update2016-08-26 16:36:12
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation15,732,096,291,861
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,000,052
net_rshares0
@catsmart · (edited)
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.
👍  ,
properties (23)
authorcatsmart
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160829t231516292z
categorysteem-help
json_metadata{"tags":["steem-help"],"users":["biophil"]}
created2016-08-29 23:15:15
last_update2016-08-29 23:19:27
depth1
children1
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length797
author_reputation10,393,969,130,947
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,048,470
net_rshares109,755,884
author_curate_reward""
vote details (2)
@biophil ·
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.
properties (22)
authorbiophil
permlinkre-catsmart-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160830t010428015z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-30 01:04:27
last_update2016-08-30 01:04:27
depth2
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length825
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,049,685
net_rshares0
@crowtactic21 ·
nice post man. im looking for this and im impressed on how you solve or got it.  i enjoy reading this.
properties (22)
authorcrowtactic21
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t121658897z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-27 12:30:57
last_update2016-08-27 12:30:57
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation122,083,296,764
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,012,151
net_rshares0
@exploretraveler ·
Thank you this really helped me understand voting power. Upvoted!
👍  ,
properties (23)
authorexploretraveler
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160917t183557944z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-09-17 18:35:57
last_update2016-09-17 18:35:57
depth1
children1
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation194,809,188,791,591
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,278,784
net_rshares65,461,872,888
author_curate_reward""
vote details (2)
@biophil ·
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!
👍  ,
properties (23)
authorbiophil
permlinkre-exploretraveler-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160917t220335699z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-09-17 22:03:36
last_update2016-09-17 22:03:36
depth2
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,280,661
net_rshares66,760,728,929
author_curate_reward""
vote details (2)
@james-show ·
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!!!!
👍  
properties (23)
authorjames-show
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t172556225z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 17:26:00
last_update2016-08-26 17:26:00
depth1
children2
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation5,698,866,469,447
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,000,812
net_rshares29,141,306,150
author_curate_reward""
vote details (1)
@biophil ·
Thanks! Haha, I've got to ask what about me made you think that? and what's bla-bla?
properties (22)
authorbiophil
permlinkre-james-show-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t173202142z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 17:32:03
last_update2016-08-26 17:32:03
depth2
children1
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,000,883
net_rshares0
@james-show ·
[hint] well if you know my bts moniker, you will know I consider most anything bullish overwhelming enthusiasm ...
best regards
tk
👍  
properties (23)
authorjames-show
permlinkre-biophil-re-james-show-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t174410609z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 17:44:15
last_update2016-08-26 17:44:15
depth3
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation5,698,866,469,447
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,050
net_rshares29,141,959,719
author_curate_reward""
vote details (1)
@knight-angel ·
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!
👍  
properties (23)
authorknight-angel
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t171522898z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 17:15:21
last_update2016-08-26 17:15:21
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation11,500,046,828,479
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,000,629
net_rshares53,884,847
author_curate_reward""
vote details (1)
@kyriacos ·
@biophil

Thank you for the detailed explanation
properties (22)
authorkyriacos
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t133423153z
categorysteem-help
json_metadata{"tags":["steem-help"],"users":["biophil"]}
created2016-08-27 13:34:24
last_update2016-08-27 13:34:24
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation151,079,958,921,004
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,012,707
net_rshares0
@leprechaun ·
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.
properties (22)
authorleprechaun
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t181146695z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-27 18:11:54
last_update2016-08-27 18:11:54
depth1
children1
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation43,025,812,810,398
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,016,058
net_rshares0
@biophil ·
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.
properties (22)
authorbiophil
permlinkre-leprechaun-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t182224660z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-27 18:22:24
last_update2016-08-27 18:22:24
depth2
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length534
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,016,164
net_rshares0
@logic ·
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 :-) "
properties (22)
authorlogic
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t215018192z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 21:50:18
last_update2016-08-26 21:50:18
depth1
children3
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length475
author_reputation92,052,875,413,650
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,004,698
net_rshares0
@biophil ·
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.
properties (22)
authorbiophil
permlinkre-logic-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t002942352z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-27 00:29:42
last_update2016-08-27 00:29:42
depth2
children2
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,006,527
net_rshares0
@logic ·
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 :-)
properties (22)
authorlogic
permlinkre-biophil-re-logic-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t013206465z
categorysteem-help
json_metadata{"tags":["steem-help"],"links":["https://www.youtube.com/watch?v=Yb5ivvcTvRQ"]}
created2016-08-27 01:32:09
last_update2016-08-27 01:32:09
depth3
children1
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length655
author_reputation92,052,875,413,650
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,007,120
net_rshares0
@marquismiller ·
Thank you for your contribution and efforts. I now see the light!

![light](https://s11.postimg.org/7qc20aybn/download_5.png)
properties (22)
authormarquismiller
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160828t044051796z
categorysteem-help
json_metadata{"tags":["steem-help"],"image":["https://s11.postimg.org/7qc20aybn/download_5.png"]}
created2016-08-28 04:40:51
last_update2016-08-28 04:40:51
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation138,987,245,257
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,022,475
net_rshares0
@onionweb ·
Impressed, and followed!
properties (22)
authoronionweb
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160825t061511376z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 16:21:42
last_update2016-08-26 16:21:42
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation3,706,650,400
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id999,868
net_rshares0
@pakisnxt ·
Thanks for that detailed explanation. Followed.
properties (22)
authorpakisnxt
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t163238942z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 16:32:39
last_update2016-08-26 16:32:39
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation48,647,007,602
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id999,997
net_rshares0
@pauladamski ·
Great breakdown, now I know more then I did 10 minutes ago, thanks :)
Of to another Q&A
properties (22)
authorpauladamski
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20180814t220949372z
categorysteem-help
json_metadata{"tags":["steem-help"],"app":"steemit/0.1"}
created2018-08-14 22:09:48
last_update2018-08-14 22:09:48
depth1
children0
last_payout2018-08-21 22:09:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation110,853,255,923
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id68,211,540
net_rshares0
@sallykwitt ·
$0.34
Excellent.  I understand more because of your cartoon!!  Great to meet you @biophil.  Following you and upvoted this post.
👍  , ,
properties (23)
authorsallykwitt
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20170730t045000503z
categorysteem-help
json_metadata{"tags":["steem-help"],"users":["biophil"],"app":"steemit/0.1"}
created2017-07-30 04:50:03
last_update2017-07-30 04:50:03
depth1
children0
last_payout2017-08-06 04:50:03
cashout_time1969-12-31 23:59:59
total_payout_value0.255 HBD
curator_payout_value0.084 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation139,328,483,437
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,185,841
net_rshares88,317,557,354
author_curate_reward""
vote details (3)
@smooth ·
$0.04
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.
👍  , , ,
properties (23)
authorsmooth
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t182658800z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 18:26:57
last_update2016-08-26 18:26:57
depth1
children4
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length272
author_reputation253,602,537,834,068
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,660
net_rshares92,883,435,954
author_curate_reward""
vote details (4)
@biophil ·
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.
properties (22)
authorbiophil
permlinkre-smooth-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t183033400z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 18:30:36
last_update2016-08-26 18:30:36
depth2
children2
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length237
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,709
net_rshares0
@shenanigator ·
Please let me know when the curation post is ready as well.
👍  
properties (23)
authorshenanigator
permlinkre-biophil-re-smooth-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t184242323z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 18:42:36
last_update2016-08-26 18:42:36
depth3
children1
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation61,400,000,740,515
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,885
net_rshares25,983,956,519
author_curate_reward""
vote details (1)
@shenanigator ·
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
👍  , ,
properties (23)
authorshenanigator
permlinkre-smooth-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t182937141z
categorysteem-help
json_metadata{"tags":["steem-help"],"links":["https://steemit.com/steemit/@shenanigator/official-steemit-faq-rough-draft-your-edits-are-needed"]}
created2016-08-26 18:29:33
last_update2016-08-26 18:29:33
depth2
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation61,400,000,740,515
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,694
net_rshares32,089,005,729
author_curate_reward""
vote details (3)
@steemitpatina ·
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.
👍  ,
properties (23)
authorsteemitpatina
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t143022972z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-27 14:30:21
last_update2016-08-27 14:30:21
depth1
children1
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length285
author_reputation7,507,292,756,109
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,013,328
net_rshares34,201,182,133
author_curate_reward""
vote details (2)
@biophil ·
You bet! I try to always go words before numbers. You reach more people that way. :)
properties (22)
authorbiophil
permlinkre-steemitpatina-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t152757247z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-27 15:28:00
last_update2016-08-27 15:28:00
depth2
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,013,951
net_rshares0
@steempowerwhale ·
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
properties (22)
authorsteempowerwhale
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t180805559z
categorysteem-help
json_metadata{"tags":["steem-help"],"image":["https://pixabay.com/static/uploads/photo/2016/04/08/00/57/sky-1315337_960_720.jpg"]}
created2016-08-26 18:08:09
last_update2016-08-26 18:08:09
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length282
author_reputation6,727,613,422,973
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,402
net_rshares0
@team101 ·
Thanks for the in depth information.
properties (22)
authorteam101
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t183808590z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 18:39:09
last_update2016-08-26 18:39:09
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation12,700,047,182,916
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,835
net_rshares0
@timcliff ·
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?
👍  ,
properties (23)
authortimcliff
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t164107453z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 16:41:09
last_update2016-08-26 16:41:09
depth1
children5
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length382
author_reputation272,954,445,077,789
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,000,117
net_rshares36,490,565,729
author_curate_reward""
vote details (2)
@biophil ·
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.
👍  
properties (23)
authorbiophil
permlinkre-timcliff-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t164807382z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 16:48:06
last_update2016-08-26 16:48:06
depth2
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,000,221
net_rshares33,428,760,681
author_curate_reward""
vote details (1)
@georgedonnelly ·
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.
properties (22)
authorgeorgedonnelly
permlinkre-timcliff-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t175353153z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 17:53:51
last_update2016-08-26 17:53:51
depth2
children3
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation7,073,205,089,284
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,001,182
net_rshares0
@biophil ·
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.
properties (22)
authorbiophil
permlinkre-georgedonnelly-re-timcliff-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t215356904z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 21:54:00
last_update2016-08-26 21:54:00
depth3
children2
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,004,746
net_rshares0
@toxic ·
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?
properties (22)
authortoxic
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t223745319z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 22:37:45
last_update2016-08-26 22:37:45
depth1
children1
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length301
author_reputation35,449,004,859
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,005,304
net_rshares0
@biophil ·
$0.27
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.
👍  
properties (23)
authorbiophil
permlinkre-toxic-re-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t224608971z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 22:46:12
last_update2016-08-26 22:46:12
depth2
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.202 HBD
curator_payout_value0.066 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation45,223,914,794,461
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,005,401
net_rshares492,008,973,513
author_curate_reward""
vote details (1)
@venusdehilo ·
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...
👍  
properties (23)
authorvenusdehilo
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t161409524z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-26 16:14:06
last_update2016-08-26 16:14:06
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length410
author_reputation32,457,729,298
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id999,782
net_rshares482,533,748
author_curate_reward""
vote details (1)
@whatsup ·
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
👍  
properties (23)
authorwhatsup
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160826t230458579z
categorysteem-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"]}
created2016-08-26 23:05:00
last_update2016-08-26 23:05:00
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation519,839,651,581,670
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,005,595
net_rshares32,036,081,065
author_curate_reward""
vote details (1)
@xauroragoddessx · (edited)
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
properties (22)
authorxauroragoddessx
permlinkre-biophil-the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references-20160827t090438070z
categorysteem-help
json_metadata{"tags":["steem-help"]}
created2016-08-27 09:04:45
last_update2016-08-27 09:06:18
depth1
children0
last_payout2016-09-26 19:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length331
author_reputation0
root_title"The Ultimate Guide to Voting Power (with cartoons, formulas, and code references!)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,010,515
net_rshares0