真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加? by oflyhigh

View this thread on steempeak.com
· @oflyhigh ·
$260.11
真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?
最近有些朋友问我,***声望分越高的人给别人点赞,对方的声望分增加的越快吗?***其实我直观的感受不是这样的,而是有效SP越多的给别人点赞,对别人的声望分影响越大。

但是直观的感觉有时候可能会得出错误的结论,自己凭感觉做事到无所谓了,但是如果给他人造成误导,就不妥了。恰巧,我对声望分如何增加以及都受哪写因素影响,一直不甚清楚,那么就这个机会调查一下,帮别人也是帮自己答疑解惑吧。

![](https://steemitimages.com/DQmTApTP8Dp97KBevQX2V88As1h8uqSJRx6U2DqiUTSQSiV/image.png)
(图源 :[pixabay](https://pixabay.com))

# 声望分与声望数值

在五个多月以前,我曾经做过一组图形,来展示了一下声望分升级曲线。比如说以下两幅图形:

![](https://steemitimages.com/DQmRQoYFHBiSvDy2CcA8UZ8FJXYMMfGHsMigskWLA8ZKFCk/-20%2C70.png)
图一: 声望分-20到70 / Reputation Score -20 to 70

![](https://steemitimages.com/0x0/https://steemitimages.com/DQmXZWoaDDDfM7mteCG9Fp9mf5wCZe6SzHG6cdmERBTr96c/25%2C60.png)
图二: 声望分25到60 / Reputation Score 25 to 60

从这些图形中我们不难得出结论:
* 声望分以25为中心,对称分布的
Reputation score using 25 as the axis, symmetrically distributed.

* 声望分越高,提升越困难
The higher the reputation score, the more difficult to raise it up.

但是,上述分析其实只是***`reputation score`***与***`reputation数值`***的关系,换句话说是***把原本线性变化的数值变成了对数变化的分值***。

真正影响你声望分(分值)变化的是reputation这个数值,而上述分析中,我们没能体现出来这个数值是如何变化的。为了搞懂这个数值很什么有关系,我尝试去代码找到答案并做了一些测试。

# 代码

调整reputation的代码位于[这个文件](https://github.com/steemit/steem/blob/master/libraries/plugins/follow/follow_plugin.cpp)中,其中相关的代码如下:
![](https://steemitimages.com/DQmPt2kMEm7Y2XF6CBi6EjwKcgy9EZznuxTiQ4Gfw3GvkEf/image.png)

# 影响声望数值的原则
从注释和代码中我们不难看到以下原则:
* ***点赞者声望数值为负不会对他人声望分产生影响***
`if( voter_rep != rep_idx.end() && voter_rep->reputation < 0 ) return;`
* ***声望数值比作者声望数值低,差评没有影响***
  * 作者尚无声望数值
` if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > 0 )) return;`
  * 作者已有声望数值
` if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > author_rep->reputation ) ) return;`

# 什么影响声望数值
那么去掉以上对声望数值没影响的情况,什么会对声望数值产生影响呢?我们再来看代码:

* 作者尚无声望数值
![](https://steemitimages.com/DQmU7sBTf3HmM8prmLHXEoL36DjEXZK2BQiueJFmachpD4J/image.png)

* 作者已有声望数值
![](https://steemitimages.com/DQmPCuzjTBjzLS569ZVgtZp1Vv6QdegGCssYBXB8oUnhBhF/image.png)

也就是说,***影响声望数值的唯一因素就是投票产生的rshares***.

说到***`rshares`***,我们在前边文章中不止一次讲过,除了区块链本身一些因素,***`rshares`***只跟***投票者的有效SP、投票百分比、投票者当前Voting Power***有关。

# 测试

为了证实上述结论:***影响声望数值的唯一因素就是投票产生的rshares***

我使用测试账户进行了一下测试:

测试账户之前的声望数值:
![](https://steemitimages.com/DQmdjCB1uZEkPvqo5ccYYCV1JCXaH1ZDBzrHXhSEMAhuzDZ/image.png)

测试账户发表个回复,我们对其点赞:
![](https://steemitimages.com/DQmRes4WgLPwb1ibepmbEkymc6j3R9HMPrGew9HXcfS7rNq/image.png)

点赞后的声望数值:
![](https://steemitimages.com/DQmVyivYVqSWgjoXZnHRfiY8dvgneQPDKWvujc5h7e9AgzZ/image.png)

通过计算我们可得:
`77092232437 + 29363586547 / 64 = 77511038476`
![](https://steemitimages.com/DQmQrGssQ2kis6LN3iBoCdkGd3fNRtFuuPkMzGpFoBdfe6v/image.png)

计算结果有公式:***`r.reputation += ( cv->rshares >> 6 ); `***相符。

# 点7天以上老帖的情况

你可能会问,你上边没有说明对7天以上老帖子点赞是否会影响声望数值,那么是不是意味找给老帖点赞也会增加作者的声望数值啊?

好吧,为了不让代码霸屏,我截取的有点短,其实还有这样一段代码:
![](https://steemitimages.com/DQmeZaWVAneyjbmoj3uTtZog7MRDM3aCrMUg4TWDsvzk4R2/image.png)

也就是说***给老帖点赞不会增加作者声望数值***

# 结论

![](https://steemitimages.com/DQmTirr5H49cCmDQQtUjXkxS4c6cJS3kisuiuqwufeG3YYc/image.png)
(图源 :[pixabay](https://pixabay.com))

* 点赞者声望数值为负不会对他人声望分产生影响
* 声望数值比作者声望数值低,差评没有影响
* ***影响声望数值的唯一因素就是投票产生的rshares***
* ***`rshares`***只跟***投票者有效SP、投票百分比、Voting Power***有关。
* ***给老帖点赞不会增加作者声望数值***

***(注:声望数值为负和声望分为负是两个概念哦)***

写到这里,***声望分越高对别人声望分影响越大***,是真理还是谎言,还用我额外给出结论吗?

# 相关链接
* [关于声望分与Reputation数值对应关系的几幅图形](https://steemit.com/cn/@oflyhigh/reputation)
* https://github.com/steemit/steem/blob/master/libraries/plugins/follow/follow_plugin.cpp
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 126 others
properties (23)
post_id25,824,741
authoroflyhigh
permlink5fg31h-and
categoryreputation
json_metadata"{"app": "steemit/0.1", "format": "markdown", "links": ["https://pixabay.com", "https://github.com/steemit/steem/blob/master/libraries/plugins/follow/follow_plugin.cpp", "https://steemit.com/cn/@oflyhigh/reputation"], "image": ["https://steemitimages.com/DQmTApTP8Dp97KBevQX2V88As1h8uqSJRx6U2DqiUTSQSiV/image.png"], "tags": ["reputation", "steemdev", "rshares", "cn-programming", "cn"]}"
created2018-01-15 12:55:36
last_update2018-01-15 12:55:36
depth0
children32
net_rshares27,418,399,945,078
last_payout2018-01-22 12:55:36
cashout_time1969-12-31 23:59:59
total_payout_value218.778 SBD
curator_payout_value41.327 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length3,417
author_reputation1,148,153,621,496,884
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (190)
@deybala ·
very helpfull !!!!!!!!1  thanks for interesting post sir
properties (22)
post_id25,825,959
authordeybala
permlinkre-oflyhigh-5fg31h-and-20180115t130230177z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:02:36
last_update2018-01-15 13:02:36
depth1
children0
net_rshares0
last_payout2018-01-22 13:02:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation652,295,593,099
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@christinb ·
Wow good article
properties (22)
post_id25,826,289
authorchristinb
permlinkre-oflyhigh-5fg31h-and-20180115t130418868z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:04:24
last_update2018-01-15 13:04:24
depth1
children0
net_rshares0
last_payout2018-01-22 13:04:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation251,188,643,150
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@meixia ·
很有帮助呢~
properties (22)
post_id25,826,897
authormeixia
permlinkre-oflyhigh-5fg31h-and-20180115t130803467z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:08:21
last_update2018-01-15 13:08:21
depth1
children0
net_rshares0
last_payout2018-01-22 13:08:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation2,557,277,030,301
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@christinb ·
Nice article
properties (22)
post_id25,827,130
authorchristinb
permlinkre-oflyhigh-5fg31h-and-20180115t130947282z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:09:48
last_update2018-01-15 13:09:48
depth1
children0
net_rshares0
last_payout2018-01-22 13:09:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation251,188,643,150
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dapeng ·
那个图都是五个月前的了?我感觉就像是前两天的事儿。

所以我就说了: steem 上 SP 最大!
👍  
properties (23)
post_id25,828,616
authordapeng
permlinkre-oflyhigh-5fg31h-and-20180115t131901806z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:19:00
last_update2018-01-15 13:19:00
depth1
children1
net_rshares2,157,215,610
last_payout2018-01-22 13:19:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length49
author_reputation64,235,894,740,263
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@oflyhigh ·
steem自带时间加速时间减速功能,最终的结果就是时空观错乱😀
properties (22)
post_id25,829,804
authoroflyhigh
permlinkre-dapeng-re-oflyhigh-5fg31h-and-20180115t132602848z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:26:03
last_update2018-01-15 13:26:03
depth2
children0
net_rshares0
last_payout2018-01-22 13:26:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length31
author_reputation1,148,153,621,496,884
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@langyue ·
感觉这几天在大神们帖子中扫盲了很多东西了  3q
properties (22)
post_id25,829,233
authorlangyue
permlinkre-oflyhigh-5fg31h-and-20180115t132242092z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:22:48
last_update2018-01-15 13:22:48
depth1
children0
net_rshares0
last_payout2018-01-22 13:22:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation31,220,829,994
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@weiwang01 ·
诚心膜拜中
properties (22)
post_id25,829,545
authorweiwang01
permlinkre-oflyhigh-5fg31h-and-20180115t132428485z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:24:30
last_update2018-01-15 13:24:30
depth1
children0
net_rshares0
last_payout2018-01-22 13:24:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5
author_reputation9,261,187,281
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wilhb81 ·
哦,原来给超过7天的老帖点赞,是没有任何帮助的。这下又学习了,谢谢O哥~
properties (22)
post_id25,830,596
authorwilhb81
permlinkre-oflyhigh-5fg31h-and-20180115t133029442z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:30:30
last_update2018-01-15 13:30:30
depth1
children0
net_rshares0
last_payout2018-01-22 13:30:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length36
author_reputation459,433,037,961,022
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@justcook ·
诚心膜拜中
properties (22)
post_id25,830,616
authorjustcook
permlinkre-oflyhigh-5fg31h-and-20180115t133036155z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:30:36
last_update2018-01-15 13:30:36
depth1
children0
net_rshares0
last_payout2018-01-22 13:30:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5
author_reputation20,417,379,446
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jiashin ·
$0.12
你的帖子解决了我很多关于声望数值及声望分的迷惑,怪不得我的声望分一直停留在40,谢谢@oflyhigh分享呀
👍  ,
properties (23)
post_id25,830,981
authorjiashin
permlinkre-oflyhigh-5fg31h-and-20180115t133237255z
categoryreputation
json_metadata"{"app": "steemit/0.1", "users": ["oflyhigh"], "tags": ["reputation"]}"
created2018-01-15 13:32:36
last_update2018-01-15 13:32:36
depth1
children0
net_rshares12,758,395,649
last_payout2018-01-22 13:32:36
cashout_time1969-12-31 23:59:59
total_payout_value0.091 SBD
curator_payout_value0.024 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length54
author_reputation1,085,314,375,681
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@abed894 ·
Really great article I made a good choice, my friend, I hope to become successful like you
properties (22)
post_id25,832,747
authorabed894
permlinkre-oflyhigh-5fg31h-and-20180115t134241573z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:42:45
last_update2018-01-15 13:42:45
depth1
children0
net_rshares0
last_payout2018-01-22 13:42:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation-53,156,399,356
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rivalhw ·
我就是来看评论的,另外感觉这个所谓声望没什么实际意义
properties (22)
post_id25,832,947
authorrivalhw
permlinkre-oflyhigh-5fg31h-and-20180115t134349360z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 13:43:51
last_update2018-01-15 13:43:51
depth1
children1
net_rshares0
last_payout2018-01-22 13:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length26
author_reputation385,084,072,019,334
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@victory622 ·
>声望数值比作者声望数值低,差评没有影响

这一条感觉还有点用
properties (22)
post_id25,915,233
authorvictory622
permlinkre-rivalhw-re-oflyhigh-5fg31h-and-20180115t221906012z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 22:19:03
last_update2018-01-15 22:19:03
depth2
children0
net_rshares0
last_payout2018-01-22 22:19:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length31
author_reputation44,554,224,504,446
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@aliraza007 ·
this is a very beautiful post brother. you are very nice man.
you are talented man.
https://steemit.com/@aliraza007
properties (22)
post_id25,833,114
authoraliraza007
permlinkre-oflyhigh-5fg31h-and-20180115t134609071z
categoryreputation
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/@aliraza007"], "tags": ["reputation"]}"
created2018-01-15 13:44:51
last_update2018-01-15 13:44:51
depth1
children0
net_rshares0
last_payout2018-01-22 13:44:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation85,550,435,014
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jiangchen ·
果然,sp才是老大。😂
properties (22)
post_id25,838,983
authorjiangchen
permlinkre-oflyhigh-5fg31h-and-20180115t141725230z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 14:17:27
last_update2018-01-15 14:17:27
depth1
children0
net_rshares0
last_payout2018-01-22 14:17:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation30,823,992,397,451
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@shenchensucc ·
求o哥狠狠提高我声望值。。。。哈哈。
properties (22)
post_id25,843,594
authorshenchensucc
permlinkre-oflyhigh-5fg31h-and-20180115t144333125z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 14:43:39
last_update2018-01-15 14:43:39
depth1
children1
net_rshares0
last_payout2018-01-22 14:43:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation313,809,918,917,512
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mygoblin ·
同求 :P
properties (22)
post_id25,921,168
authormygoblin
permlinkre-shenchensucc-re-oflyhigh-5fg31h-and-20180115t230720967z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 23:07:21
last_update2018-01-15 23:07:21
depth2
children0
net_rshares0
last_payout2018-01-22 23:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5
author_reputation1,068,781,404,226
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wang-peilin · (edited)
感谢分享,破解大家的一个误解
properties (22)
post_id25,850,585
authorwang-peilin
permlinkre-oflyhigh-5fg31h-and-20180115t152239850z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 15:22:42
last_update2018-01-15 15:23:03
depth1
children0
net_rshares0
last_payout2018-01-22 15:22:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation2,187,761,623,949
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dsocer ·
对 ,和我的感觉一样
properties (22)
post_id25,859,385
authordsocer
permlinkre-oflyhigh-2018115t81546733z
categoryreputation
json_metadata"{"app": "esteem/1.5.0", "format": "markdown+html", "community": "esteem", "tags": ["reputation", "steemdev", "rshares", "cn-programming", "cn"]}"
created2018-01-15 16:15:48
last_update2018-01-15 16:15:48
depth1
children0
net_rshares0
last_payout2018-01-22 16:15:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation4,063,393,568,715
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@aafeng ·
$0.03
O神讲的真的是清楚。解决了好多人包括我的困惑。
👍  
properties (23)
post_id25,920,132
authoraafeng
permlinkre-oflyhigh-5fg31h-and-20180115t225909096z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 22:59:09
last_update2018-01-15 22:59:09
depth1
children0
net_rshares3,661,862,016
last_payout2018-01-22 22:59:09
cashout_time1969-12-31 23:59:59
total_payout_value0.033 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation154,091,178,885,616
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@rileyge ·
用代码说话,喜欢的方式。
properties (22)
post_id25,922,739
authorrileyge
permlinkre-oflyhigh-5fg31h-and-20180115t232020237z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-15 23:20:21
last_update2018-01-15 23:20:21
depth1
children0
net_rshares0
last_payout2018-01-22 23:20:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation652,295,593,099
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@guyverckw ·
又長知識了.  多謝O大!!!!
properties (22)
post_id25,935,723
authorguyverckw
permlinkre-oflyhigh-5fg31h-and-20180116t010315751z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-16 01:03:15
last_update2018-01-16 01:03:15
depth1
children0
net_rshares0
last_payout2018-01-23 01:03:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation104,712,854,805,089
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@we-media ·
厉害厉害,学习了
properties (22)
post_id25,945,045
authorwe-media
permlinkre-oflyhigh-5fg31h-and-20180116t021810463z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-16 02:18:12
last_update2018-01-16 02:18:12
depth1
children0
net_rshares0
last_payout2018-01-23 02:18:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8
author_reputation1,460,307,932
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gsxr ·
請教一下, 如果聲望高的人組成一隊, 互相投票, 就變成了小圈子的大者恆大?
properties (22)
post_id25,945,775
authorgsxr
permlinkre-oflyhigh-5fg31h-and-20180116t022409517z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-16 02:24:09
last_update2018-01-16 02:24:09
depth1
children0
net_rshares0
last_payout2018-01-23 02:24:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length38
author_reputation1,268,625,198,103
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hushuilan ·
o哥,我有一个比较low的问题要请教你,我看了你的很多篇文章,觉得很不错,于是我想在你的主页找你早期写的一些文章来读一读,然后我发现下拉都只能看到几个月前的文章(不是网络加载问题),于是我上STEEMDB上查找你的文章,也基本只能看近期的。然后在AskSteem上查找,但是这样的查找是比较混乱的。请原谅我想拜读你的文章又暂时没找到合适的方法。
👍  
properties (23)
post_id25,952,884
authorhushuilan
permlinkre-oflyhigh-5fg31h-and-20180116t032121802z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-16 03:21:39
last_update2018-01-16 03:21:39
depth1
children0
net_rshares605,234,102
last_payout2018-01-23 03:21:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length172
author_reputation1,773,735,625,367
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yangjun ·
求相互点赞~加点赞群
https://steemit.com/cn/@yangjun/steemit
properties (22)
post_id25,971,836
authoryangjun
permlinkre-oflyhigh-5fg31h-and-20180116t055218820z
categoryreputation
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/cn/@yangjun/steemit"], "tags": ["reputation"]}"
created2018-01-16 05:52:21
last_update2018-01-16 05:52:21
depth1
children0
net_rshares0
last_payout2018-01-23 05:52:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length50
author_reputation4,737,569,079
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kunpeng2nan ·
谢谢你的分享。我认为steemit是为了让大家专注于写好的故事,而不是专注于声望的提高,所谓规则,应该伴随着steemit的发展,更好的反哺平台和用户。熟悉平台的规则很重要,但我更希望声望高的用户,是平台自然产出的,而不是仅仅因为熟悉平台的规则而产生。
——@kunpeng2nan
properties (22)
post_id25,972,034
authorkunpeng2nan
permlinkre-oflyhigh-5fg31h-and-20180116t055357948z
categoryreputation
json_metadata"{"app": "steemit/0.1", "users": ["kunpeng2nan"], "tags": ["reputation"]}"
created2018-01-16 05:54:00
last_update2018-01-16 05:54:00
depth1
children0
net_rshares0
last_payout2018-01-23 05:54:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length141
author_reputation1,088,094,629
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hushuilan ·
O哥呀,你这发文速度,我感觉我每天消化不过来呀(怪我笨咯)
properties (22)
post_id26,030,193
authorhushuilan
permlinkre-oflyhigh-5fg31h-and-20180116t131027357z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-16 13:10:27
last_update2018-01-16 13:10:27
depth1
children0
net_rshares0
last_payout2018-01-23 13:10:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length29
author_reputation1,773,735,625,367
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hui.zhao ·
我也觉得是sp多的人点击效果更大一点 
要不然那么多人买赞了
不都是为了升级嘛
properties (22)
post_id26,201,229
authorhui.zhao
permlinkre-oflyhigh-5fg31h-and-20180117t094349501z
categoryreputation
json_metadata"{"app": "busy/2.2.0", "community": "busy", "tags": ["reputation"]}"
created2018-01-17 09:43:24
last_update2018-01-17 09:43:24
depth1
children0
net_rshares0
last_payout2018-01-24 09:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length39
author_reputation3,521,005,201,684
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cuilewudi ·
新手进来学习了,感谢分享!!!
properties (22)
post_id26,946,522
authorcuilewudi
permlinkre-oflyhigh-5fg31h-and-20180121t021149065z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-01-21 02:11:45
last_update2018-01-21 02:11:45
depth1
children0
net_rshares0
last_payout2018-01-28 02:11:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation0
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@anariggie ·
一見到代碼就有種要暈的感覺......
properties (22)
post_id34,651,085
authoranariggie
permlinkre-oflyhigh-5fg31h-and-20180223t080826854z
categoryreputation
json_metadata"{"app": "steemit/0.1", "tags": ["reputation"]}"
created2018-02-23 08:13:57
last_update2018-02-23 08:13:57
depth1
children0
net_rshares0
last_payout2018-03-02 08:13:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length19
author_reputation548,136,710,155
root_title"真理还是谎言: 声望分越高对别人声望分影响越大吗?/ 代码&测试:到底什么影响声望分的增加?"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000