# Bandwidth 机制  Bandwidth 是STEEM引入用于防止滥用(SPAM)的机制。 分为以下两种: * ***Forum Bandwidth***: 用于发文、回复、点赞等 * ***Market Bandwidth***: 用于转账、交易等等 简单的来讲,你的可用Bandwith 和你持有的股份成正比。 为了更加合理,Bandwidth的计算为7日平均值。 ***Market Bandwidth***的计算与***Forum Bandwidth***的计算基本一样,所以我们这里以***Forum Bandwidth***为例进行讲解。 # 发文、点赞、回复等操作占用Bandwidth 每次我们进行一些操作,比如发表文章、给自己或者给别人点赞、回复内容,这些操作都会占用一定量的Bandwidth。占用的大小为每次我们操作产生的数据量大小。 每次我们进行一项操作时,对STEEM而言,亦即一个Transaction,包含操作的内容,以及签名信息等等,这个Transaction的体积,即为此次操作占用的Bandwidth。 # Bandwidth的计算为7日平均值 你可能说了,我好多天没发帖,发了一个帖子占用 5K Bandwidth,别人每天发帖,每个帖子占用1K,那怎么衡量谁占的多啊,谁占的少啊? 很好的问题,STEEM为了防止这种情况,引入了平均带宽Average Bandwidth的概念。 Average Bandwidth 已7天为时间窗 计算的方式为: (7天 - 距离上次操作的时间)*之前的Average Bandwidth/7天 + 本次操作Bandwidth (如果距离上次操作时间 > 7天,则新的Average Bandwidth 为 本次操作Bandwidth) ``` share_type new_bandwidth; share_type trx_bandwidth = trx_size * STEEMIT_BANDWIDTH_PRECISION; auto delta_time = ( _db.head_block_time() - band->last_bandwidth_update ).to_seconds(); if( delta_time > STEEMIT_BANDWIDTH_AVERAGE_WINDOW_SECONDS ) new_bandwidth = 0; else new_bandwidth = ( ( ( STEEMIT_BANDWIDTH_AVERAGE_WINDOW_SECONDS - delta_time ) * fc::uint128( band->average_bandwidth.value ) ) / STEEMIT_BANDWIDTH_AVERAGE_WINDOW_SECONDS ).to_uint64(); new_bandwidth += trx_bandwidth; _db.modify( *band, [&]( account_bandwidth_object& b ) { b.average_bandwidth = new_bandwidth; b.lifetime_bandwidth += trx_bandwidth; b.last_bandwidth_update = _db.head_block_time(); }); ``` 代码如上,其中: * trx_bandwidth: 即为本次操作占用的带宽 * new_bandwidth: 最后即为新的new_bandwidth * delta_time: 距离上次操作的时间 * STEEMIT_BANDWIDTH_AVERAGE_WINDOW_SECONDS: 7天的总秒数 # 可用Bandwith 和持有的股份成正比 以下是代码: ``` fc::uint128 account_vshares( a.effective_vesting_shares().amount.value ); fc::uint128 total_vshares( props.total_vesting_shares.amount.value ); fc::uint128 account_average_bandwidth( band->average_bandwidth.value ); fc::uint128 max_virtual_bandwidth( props.max_virtual_bandwidth ); has_bandwidth = ( account_vshares * max_virtual_bandwidth ) > ( account_average_bandwidth * total_vshares ); ``` 核心是这句: `has_bandwidth = ( account_vshares * max_virtual_bandwidth ) > ( account_average_bandwidth * total_vshares );` 解释起来就是: 是否有可用带宽 = (你的vshares x 总的带宽) > (你的平均带宽 x 总的vshares) 变换一下,似乎更好理解,可以是这个形式: ***是否有可用带宽 = (你的vshares / 总的vshares) > (你的平均带宽/总的带宽)*** 也就是说,***你的vshares占总vshares的比例 (不能低于) 你的平均带宽占总带宽的比例*** 否则就会带宽超限了 其中你的vshares指***有效vshares***(包括你的STEEM POWER和别人代理给你的,减去你代理出去的) # 如何避免 & 解决? 通过以上分析,我们得出结论: * 发文、点赞、回复等操作占用Bandwidth * Bandwidth的计算为7日平均值 * 你的vshares占总vshares的比例 (不能低于) 你的平均带宽占总带宽的比例 那么如何避免超限呢? 通过以上分析我们不难得出结论: * ***增加vshares占比*** * ***减小你的平均带宽占用*** 增加vshares占比: 可以通过***充值SP,让别人代理一些SP给你***等 减小你的平均带宽占用则可以从以下方面入手: * ***加大操作间隔*** * ***降低操作次数(其实和加大间隔一个道理)*** * ***减少每次Transaction的体积*** 而减小体积,一些系统打包上的东西,如签名等等,我们是减少不了的,只好从内容着手了。 举例说 @catwomanteresa 的这篇文章中 [bandwidth limit exceeded? 饒了我吧!](https://steemit.com/cn/@catwomanteresa/bandwidth-limit-exceeded) 这个表情:  `` 使用了这么多文本,所以表情太丰富,会被系统禁止的 😭 附:截止写作本文时,3个ID的平均带宽占用 ID | Average bandwidth ----|---- @deanliu|275,813,067,443.8705 @oflyhigh|260,843,912,023.06836 @catwomanteresa|349,753,380,793.4731 # 结论 神马加大操作间隔、降低操作次数、减少发送的数据量,***统统不爽!!!!**** 买买买,充值STEEM Power, 定个小目标,先加它***<del>一个亿</del>,<del>1000个</del>, 100个</del>*** 有了SP, 牙口倍儿好、吃嘛嘛香,一口气上六楼,腰不酸、背背不疼...... 又跑题了,打住了 ---- 感谢阅读 / Thank you for reading. 欢迎upvote、resteem以及 following me @oflyhigh 😎
author | oflyhigh |
---|---|
permlink | bandwidth-and |
category | cn |
json_metadata | {"tags":["cn","cn-programming","bandwidth"],"users":["catwomanteresa","deanliu","oflyhigh"],"image":["https://steemitimages.com/DQmNxVX43fvZTU2wBouQVyp9LnVcda9JnAE1DRQ6CyBvgy2/image.png","https://steemitimages.com/DQmaUs9JKJk2JNsM5VT27UPrXvDPbxWv7PrRCNAgnR19RjG/%E5%A4%A7%E5%93%AD02-80.gif"],"links":["https://steemit.com/cn/@catwomanteresa/bandwidth-limit-exceeded"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-07-18 11:11:15 |
last_update | 2017-07-18 11:15:15 |
depth | 0 |
children | 38 |
last_payout | 2017-07-25 11:11:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 226.147 HBD |
curator_payout_value | 45.996 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,898 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,863,198 |
net_rshares | 52,403,264,931,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sandra | 0 | 16,494,974,802 | 9% | ||
abit | 0 | 34,936,693,336,755 | 50% | ||
ihashfury | 0 | 3,365,907,118 | 2.34% | ||
boy | 0 | 2,184,602,360 | 100% | ||
bue-witness | 0 | 2,663,753,651 | 100% | ||
bunny | 0 | 358,530,265 | 100% | ||
bue | 0 | 53,797,037,825 | 100% | ||
someone | 0 | 25,839,899,712 | 100% | ||
mini | 0 | 1,167,633,702 | 100% | ||
moon | 0 | 148,456,722 | 100% | ||
jason | 0 | 10,428,628,757 | 3.24% | ||
healthcare | 0 | 435,141,540 | 100% | ||
daniel.pan | 0 | 688,404,119 | 100% | ||
helen.tan | 0 | 144,967,974 | 100% | ||
jademont | 0 | 109,738,531,656 | 100% | ||
germanaure | 0 | 9,946,077,436 | 100% | ||
marc-fa-schiwo | 0 | 1,842,184,271 | 100% | ||
coinbitgold | 0 | 144,321,572,180 | 80% | ||
rok-sivante | 0 | 353,658,828,638 | 40% | ||
wongshiying | 0 | 23,619,567,021 | 100% | ||
mark-waser | 0 | 69,400,422,849 | 33% | ||
robrigo | 0 | 210,344,305,937 | 100% | ||
slowwalker | 0 | 830,628,968,338 | 10% | ||
busser | 0 | 19,186,867,349 | 25% | ||
livingfree | 0 | 1,088,165,331,749 | 57% | ||
biophil | 0 | 47,276,923,621 | 100% | ||
fundurian | 0 | 21,485,039,493 | 31% | ||
ubg | 0 | 202,213,663 | 1% | ||
deanliu | 0 | 765,517,326,202 | 100% | ||
rea | 0 | 244,130,452,046 | 25% | ||
joythewanderer | 0 | 142,217,946,840 | 100% | ||
lemooljiang | 0 | 159,925,439,351 | 100% | ||
ace108 | 0 | 452,003,659,792 | 25% | ||
rznag | 0 | 166,774,898,620 | 50% | ||
craigslist | 0 | 294,437,472 | 100% | ||
magicmonk | 0 | 60,926,519,193 | 100% | ||
laoyao | 0 | 49,046,861,878 | 100% | ||
myfirst | 0 | 20,899,255,946 | 100% | ||
somebody | 0 | 1,215,428,560,037 | 100% | ||
feelapi | 0 | 3,232,801,626 | 60% | ||
midnightoil | 0 | 170,974,032,500 | 100% | ||
btsabc | 0 | 33,255,196,210 | 100% | ||
xiaohui | 0 | 852,045,839,756 | 100% | ||
silentlucidity53 | 0 | 2,001,463,806 | 75% | ||
elfkitchen | 0 | 21,613,289,771 | 100% | ||
fishingvideos | 0 | 204,796,792 | 100% | ||
oflyhigh | 0 | 1,442,488,167,349 | 100% | ||
xiaokongcom | 0 | 13,689,727,877 | 100% | ||
hanshotfirst | 0 | 168,588,488,280 | 5% | ||
nextgen622 | 0 | 565,090,769,834 | 100% | ||
chinadaily | 0 | 169,597,479,379 | 100% | ||
helene | 0 | 245,229,207,606 | 100% | ||
jsantana | 0 | 9,189,917,594 | 31% | ||
ethansteem | 0 | 377,435,513,454 | 100% | ||
sweetsssj | 0 | 1,196,193,122,134 | 10% | ||
tumutanzi | 0 | 10,369,374,708 | 36% | ||
runridefly | 0 | 5,601,437,223 | 1% | ||
davidjkelley | 0 | 3,297,887,206 | 33% | ||
digital-wisdom | 0 | 29,053,202,643 | 33% | ||
cornerstone | 0 | 415,982,073,588 | 36% | ||
jwaser | 0 | 17,641,522,856 | 33% | ||
shieha | 0 | 9,758,381,537 | 100% | ||
actmyname | 0 | 145,478,417 | 100% | ||
damarth | 0 | 968,390,917,754 | 30% | ||
bwaser | 0 | 4,139,734,184 | 33% | ||
justyy | 0 | 44,053,144,299 | 100% | ||
ellepdub | 0 | 8,496,253,980 | 33% | ||
herpetologyguy | 0 | 123,206,768,469 | 33% | ||
morgan.waser | 0 | 7,311,536,468 | 33% | ||
strong-ai | 0 | 8,212,404,226 | 33% | ||
birds90 | 0 | 17,329,079,376 | 100% | ||
steemtruth | 0 | 33,484,312,565 | 10% | ||
jonjon1 | 0 | 44,438,002,641 | 100% | ||
lalala | 0 | 24,432,875,032 | 100% | ||
black-eye | 0 | 670,750,385 | 100% | ||
ejhaasteem | 0 | 13,021,340,190 | 100% | ||
jmehta | 0 | 1,143,547,777 | 100% | ||
devilwsy | 0 | 2,219,712,748 | 100% | ||
janiceting | 0 | 2,230,824,906 | 100% | ||
ozymandias | 0 | 6,728,992,391 | 100% | ||
lydiachan | 0 | 45,115,101,408 | 100% | ||
technoprogressiv | 0 | 7,902,462,307 | 33% | ||
qeysolutions | 0 | 80,510,062,844 | 100% | ||
hexdek16 | 0 | 1,396,403,425 | 100% | ||
blackbunny | 0 | 16,258,970,837 | 100% | ||
jubi | 0 | 10,497,537,656 | 100% | ||
moneymustacheman | 0 | 727,952,151 | 100% | ||
bxt | 0 | 23,986,488,555 | 100% | ||
lingfei | 0 | 28,878,816,841 | 100% | ||
yyyy | 0 | 4,761,484,821 | 100% | ||
soshifandub | 0 | 735,895,148 | 100% | ||
carbunco10 | 0 | 182,381,532 | 100% | ||
coldhair | 0 | 40,143,887,007 | 40% | ||
lawrenceho84 | 0 | 5,155,958,922 | 1% | ||
ygern | 0 | 8,313,349,055 | 57% | ||
trafalgar | 0 | 1,885,503,647,578 | 9% | ||
sunmaker | 0 | 968,275,656 | 100% | ||
jondahl | 0 | 1,343,396,664 | 100% | ||
aismor | 0 | 706,071,966 | 100% | ||
davidding | 0 | 1,304,206,823,092 | 50% | ||
kingofdew | 0 | 42,574,893,363 | 100% | ||
hiimamazing | 0 | 1,806,088,403 | 100% | ||
synapse | 0 | 1,982,653,032 | 100% | ||
coocoocachoo | 0 | 22,709,618,771 | 100% | ||
andy2007 | 0 | 648,452,233 | 100% | ||
htliao | 0 | 10,362,711,519 | 52% | ||
gordonovich | 0 | 1,667,279,689 | 10% | ||
aarkay | 0 | 523,016,172 | 100% | ||
stndardwhiteguy | 0 | 646,855,074 | 100% | ||
mandagoi | 0 | 9,884,749,926 | 10% | ||
daystar | 0 | 14,364,313,169 | 100% | ||
me-do | 0 | 222,622,432 | 1% | ||
headliner | 0 | 17,089,530,166 | 100% | ||
ojaber | 0 | 30,199,824,369 | 100% | ||
wylo | 0 | 4,383,909,632 | 100% | ||
renantg | 0 | 4,671,399,393 | 100% | ||
susanlo | 0 | 28,205,425,201 | 100% | ||
leomichael | 0 | 44,215,146,694 | 10% | ||
jkkim | 0 | 33,058,844,199 | 10% | ||
oenophile | 0 | 1,825,874,722 | 100% | ||
muhammadhaseeb | 0 | 533,276,237 | 100% | ||
charles1 | 0 | 8,540,870,238 | 30% | ||
kenchung | 0 | 3,005,054,659 | 17% | ||
happychau123 | 0 | 6,963,714,158 | 100% | ||
rayccy | 0 | 5,527,241,081 | 100% | ||
cryptohustler | 0 | 3,023,550,982 | 100% | ||
auliaturrahman | 0 | 298,683,708 | 96.54% | ||
wilkinshui | 0 | 29,253,885,337 | 72% | ||
arsar | 0 | 1,983,712,075 | 100% | ||
exec | 0 | 73,599,130,396 | 100% | ||
eval | 0 | 734,489,186 | 100% | ||
carobetc | 0 | 3,192,697,341 | 100% | ||
zeteticmindset | 0 | 19,260,723,528 | 100% | ||
steemit1234 | 0 | 557,439,422 | 100% | ||
tsinrong | 0 | 1,230,223,444 | 100% | ||
aaronli | 0 | 4,543,731,135 | 100% | ||
eltapatio | 0 | 116,501,059 | 100% | ||
nationalpark | 0 | 5,788,311,708 | 100% | ||
janny | 0 | 1,050,167,059 | 100% | ||
shenchensucc | 0 | 4,014,029,371 | 100% | ||
oedepus | 0 | 969,190,085 | 100% | ||
asterix87 | 0 | 12,575,903,569 | 100% | ||
rrrenaldooo | 0 | 634,523,709 | 100% | ||
bilal7 | 0 | 584,164,797 | 100% | ||
crypsis | 0 | 10,851,075,126 | 100% | ||
emrekaykusuz | 0 | 1,127,239,443 | 100% | ||
nana.ama | 0 | 205,292,777 | 100% | ||
counterweight | 0 | 473,527,924 | 100% | ||
steppingout23 | 0 | 25,946,547,542 | 5% | ||
steemvotes | 0 | 489,462,248 | 100% | ||
shiroeiroe | 0 | 1,142,932,502 | 100% | ||
mabre | 0 | 1,132,407,092 | 5% | ||
ldauch | 0 | 2,852,288,904 | 100% | ||
whitezoos | 0 | 702,295,981 | 70.7% | ||
amandacerny | 0 | 753,466,903 | 100% | ||
sanzo | 0 | 957,707,134 | 100% | ||
stenyin | 0 | 1,040,891,053 | 100% | ||
lordp | 0 | 647,599,184 | 50% | ||
outhori5ed | 0 | 375,411,455 | 100% | ||
davaowhenyo | 0 | 1,160,690,401 | 100% | ||
allenshayzar | 0 | 1,160,731,732 | 100% | ||
travelgirl | 0 | 1,715,789,876 | 100% | ||
berke | 0 | 214,735,093 | 100% | ||
kdogdiggles13 | 0 | 52,954,079 | 100% | ||
resteeming | 0 | 1,501,541,809 | 100% | ||
ratticus | 0 | 1,190,015,148 | 52% | ||
ravenousappetite | 0 | 1,160,687,862 | 100% | ||
felam1699 | 0 | 215,897,332 | 100% | ||
tyrone3 | 0 | 51,760,339,357 | 100% | ||
sam19 | 0 | 369,657,347 | 100% | ||
zesire | 0 | 226,502,897 | 100% | ||
catwomanteresa | 0 | 1,442,421,151 | 100% | ||
deazydee | 0 | 286,177,253 | 100% | ||
fundoing | 0 | 540,900,941 | 100% | ||
max120 | 0 | 812,505,082 | 100% | ||
jezsmith720 | 0 | 0 | 0% | ||
auntigormint | 0 | 1,212,750,461 | 100% | ||
hooda1artist | 0 | 252,516,467 | 100% | ||
arief2207 | 0 | 1,036,275,144 | 100% | ||
gunsmasterrock | 0 | 313,139,007 | 100% | ||
geneeverett | 0 | 97,410,667 | 100% | ||
hannahwu | 0 | 1,050,414,898 | 100% | ||
twinkledrop | 0 | 989,723,986 | 100% | ||
dingxiaolan | 0 | 1,646,086,271 | 100% | ||
rexbas | 0 | 1,160,679,250 | 100% | ||
rashidminhas | 0 | 98,657,439 | 100% | ||
insideeesteem | 0 | 1,160,675,687 | 100% | ||
konaing | 0 | 620,961,404 | 100% | ||
jair9004 | 0 | 732,692,236 | 100% | ||
liviumalinetescu | 0 | 0 | 0% | ||
leroyjenkins | 0 | 545,516,421 | 50% | ||
mcastro | 0 | 783,454,285 | 100% | ||
aeg97 | 0 | 174,100,952 | 100% | ||
liangfengyouren | 0 | 963,358,595 | 100% | ||
vvtino1 | 0 | 667,386,633 | 100% | ||
duekie | 0 | 243,741,151 | 100% | ||
idx | 0 | 10,232,307,022 | 50% | ||
luislara16 | 0 | 957,553,422 | 100% | ||
nxah | 0 | 957,552,756 | 100% | ||
box54321 | 0 | 713,811,956 | 100% | ||
hamo86 | 0 | 52,230,135 | 100% | ||
cinside | 0 | 1,160,669,485 | 100% | ||
julybrave | 0 | 568,727,934 | 100% | ||
suvanna | 0 | 0 | 100% | ||
abue | 0 | 330,790,688 | 100% | ||
babydoll | 0 | 1,120,045,657 | 100% | ||
gingerbeard | 0 | 1,009,782,038 | 100% |
upvote nd follow https://steemit.com/cute/@atifparvez/have-a-beautifull-face
author | atifparvez |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t111147243z |
category | cn |
json_metadata | {"tags":["cn"],"links":["https://steemit.com/cute/@atifparvez/have-a-beautifull-face"],"app":"steemit/0.1"} |
created | 2017-07-18 11:11:57 |
last_update | 2017-07-18 11:11:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 11:11: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 | 87 |
author_reputation | 1,982,731,406 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,863,241 |
net_rshares | 0 |
Taking my chinese lessons right now, soon i will be able to read all this and also write with chinese also. Chinese are great people, love that country
author | austinofana | ||||||
---|---|---|---|---|---|---|---|
permlink | re-oflyhigh-2017718t13173040z | ||||||
category | cn | ||||||
json_metadata | {"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-18 12:17:39 | ||||||
last_update | 2017-07-18 12:17:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-25 12:17:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.790 HBD | ||||||
curator_payout_value | 0.275 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 151 | ||||||
author_reputation | 187,029,658,788 | ||||||
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 8,867,571 | ||||||
net_rshares | 213,697,440,715 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wylo | 0 | 4,109,744,137 | 100% | ||
gentlebot | 0 | 209,587,696,578 | 100% |
"减少每次Transaction的体积"<=这个有难度
author | beautifulbella |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t115935648z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 11:59:42 |
last_update | 2017-07-18 11:59:42 |
depth | 1 |
children | 1 |
last_payout | 2017-07-25 11:59: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 | 27 |
author_reputation | 1,876,932,920,921 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,866,850 |
net_rshares | 3,803,046,813 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wylo | 0 | 3,803,046,813 | 100% |
对于文章而言,就是言简意赅:)
author | oflyhigh |
---|---|
permlink | re-beautifulbella-re-oflyhigh-bandwidth-and-20170718t121009132z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 12:10:09 |
last_update | 2017-07-18 12:10:09 |
depth | 2 |
children | 0 |
last_payout | 2017-07-25 12:10:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,867,198 |
net_rshares | 1,160,670,125 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
david11 | 0 | 1,160,670,125 | 100% |
突然發現自己被提到,嚇死寶寶了~
author | catwomanteresa |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170719t185529996z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-19 18:55:30 |
last_update | 2017-07-19 18:55:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-26 18:55:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 243,577,374,583,963 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,001,334 |
net_rshares | 0 |
原来Steem机制里还是有反垃圾的设计的,不过像你说的,spam的都是小短文,作用好像不明显,希望在以后的迭代中更好地处理这些问题。
author | coldhair |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t131110113z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 13:10:30 |
last_update | 2017-07-18 13:10:30 |
depth | 1 |
children | 1 |
last_payout | 2017-07-25 13:10:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 34,617,352,014,488 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,871,032 |
net_rshares | 0 |
改变一下算法也不难。每个帖子加个起步价就好了。
author | nationalpark |
---|---|
permlink | re-coldhair-re-oflyhigh-bandwidth-and-20170718t170018231z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 17:00:18 |
last_update | 2017-07-18 17:00:18 |
depth | 2 |
children | 0 |
last_payout | 2017-07-25 17:00: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 | 20,784,116,939,091 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,891,528 |
net_rshares | 0 |
author | deanliu |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t121820483z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 12:18:24 |
last_update | 2017-07-18 12:18:24 |
depth | 1 |
children | 5 |
last_payout | 2017-07-25 12:18:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 3,113,634,810,404,031 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,867,612 |
net_rshares | 16,599,391,521 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
deanliu | 0 | 12,550,986,849 | 1% | ||
wylo | 0 | 4,048,404,672 | 100% |
author | oflyhigh |
---|---|
permlink | re-deanliu-re-oflyhigh-bandwidth-and-20170718t122426768z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 12:24:27 |
last_update | 2017-07-18 12:24:27 |
depth | 2 |
children | 4 |
last_payout | 2017-07-25 12:24:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.063 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,867,947 |
net_rshares | 16,139,345,535 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
deanliu | 0 | 12,550,986,849 | 1% | ||
wylo | 0 | 3,588,358,686 | 100% |
不懂耶,圖案不是也只是算link的文字數嗎?是因為網址會比較長的緣故嗎?確認一下,應該跟圖案實際大小什麼的無關?
author | deanliu |
---|---|
permlink | re-oflyhigh-re-deanliu-re-oflyhigh-bandwidth-and-20170718t221102337z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 22:10:51 |
last_update | 2017-07-18 22:10:51 |
depth | 3 |
children | 3 |
last_payout | 2017-07-25 22:10: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 | 56 |
author_reputation | 3,113,634,810,404,031 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,915,980 |
net_rshares | 1,469,132,653 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
catwomanteresa | 0 | 1,469,132,653 | 100% |
great work! Upv & follow You! Greetings from Poland @deazydee
author | deazydee |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t140732452z |
category | cn |
json_metadata | {"tags":["cn"],"users":["deazydee"],"app":"steemit/0.1"} |
created | 2017-07-18 14:07:33 |
last_update | 2017-07-18 14:07:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 14:07:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 312,441,413,976 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,875,887 |
net_rshares | 0 |
原来是为了防止spam,这个好
author | fundurian |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t112819694z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 11:28:21 |
last_update | 2017-07-18 11:28:21 |
depth | 1 |
children | 2 |
last_payout | 2017-07-25 11:28:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 79,129,081,284,797 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,864,468 |
net_rshares | 0 |
其实spam的都是小短文,问题还真就不大,😄
author | oflyhigh |
---|---|
permlink | re-fundurian-re-oflyhigh-bandwidth-and-20170718t113701523z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 11:37:03 |
last_update | 2017-07-18 11:37:03 |
depth | 2 |
children | 1 |
last_payout | 2017-07-25 11:37:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,865,132 |
net_rshares | 0 |
是啊。昨天看某人发了一大堆水贴一点事都没有。
author | nationalpark |
---|---|
permlink | re-oflyhigh-re-fundurian-re-oflyhigh-bandwidth-and-20170718t165932373z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 16:59:33 |
last_update | 2017-07-18 16:59:33 |
depth | 3 |
children | 0 |
last_payout | 2017-07-25 16:59:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.803 HBD |
curator_payout_value | 0.267 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 20,784,116,939,091 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,891,461 |
net_rshares | 209,587,696,578 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 209,587,696,578 | 100% |
Here we go again. <3
author | hiimamazing |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t134706317z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 13:47:03 |
last_update | 2017-07-18 13:47:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 13:47:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 143,360,332,876 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,874,058 |
net_rshares | 0 |
Thanks for share...
author | jondahl |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t121029068z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 12:10:42 |
last_update | 2017-07-18 12:10:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 12:10: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 | 19 |
author_reputation | 6,555,195,237,163 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,867,213 |
net_rshares | 0 |
买买买!一招就见效。 话说 我虽然发帖一天1到2帖。但是回复也是蛮多的。正常操作好像影响不大
author | jubi |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t112849024z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 11:29:27 |
last_update | 2017-07-18 11:29:27 |
depth | 1 |
children | 1 |
last_payout | 2017-07-25 11:29:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.014 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 82,406,494,254,467 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,864,558 |
net_rshares | 3,956,395,475 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wylo | 0 | 3,956,395,475 | 100% |
一个字,买买买
author | oflyhigh |
---|---|
permlink | re-jubi-re-oflyhigh-bandwidth-and-20170718t113724791z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 11:37:27 |
last_update | 2017-07-18 11:37:27 |
depth | 2 |
children | 0 |
last_payout | 2017-07-25 11:37: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 | 7 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,865,153 |
net_rshares | 3,649,698,151 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wylo | 0 | 3,649,698,151 | 100% |
买买买。。关键是没钱。
author | justyy |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t171907964z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 17:19:09 |
last_update | 2017-07-18 17:19:09 |
depth | 1 |
children | 2 |
last_payout | 2017-07-25 17:19:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 280,616,224,641,976 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,892,721 |
net_rshares | 0 |
钱呢?
author | oflyhigh |
---|---|
permlink | re-justyy-re-oflyhigh-bandwidth-and-20170719t091438629z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-19 09:14:42 |
last_update | 2017-07-19 09:14:42 |
depth | 2 |
children | 1 |
last_payout | 2017-07-26 09:14: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 | 3 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,956,591 |
net_rshares | 0 |
钱都乱花了。。这周五开始休假,带领家人(我姐,姐夫一行人,一共6个大人3小孩) 到处玩, 荷包大出血。
author | justyy |
---|---|
permlink | re-oflyhigh-re-justyy-re-oflyhigh-bandwidth-and-20170719t095538662z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-19 09:55:39 |
last_update | 2017-07-19 09:55:39 |
depth | 3 |
children | 0 |
last_payout | 2017-07-26 09:55:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 280,616,224,641,976 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,959,133 |
net_rshares | 0 |
我也有遇到這個問題呀,真煩人 不過現在steemd好像可以看到自己的bandwidth使用量,好像不錯 
author | kenchung |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t154228488z |
category | cn |
json_metadata | {"tags":["cn"],"image":["https://steemitimages.com/DQmdQDbAF6UNkP74qScVkyYuEYUGKUNBpZLJGyfyKaakxEU/image.png"],"app":"steemit/0.1"} |
created | 2017-07-18 15:42:27 |
last_update | 2017-07-18 15:42:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 15:42: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 | 140 |
author_reputation | 41,181,348,504,685 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,884,559 |
net_rshares | 0 |
赞。
author | liangfengyouren |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t141701463z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 14:16:45 |
last_update | 2017-07-18 14:16:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 14:16:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2 |
author_reputation | 5,130,020,498,207 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,876,710 |
net_rshares | 0 |
原來有關Active 不 Active 事。前陣子一直出那個warning. 一時間還以為sp都被盗了。
author | nuagnorab |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t155519376z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 15:55:18 |
last_update | 2017-07-18 15:55:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 15:55: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 | 52 |
author_reputation | 125,097,310,898,849 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,885,668 |
net_rshares | 0 |
author | oflyhigh |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170721t095648016z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-21 09:56:54 |
last_update | 2017-07-21 09:56:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-28 09:56:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.898 HBD |
curator_payout_value | 0.296 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,177,753 |
net_rshares | 295,454,174,569 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 295,292,841,685 | 20% | ||
eval | 0 | 161,332,884 | 20% |
ha @oflyhigh is there a way to give us this post in full english? because this bandwidth issue is the rave of the moment now with many people having issues with it. i will really appreciate this. thanks
author | outhori5ed |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170719t080955569z |
category | cn |
json_metadata | {"tags":["cn"],"users":["oflyhigh"],"app":"steemit/0.1"} |
created | 2017-07-19 08:10:12 |
last_update | 2017-07-19 08:10:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-26 08:10: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 | 202 |
author_reputation | 39,356,239,578,011 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,952,594 |
net_rshares | 0 |
sure wish I knew what this says.. the picture of the lady crying does not give me hope
author | rebeccabe |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t131108218z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 13:11:09 |
last_update | 2017-07-18 13:11:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 13:11:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 18,143,162,511,159 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,871,093 |
net_rshares | 0 |
Upvote Nd follow and vote back
author | sakshibansal |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t115455467z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 11:54:57 |
last_update | 2017-07-18 11:54:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 11:54: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 | 30 |
author_reputation | 39,758,873,676 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,866,437 |
net_rshares | 0 |
Good post. Very informative and full of useful facts and data. Good work and content. Will continue to follow your post. Good job.
author | steppingout23 |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t150808922z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 15:08:09 |
last_update | 2017-07-18 15:08:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 15:08:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 2,283,427,670,056 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,881,393 |
net_rshares | 0 |
Thanks for sharing.
author | team101 |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t122941399z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 12:29:48 |
last_update | 2017-07-18 12:29:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-25 12:29: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 | 19 |
author_reputation | 12,700,047,182,916 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,868,255 |
net_rshares | 0 |
佩服技术大牛们。
author | tumutanzi |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t124110061z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 12:41:09 |
last_update | 2017-07-18 12:41:09 |
depth | 1 |
children | 2 |
last_payout | 2017-07-25 12:41:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 193,724,901,968,179 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,868,950 |
net_rshares | 0 |
牛啥,老了,学东西吃力了
author | oflyhigh |
---|---|
permlink | re-tumutanzi-re-oflyhigh-bandwidth-and-20170718t124549715z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 12:45:51 |
last_update | 2017-07-18 12:45:51 |
depth | 2 |
children | 1 |
last_payout | 2017-07-25 12:45: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 | 12 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,869,252 |
net_rshares | 0 |
在我看来,已经是很厉害了,能钻研代码。
author | tumutanzi |
---|---|
permlink | re-oflyhigh-re-tumutanzi-re-oflyhigh-bandwidth-and-20170718t125605637z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 12:56:06 |
last_update | 2017-07-18 12:56:06 |
depth | 3 |
children | 0 |
last_payout | 2017-07-25 12:56: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 | 19 |
author_reputation | 193,724,901,968,179 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,869,979 |
net_rshares | 0 |
author | ygern |
---|---|
permlink | re-oflyhigh-bandwidth-and-20170718t114414941z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 11:44:15 |
last_update | 2017-07-18 11:44:15 |
depth | 1 |
children | 1 |
last_payout | 2017-07-25 11:44:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 22,473,700,912,430 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,865,658 |
net_rshares | 8,695,427,078 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wylo | 0 | 3,895,056,010 | 100% | ||
nuagnorab | 0 | 4,800,371,068 | 100% |
😀
author | oflyhigh |
---|---|
permlink | re-ygern-re-oflyhigh-bandwidth-and-20170718t115428473z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-18 11:54:30 |
last_update | 2017-07-18 11:54:30 |
depth | 2 |
children | 0 |
last_payout | 2017-07-25 11:54:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 6,451,380,005,052,166 |
root_title | "从代码看 Bandwidth 超限问题 & 如何避免和解决" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,866,409 |
net_rshares | 3,741,707,348 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wylo | 0 | 3,741,707,348 | 100% |