In [my previous post]((https://steemit.com/cn/@justyy/200steem-1-sp)), a question was raised: How to upvote in order to maximize the payout per day? 之前说到 [第一次打肿脸充胖子 - 花了200STEEM租1万SP四周!](https://steemit.com/cn/@justyy/200steem-1-sp) 那么就扯到了怎么样点赞收益最高的问题。 Things could get very complicated, so we make some assumptions: 由于实际情况复杂(比如每个人睡眠时间不同,碎片时间段不一样),所以我们来做一个大胆但合理有效的假设: We assume that you start with a P (Voting Power, with P=1 equals 100% voting power), and we know that 100% vote costs around 2% voting power. Each 36 minutes, you get 0.5% voting power restored. 假设我们用 P 来表示每个人每天固定时间段起始的 能量,满血就是100%。我们已经知道,每100%点一次需要耗掉2%血量。并且每36分钟回0.5%的血量。 And we know that the 100% voting power generates M dollar payout. If you only upvote T times and that happens only in a specific N-hours timespan e.g. from 10:00AM to 10:00PM (after that, you go to sleep). 并且已经每次100%点的收益是M美元,如果每个人计划这一天点T次赞,并且只有在一个N小时的时间段内可以点赞(比如醒着的时候)。 The straightforward voting strategy will be to use all T upvotes at the beginning of the timespan. 这时候,我们可以来看一种点赞方式: The payout equation will be: 在这个固定的时间段就把这T次全点完,那么这样的收益为: ``` Sum P*M*(1-0.02*(i-1)) for i=1..T ``` For example, when T=2, upvoting twice immediately after start will be: 比如T=2的时候,在最开始就点完两次赞的收益为: ``` P*M + P*M*(1-0.02) ``` Translated into Javascript, the code explains the idea: 这样翻译成Javascript代码就是: ``` // P - Current Voting Power e.g. 100% // M - Payout at 100% unit $ // T - Number of Upvotes // N - Number of Hours (Interval) function calcPayout0(P, M, T, N) { var x = 0; for (var i = T; i > 0; -- i) { x += P * M; P -= 0.02; // 2% voting power decrease 能量最多为100% } return x; } ``` However, if the starting power is not 100%, it is always wait till the end of the timespan, when we have bigger voting power. With a line added, we have a better version: 但我们这么一样,如果我们在最开始的时候能量P不为100%,我们可以完全等到时间段结束的时候恢复投票能量了再一起点,那么这样的话,上面的代码稍微改一下,加一行,就得到了第二个版本: ``` // P - Current Voting Power e.g. 100% // M - Payout at 100% unit $ // T - Number of Upvotes // N - Number of Hours (Interval) function calcPayout1(P, M, T, N) { var x = 0; P = Math.min(1, P + 0.005 / 0.6 * N); // Maximum 100% voting power, 能量最多为100% for (var i = T; i > 0; -- i) { x += P * M; P -= 0.02; // 2% voting power decrease 每次100%点损失2%能量 } return x; } ``` Every 36 minutes we got 0.5% voting power back, that is we restore 0.005/0.6 each hour. Another strategy is to divide the N hour time span into T-1 slots, so with the energy restores at each slots, the equation becomes: 每36分钟恢复0.5% 也就是说每小时恢复 0.005/0.6。嗯,有点意思,还有没有其它点赞方法?有的,我们可以把这N小时时间平均分成T - 1次来点,这样的话,我们需要加上每段时间能量的恢复,公式为: ``` Sum P*M*(1-0.02*(i-1)+R) for i=1..T ``` R is the energy restored per N/(T-1), using JS explains better. 其中R为每段N/(T-1)时间内恢复的能量,我们用JS代码来解释清楚一些: ``` // P - Current Voting Power e.g. 100% // M - Payout at 100% unit $ // T - Number of Upvotes // N - Number of Hours (Interval) function calcPayout2(P, M, T, N) { var x = 0; var sp_restored = 0; if (T == 1) { P = Math.min(1, P + 0.005 / 0.6 * N); } else { var sp_restored = 0.005 / 0.6 * (N / (T - 1)); } for (var i = T; i > 0; -- i) { x += P * M; P -= 0.02; // 2% loss per 100% upvote 每次100%点损失2%能量 P += sp_restored; // each 36 minutes restore 0.5% 能量每36分钟回复0.5% } return x; } ``` The equation can be uniformed by extracting M which is like a constant. We use M=270 because @abit gives roughly 270$ per 100% upvote. A bigger M will make the result analysis clear. 我们注意到,M可以被单一化提取出去(不影响大小判断),不过为了让结果更清楚,我们选择M=270美元(据说 @abit 100%点赞是270美元) # 我们来比较几组值 STEEMIT UPVOTING STRATEGY DATA ANALYSIS Disclaimer: I am not responsible for your payout.. These are just for your references (and may contain error) 以下数据(很有可能有错误)仅供参考!本人不对您的收益负责。 ## When you only upvote once 当你只每天只点1次赞的时候 ``` var T = 1; var N = 10; ``` You can upvote when you wake up, or when the VP restores - vote before you go to bed. If P=0.9, the three methods generate payouts of: 这时候,可以在开始点,可以在最后能量恢复了的时候点,很显然,如果起始能量P=0.9,那么三种方式的结果为: ``` calcPayout0=243 calcPayout1=265.5 calcPayout2=265.5 ``` The Voting Power cannot restore to 100% in 10 hour span, that is why the maximal payout is 265.5 instead of 270. Clearly, voting when you have a higher voting power is the best choice. 因为能量在10个小时内恢复不到100%,所以最大收益为265.5 元(100%的情况下是270美元),显然,等能量恢复大了收益高一些。 However, if the starting power is 100%, it does not make any difference, they all give $270 payout. 但如果起始能量就是100%了,这样的情况下是没有区别的,三种方案都是270美元。 ## When you upvote 8 times per day 当你每天点8次赞 Starting Voting Power P=100%, T=8, N=10, The third strategy is better (vote and rest) 起始能量P=100%,T=8,N=10。第三种点一次等恢复一点能量再点这种明显收益就更高: ``` calcPayout0=2008.8 calcPayout1=2008.8 calcPayout2=2098.8 ``` However, when the P is 80% at the begining of timespan: 但是如果是这组值:起始能量是80% ``` var P = 0.8; var M = 270; var T = 8; var N = 10; ``` The second method gives a higher payout. That is, you use your 8 upvotes immediately before you go to bed when you have already restored to a higher VP for the day. 这样的结果反而是第二种方式好,也就是说等到能量恢复到最大的时候一起点(比如你一天早上都不点,等到晚上你睡觉前再一下子全部点完8次): ``` calcPayout0=1576.8 calcPayout1=1756.8 calcPayout2=1666.8 ``` When the P is closest to 100%, the third strategy (vote and rest) is better than the second one. 只有在初始能量接近100%的情况下,第三种方式才有会高于第二种: ``` var P = 0.99; var M = 270; var T = 8; var N = 10; ``` Does this result surprise you? 结果有没有很让人很意外? ``` calcPayout0=1987.2 calcPayout1=2008.8 calcPayout2=2077.2 ``` There are, of course, other voting strategies, for example, you can use half your votes in the morning and the rest in the evening. But I guess the results are pretty much similar (the analysis could go further). My suggestions according to the fact that most Steemians won't have a higher P at the beginning of each day: 当然还有其它种策略:比如最开始时间段先点1半,最后睡觉前再点完剩下的1半。你也可以写相应的程序来验证一下。但是不管如何,大部分人的每天起始能量不为100%,或者像我经常点赞点到少于70%,这种情况下,也就是第二种方式会好一些: ** Use your votes right before you go to bed! ** **就是睡觉前统统点完你的指标!** Most of use won't care so much because our M is small compared to big whales.. For example, my M = 1.7. 当然,请记住,上面的计算是基于270美元单次点击得到的结果,如果像我现在M=1.7的情况:得到的结果很接近: ``` calcPayout0=12.512 calcPayout1=12.648 calcPayout2=13.0786666666667 ``` The results are very close: So, don't spend too much time considering your best voting strategy. You should spend more time in your posts on [SteemIt](https://helloacm.com/how-to-get-transfer-history-of-steemit-accounts-via-steemit-apitransfer-history/)! 所以,我想大部分人都不需要操这个心,因为小鲸鱼们点一次才多少钱,各种点赞策略其实不会差太多,倒不如花时间在如何提高文章的质量上。 我们都不需要操这种心,除非像 @abit @oflyhigh @tumutanzi 这样的大鱼。 https://justyy.com/wp-content/uploads/2017/07/justyy-steemit.png Originally published at https://steemit.com Thank you for reading my post, feel free to Follow, Upvote, Reply, ReSteem (repost) @justyy which motivates me to create more quality posts. 原创 https://Steemit.com 首发。感谢阅读,如有可能,欢迎Follow, Upvote, Reply, ReSteem (repost) @justyy 激励我创作更多更好的内容。 // 稍候同步到我的[中文博客](https://justyy.com)和[英文博客](https://codingforspeed.com)。 - [SteemIt 怎么样点赞收益最高? ](https://justyy.com/archives/5077) - [The Best SteemIt UpVoting Strategy Calculator in Javascript](https://helloacm.com/the-best-steemit-upvoting-strategy-calculator-in-javascript/) # 近期热贴 Recent Popular Posts - [中年大叔还有梦可以做么?](https://steemit.com/cn/@justyy/7d7hyi) - [How to Use Steem API/transfer-history and IFTTT to sync to Slack? 如何使用Steem API/transfer-history和IFTTT同步到Slack消息? ](https://steemit.com/cn/@justyy/steem-api-transfer-history-ifttt-slack-how-to-use-steem-api-transfer-history-and-ifttt-to-sync-to-slack) - [SteemIt API/transfer-history 最简单获取帐号钱包记录的API](https://steemit.com/cn/@justyy/steemit-api-transfer-history-api) - [第一次打肿脸充胖子 - 花了200STEEM租1万SP四周!](https://steemit.com/cn/@justyy/200steem-1-sp) - [API steemit/account 简单封装了一下 steemit/account 的 API](https://steemit.com/cn/@justyy/api-steemit-account-steemit-account-api) - [Code Review Series - Value Not Used [坑爹的代码] - 变量未使用](https://steemit.com/cn/@justyy/code-review-series-value-not-used) - [The K Nearest Neighbor Algorithm (Prediction) Demonstration by MySQL 机器学习 用 MySQL 来演示 KNN算法 ](https://steemit.com/cn/@justyy/mysql-knn-the-k-nearest-neighbor-algorithm-prediction-demonstration-by-mysql) https://justyy.com/gif/steemit.gif
author | justyy |
---|---|
permlink | the-best-upvoting-strategy-calculator-in-javascript |
category | cn |
json_metadata | {"tags":["cn","cn-programming","steemstem","steemit","math"],"users":["abit","oflyhigh","tumutanzi","justyy"],"image":["https://justyy.com/wp-content/uploads/2017/07/justyy-steemit.png","https://justyy.com/gif/steemit.gif"],"links":["(https://steemit.com/cn/@justyy/200steem-1-sp)","https://steemit.com/cn/@justyy/200steem-1-sp","https://helloacm.com/how-to-get-transfer-history-of-steemit-accounts-via-steemit-apitransfer-history/","https://steemit.com","https://Steemit.com","https://justyy.com","https://codingforspeed.com","https://justyy.com/archives/5077","https://helloacm.com/the-best-steemit-upvoting-strategy-calculator-in-javascript/","https://steemit.com/cn/@justyy/7d7hyi","https://steemit.com/cn/@justyy/steem-api-transfer-history-ifttt-slack-how-to-use-steem-api-transfer-history-and-ifttt-to-sync-to-slack","https://steemit.com/cn/@justyy/steemit-api-transfer-history-api","https://steemit.com/cn/@justyy/api-steemit-account-steemit-account-api","https://steemit.com/cn/@justyy/code-review-series-value-not-used","https://steemit.com/cn/@justyy/mysql-knn-the-k-nearest-neighbor-algorithm-prediction-demonstration-by-mysql"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-08-15 20:41:39 |
last_update | 2017-08-21 13:24:42 |
depth | 0 |
children | 10 |
last_payout | 2017-08-22 20:41:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 62.131 HBD |
curator_payout_value | 19.468 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,190 |
author_reputation | 280,616,224,641,976 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,915,963 |
net_rshares | 23,235,490,730,750 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 114,835,036,892 | 0.08% | ||
lafona-miner | 0 | 621,697,863,986 | 10% | ||
abit | 0 | 7,804,191,773,088 | 10% | ||
justtryme90 | 0 | 318,945,341,381 | 20% | ||
rok-sivante | 0 | 632,036,013,130 | 100% | ||
ratel | 0 | 7,047,381,338 | 45.55% | ||
g-dubs | 0 | 3,360,813,518 | 3% | ||
isteemit | 0 | 6,931,607,067 | 2% | ||
robrigo | 0 | 170,891,119,841 | 100% | ||
biophil | 0 | 11,867,823,925 | 100% | ||
fundurian | 0 | 29,952,804,413 | 25% | ||
cryptoninja | 0 | 169,104,876 | 8% | ||
muchlizars | 0 | 54,522,963 | 10% | ||
timsaid | 0 | 432,331,228,864 | 4% | ||
compuxparts | 0 | 164,600,699 | 45.55% | ||
nigulax | 0 | 231,642,165 | 100% | ||
lemouth | 0 | 29,089,213,297 | 20% | ||
anarchyhasnogods | 0 | 45,131,879,665 | 20% | ||
sweetsssj | 0 | 1,566,883,362,359 | 5% | ||
bestmz | 0 | 16,426,019,724 | 100% | ||
tumutanzi | 0 | 5,067,305,852,494 | 35% | ||
penguinpablo | 0 | 254,770,383,667 | 20% | ||
ghasemkiani | 0 | 1,175,856,533 | 0.25% | ||
scottsantens | 0 | 4,440,689,958 | 45.55% | ||
justyy | 0 | 478,880,705,464 | 100% | ||
jennswall | 0 | 1,316,333,216 | 45.55% | ||
siniceku | 0 | 207,707,328 | 100% | ||
luneknight | 0 | 367,769,241 | 100% | ||
samanthabonin | 0 | 742,639,308 | 1.4% | ||
steemstem | 0 | 191,968,085,946 | 20% | ||
happyukgo | 0 | 1,542,271,300 | 100% | ||
ozymandias | 0 | 2,347,124,212 | 100% | ||
jubi | 0 | 11,295,104,748 | 100% | ||
cgame | 0 | 6,921,949,077 | 11% | ||
ygern | 0 | 4,308,347,507 | 36% | ||
jamhuery | 0 | 2,475,097,002 | 10% | ||
hammadakhtar | 0 | 129,245,478 | 1% | ||
htliao | 0 | 1,550,140,478,560 | 9% | ||
sinned | 0 | 1,820,656,214 | 45.55% | ||
federacion45 | 0 | 3,610,655,096 | 45.55% | ||
sv67216721 | 0 | 3,363,182,639 | 5% | ||
julee | 0 | 7,016,667,025 | 100% | ||
cikxaijen | 0 | 2,006,754,676 | 45.55% | ||
mobbs | 0 | 14,635,255,836 | 20% | ||
bubusik | 0 | 1,959,101,395 | 10% | ||
ojaber | 0 | 14,789,385,730 | 100% | ||
arkadiy | 0 | 824,414,757 | 100% | ||
jakipatryk | 0 | 8,233,589,352 | 100% | ||
coffeetime | 0 | 1,405,477,928 | 45.55% | ||
kenchung | 0 | 5,772,374,417 | 20% | ||
linuslee0216 | 0 | 3,297,475,989,387 | 20% | ||
anhdung7112000 | 0 | 265,117,911 | 45.55% | ||
ronel | 0 | 962,040,584 | 45.55% | ||
bmickov | 0 | 5,554,770,355 | 100% | ||
mpokorchukwudi | 0 | 262,383,523 | 45.55% | ||
romantic4 | 0 | 141,092,187 | 45.55% | ||
dber | 0 | 10,073,828,013 | 20% | ||
johnlue | 0 | 4,832,420,299 | 45.55% | ||
fenequedvm | 0 | 6,966,531,664 | 30% | ||
shenchensucc | 0 | 12,074,024,396 | 100% | ||
curiousity | 0 | 436,658,816 | 4% | ||
alexander.alexis | 0 | 592,417,289 | 6% | ||
walkinharmony | 0 | 3,271,349,454 | 45.55% | ||
biuiam | 0 | 3,030,360,145 | 100% | ||
reko | 0 | 1,828,885,058 | 99.55% | ||
duckmast3r | 0 | 1,176,977,206 | 1% | ||
cassillas5553 | 0 | 1,059,699,786 | 45.55% | ||
fugetaboutit | 0 | 891,691,846 | 45.55% | ||
randowhale1 | 0 | 348,792,689,575 | 3% | ||
mrrifat1 | 0 | 420,936,946 | 100% | ||
darkhorse27 | 0 | 2,821,867,644 | 100% | ||
aminfaqiri | 0 | 223,681,357 | 45.55% | ||
angrezi | 0 | 10,200,715,204 | 45.55% | ||
blackmagic | 0 | 1,878,377,502 | 45.55% | ||
jeffery-awesome | 0 | 351,172,154 | 100% | ||
sleazoid | 0 | 272,785,153 | 45.55% | ||
alexandruionescu | 0 | 514,663,463 | 45.55% | ||
thomasmmaker | 0 | 713,207,292 | 100% | ||
kona | 0 | 311,975,188 | 100% | ||
mounirzaza07 | 0 | 174,180,968 | 45.55% | ||
rathin | 0 | 497,511,408 | 75.55% | ||
sameerkumar | 0 | 52,386,084 | 9% | ||
davidzack | 0 | 425,236,494 | 100% | ||
adi0108 | 0 | 246,047,365 | 45.55% | ||
atta09 | 0 | 164,794,924 | 100% | ||
sweeters | 0 | 1,038,701,711 | 45.55% | ||
joshdurston | 0 | 97,175,784 | 15% | ||
leoledda48 | 0 | 153,409,376 | 40% | ||
serraidjalal | 0 | 146,974,683 | 45.55% | ||
usmanjaved8887 | 0 | 147,886,348 | 45.55% | ||
charline | 0 | 179,660,800 | 45.55% | ||
steffenix | 0 | 703,391,167 | 100% | ||
liangfengyouren | 0 | 4,604,272,067 | 100% | ||
idx | 0 | 1,989,717,066 | 10% | ||
offgrind | 0 | 411,379,043 | 100% | ||
willywalas | 0 | 296,843,702 | 45.55% | ||
randowhaletrail | 0 | 309,566,014 | 0.5% | ||
kangnajiang | 0 | 483,583,452 | 100% | ||
chaofanjun | 0 | 4,145,846,121 | 100% | ||
jesdn16 | 0 | 475,921,291 | 45.55% | ||
fr3eze | 0 | 25,445,179,597 | 100% | ||
aafeng | 0 | 546,340,659 | 88% | ||
fakire1sadaka | 0 | 194,007,309 | 100% | ||
edyjoss | 0 | 295,370,918 | 45.55% | ||
shourovhassan | 0 | 170,455,981 | 45.55% | ||
nainaztengra | 0 | 120,498,912 | 45.55% | ||
karasui | 0 | 604,032,000 | 100% | ||
tvb | 0 | 558,896,024 | 100% | ||
goldminevoyager | 0 | 552,200,809 | 100% | ||
public-money | 0 | 410,538,799 | 45.55% | ||
skenan | 0 | 2,650,110,986 | 100% | ||
palmerjm1 | 0 | 58,621,387 | 45.55% | ||
wauglya | 0 | 433,664,000 | 100% | ||
wseemfree | 0 | 229,182,902 | 100% | ||
godsoap | 0 | 247,352,208 | 45.55% | ||
geeekgirl | 0 | 436,790,710 | 100% | ||
dillibabu | 0 | 125,722,306 | 45.55% | ||
timspeer | 0 | 670,770,028 | 45.55% | ||
peacefulpatriot | 0 | 1,757,547,234 | 45.55% | ||
kkro | 0 | 649,764,873 | 100% | ||
michaelyi | 0 | 538,982,400 | 100% | ||
theninthart | 0 | 104,066,946 | 45.55% | ||
temmiedebbie | 0 | 488,789,824 | 45.55% | ||
ahmedhani | 0 | 416,030,177 | 45.45% | ||
cryptoaddict5 | 0 | 522,866,889 | 45.55% | ||
redtea | 0 | 1,037,381,214 | 100% | ||
photobomb | 0 | 1,052,243,225 | 100% | ||
petriz | 0 | 168,832,365 | 100% | ||
orupold-fitness | 0 | 626,748,455 | 100% | ||
memi | 0 | 232,128,944 | 100% | ||
mattletch | 0 | 330,795,128 | 100% | ||
amnamalik | 0 | 516,484,167 | 45.55% | ||
poloniex4u | 0 | 412,026,667 | 45.55% | ||
naztuz | 0 | 475,861,715 | 45.55% | ||
failshub | 0 | 255,340,432 | 45.55% |
Very interesting analysis, but still not my concern in the given moment as I am small minnows XD
author | biuiam |
---|---|
permlink | re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170816t001018060z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-16 00:10:18 |
last_update | 2017-08-16 00:10:18 |
depth | 1 |
children | 0 |
last_payout | 2017-08-23 00:10: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 | 96 |
author_reputation | 66,804,947,493,380 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,929,599 |
net_rshares | 0 |
这两百个Steem,花的很值了,通过它研究出这么高深的技术问题。
author | coldhair |
---|---|
permlink | re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170815t224703130z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-15 22:47:06 |
last_update | 2017-08-15 22:47:06 |
depth | 1 |
children | 1 |
last_payout | 2017-08-22 22:47:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 34,617,352,014,488 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,924,116 |
net_rshares | 0 |
本来还挺后悔的,但是听了你这句话,还有就是现在价格涨到266,所以心理一下就好受多了。
author | justyy |
---|---|
permlink | re-coldhair-re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170817t082142813z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-17 08:21:42 |
last_update | 2017-08-17 08:21:42 |
depth | 2 |
children | 0 |
last_payout | 2017-08-24 08:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 280,616,224,641,976 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,064,067 |
net_rshares | 0 |
Good read! TLDR: Doesn't matter if you are a minnow with little SP 太长没读:如果你是小鱼,怎么投票不怎么有效益差异。
author | fr3eze |
---|---|
permlink | re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170816t001409480z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-16 00:14:12 |
last_update | 2017-08-16 00:14:12 |
depth | 1 |
children | 0 |
last_payout | 2017-08-23 00:14:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 62,201,653,753,684 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,929,866 |
net_rshares | 0 |
大哥,您的數學太了得了… 您是唸電腦工程的嗎?
author | geeekgirl |
---|---|
permlink | re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170816t190226945z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-16 19:02:27 |
last_update | 2017-08-16 19:02:27 |
depth | 1 |
children | 1 |
last_payout | 2017-08-23 19:02:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 124,223,225,338 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,014,187 |
net_rshares | 0 |
是的,本科学的是计算机,博士学的是无线通讯。
author | justyy |
---|---|
permlink | re-geeekgirl-re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170816t194355227z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-16 19:43:57 |
last_update | 2017-08-16 19:43:57 |
depth | 2 |
children | 0 |
last_payout | 2017-08-23 19:43:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 280,616,224,641,976 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,017,510 |
net_rshares | 0 |
我们只能花时间在如何提高文章的质量上了。哈哈哈
author | liangfengyouren |
---|---|
permlink | re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170816t124118691z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-16 12:41:18 |
last_update | 2017-08-16 12:41:18 |
depth | 1 |
children | 0 |
last_payout | 2017-08-23 12:41: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 | 23 |
author_reputation | 5,130,020,498,207 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,980,631 |
net_rshares | 0 |
Very interesting and helpfull.
author | mrrifat1 |
---|---|
permlink | re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170816t072725772z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-16 07:27:15 |
last_update | 2017-08-16 07:27:15 |
depth | 1 |
children | 0 |
last_payout | 2017-08-23 07:27:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 3,567,229,566,376 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,957,844 |
net_rshares | 0 |
This post received a 3.0% upvote from @randowhale thanks to @justyy! For more information, [click here](https://steemit.com/steemit/@randowhale/randowhale-is-now-only-1-steem-sbd-per-vote-spread-the-news)!
author | randowhale |
---|---|
permlink | re-the-best-upvoting-strategy-calculator-in-javascript-20170816t085956 |
category | cn |
json_metadata | "{"format": "markdown", "app": "randowhale/0.1"}" |
created | 2017-08-16 08:59:57 |
last_update | 2017-08-16 08:59:57 |
depth | 1 |
children | 0 |
last_payout | 2017-08-23 08:59:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 47,657,457,485,459 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,964,326 |
net_rshares | 2,117,196,179 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thesloth | 0 | 2,117,196,179 | 1% |
每次100%点击的话,是消耗当前剩余能量的2%。 技术上来分析有点意思,但实际上我是根据内容来点赞的,那才是真正意义所在。
author | tumutanzi |
---|---|
permlink | re-justyy-the-best-upvoting-strategy-calculator-in-javascript-20170815t230749240z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-15 23:07:51 |
last_update | 2017-08-15 23:07:51 |
depth | 1 |
children | 0 |
last_payout | 2017-08-22 23:07:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 193,777,509,634,731 |
root_title | "The Best Upvoting Strategy Calculator in Javascript - 怎么样点赞收益最高? (新老用户都来看看)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,925,387 |
net_rshares | 0 |