create account

STEEM编程练习记录 四 by lnakuma

View this thread on: hive.blogpeakd.comecency.com
· @lnakuma ·
$8.06
STEEM编程练习记录 四
相信这几天大家在STEEM的生活一定是异常丰富的。从可以尽情的啪啪啪,到突然间上不去SteemCN,再到哪个结点都上不去,再到可以上Steempeak,再到只可以用Chrome扩展程序鼓掌,再到连扩展程序都不行了。最后到终于全恢复了。

一天之内大起大落,也算玩了个刺激。当然也有想我这样没什么分量的人,基本上属于在吃瓜围观。

五天前,村长@ericet和我商量能够在Liker Extension中增加一个开关,在浏览器中可以选择是否显示LikeCoin拍手键;我也想降低访问Steem API结点的次数,以免被列入黑名单。

今天我就来讲一讲如何能够增加以上两个功能。

* https://github.com/xiangstan/likecoin-extension
* https://gitee.com/xiangstan/likecoin-extension

## 设计思路

![](https://cdn.steemitimages.com/DQmV8hDCvQew3Y9t9xtQuSE7wpWkpSyfhSq55fKACgP2bmz/image.png)
*Figure 1*

点击浏览器右上角likecoin-extension的图标,可以打开一个小小的视窗。这个视窗其实就是一同包装在扩展程序包中的***popup.html***。作为一个**HTML**形式小网页,它可以读取**JavaScript**的程序,和**CSS**样式。正可谓麻雀虽小但五脏俱全。在这个小网页中,我们可以增加一个普通的开关,并运行相关的JavaScript event。

但是popup.html不能把任何数据变量直接送到***liker.js***当中去。所以必须使用**Chrome**浏览器自己的传送功能传递数据。

当每次运行扩展程序的时候,程序在浏览器的背景中连接[STEEM API](https://cdn.jsdelivr.net/npm/steem/dist/steem.min.js)的方程,从而获取following的列表。在[STEEM编程练习记录 三](https://www.steem.buzz/hive-180932/@lnakuma/3kphao-steem)中曾经提到测试中由于过度的更新页面,anyx.io暂时把我block掉了。所以我需要在程序中增加一个时间的记录,这样我可以在自己规定的时间能,使用已经下载下来的following列表检查当前文章的作者是否是一个注册**Matters.news**的作者。

## 编写程序

1. 首先,先要给自己使用***Chrome API***的权限。在manifest.json中添加下面的数据,这两个权限分别给与扩展程序应用当前页面和Chrome自己的存储。
   ```
   "permissions": [
      "activeTab", "storage"
   ]
   ```
    很多时候,网页需要在浏览器中存储一些数据,Storage便是网页在浏览器中寄存数据的地方。打个比方,就像我现在码字的这个页面,然后我们到developer tool里面的Application->Local Storage内,我们就可以看到一下的数据。这也是为什么在我们还没有敲完所有的字,却更新页面之后,我们之前写的东西还在的原因。
![](https://cdn.steemitimages.com/DQmNTfk846cc9FnyHqe9tadWpksANBhKZDmYd8Y2SfHCPUD/image.png)
*Figure 2*

1. 从***popup.html***传送数据到***liker.js***里面需要使用***Chrome API*** *chrome.tabs.sendMessage()*
    ```
    const clickButton = (data) => {
      chrome.tabs.query({ active: true, currentWindow: true}, function (tabs) {
        chrome.tabs.executeScript(tabs[0].id, { file: "liker.js" });
        chrome.tabs.sendMessage(tabs[0].id, !data);
      });
    };
    ```
    上面的代码中,扩展程序先调用chrome.tabs的API运行***liker.js***,再想当前的浏览器的页面发送需要发送的数据。这里的数据就是我们要显示的开关的数值。<br />在***liker.js***中增加一个随时倾听Message的触发。
   ```
    chrome.runtime.onMessage.addListener( function(message) {
      chrome.storage.local.set({disableRunning: message});
    });
   ```
    由于**JavaScript**异步的特性,***liker.js***在等待从***popup.html***传送过来的数据的同时,回继续运行下面的指令。这一特性将会导致程序不知道当时***popup.html***中是否是真正的打开还是关闭。所以,我用到了chrome的另一个API:storage。把开关的状态存在storage里面还有一个好处,就是在重新打开***popup.html***的小视窗的时候,还可以随时更新开关的数值。
3. 减少访问结点的次数其实是最简单的事情之一。
    ```
    let rightNow = Math.floor(Date.now());
      if (rightNow >= fTimeout) {
        following = await getFollowing();
        fTimeout = fTimeout + 100000;
        fList = following;
        console.log("Refresh following list");
      }
      else {
        console.log("Use existing following list");
      }
    ```
    设置两个便令分辨储存当前时间和十分钟之后的时间;如果需要访问结点,便更新一次十分钟后的时间。每次需要读取following列表的时候,更新当前时间,并和上一次更新十分钟后的时间做比较,如果还没有到十分钟之后,便是用上次访问结点取得的数据。

## 扩展程序使用效果

这次我的实验小白鼠是@bring的[老吴的新介绍 Introducing Myself](https://www.steem.buzz/hive-180932/@tanlikming/6caqpm)。上面*Figuer 1*就是在打开扩展程序时候,likeCoin button被显示的效果。

![](https://cdn.steemitimages.com/DQmQ8pE92Csge9K8iCfgNyQujqAGZ7gF9aTWFKkCz9uQjNr/image.png)
*Figure 3*

上面*Figure 1*则展示的是关掉扩展程序之后,拍手键自动消失。

作为向我这样的马大哈,当然在测试的时候发现没有想到的BUG。当我关闭扩展程序,退回到文章列表,在打开开关之后,拍手键将在也无法出现。

根据分析,我发现在我原本的程序中我并没有在每一次更新拍手键的时候强制取消取消隐藏拍手键的**CSS**样式。只要在原来的createLikerButton程式中加上
```
document.getElementById("likecoin-iframe").classList.remove("elem-hide");
```
便可解决问题。

我还无意间发现新版SteemCN自带的拍手键和扩展程序中的拍手键记录了不同的网址。

![](https://cdn.steemitimages.com/DQmXjxV4HMGhcGuSBUcx1oG5QEcbeME95oWWUv3bVTSqy2B/image.png)
*Figure 4*

现在很多浏览器都省略掉了网址前端的www。而**JavaScript**读取网址的程式没有这么做。这个小小的BUG倒给与我们一篇文章啪啪十次的机会。当然,现在Liker Land上面还没有显示是否有五啪不奏效。这个要等到明天我才能测试出最后的结果。

## 以后还可以做什么

自动拍手。其实在SteemCN刚刚增加拍拍手的时候,我就尝试着做了一个扩张程序。但是由于设计思路的问题,并没有成功。村长@ericet昨天介绍了LikeCoin的API。我觉得有时间的话,可行性很高。只要不用每天在STEEM上读一堆你骂我我骂你的文章,应该有时间开发自动拍手的功能。

***但是有个问题来了,如果自动拍手了,大家还看文章吗?***
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 673 others
properties (23)
authorlnakuma
permlink2gttw6-steem
categoryhive-180932
json_metadata{"tags":["cn","cn-reader","cn-curation","cn-stem","steemstem","cn-programming","steemleo","whalepower","creativecoin","palnet","dblog","zzan","neoxian","lassecash","esteem","esteem-cn","sct","sct-cn","diamondtoken","mediaofficials","marlians","upfundme","actnearn"],"users":["ericet","bring"],"image":["https://cdn.steemitimages.com/DQmV8hDCvQew3Y9t9xtQuSE7wpWkpSyfhSq55fKACgP2bmz/image.png","https://cdn.steemitimages.com/DQmNTfk846cc9FnyHqe9tadWpksANBhKZDmYd8Y2SfHCPUD/image.png","https://cdn.steemitimages.com/DQmQ8pE92Csge9K8iCfgNyQujqAGZ7gF9aTWFKkCz9uQjNr/image.png","https://cdn.steemitimages.com/DQmXjxV4HMGhcGuSBUcx1oG5QEcbeME95oWWUv3bVTSqy2B/image.png"],"links":["https://github.com/xiangstan/likecoin-extension","https://gitee.com/xiangstan/likecoin-extension","https://cdn.jsdelivr.net/npm/steem/dist/steem.min.js","https://www.steem.buzz/hive-180932/@lnakuma/3kphao-steem","https://www.steem.buzz/hive-180932/@tanlikming/6caqpm"],"app":"esteem/2.2.2-mobile","format":"markdown","community":"esteemapp"}
created2020-03-05 07:26:30
last_update2020-03-05 07:26:30
depth0
children21
last_payout2020-03-12 07:26:30
cashout_time1969-12-31 23:59:59
total_payout_value3.994 HBD
curator_payout_value4.062 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,870
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 四"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,072,144
net_rshares28,021,112,952,387
author_curate_reward""
vote details (737)
@aellly ·
我是来啪啪啪的。
properties (22)
authoraellly
permlinkq6qld7
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-05 20:10:21
last_update2020-03-05 20:10:21
depth1
children1
last_payout2020-03-12 20:10:21
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_length8
author_reputation636,754,842,106,523
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,094,802
net_rshares0
@lnakuma ·
欢迎,回啪
properties (22)
authorlnakuma
permlinkre-aellly-202035t223613911z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-06 05:36:15
last_update2020-03-06 05:36:15
depth2
children0
last_payout2020-03-13 05:36:15
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_length5
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 四"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,109,077
net_rshares0
@annepink ·
那样就没多少人会留意文章了😅
也许时间上允许或感兴趣可能会看
@tipu curate
!shop

Posted using [Partiko Android](https://partiko.app/referral/annepink)
properties (22)
authorannepink
permlinkannepink-re-lnakuma-2gttw6-steem-20200305t074136585z
categoryhive-180932
json_metadata{"app":"partiko","client":"android"}
created2020-03-05 07:41:36
last_update2020-03-05 07:41:36
depth1
children1
last_payout2020-03-12 07:41:36
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_length120
author_reputation787,832,722,751,162
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,072,494
net_rshares0
@tipu ·
<a href="https://tipu.online/curator?annepink" target="_blank">Upvoted  &#128076;</a> (Mana: 10/15 - <a href="https://steempeak.com/steem/@tipu/tipu-curate-project-update-recharging-curation-mana" target="_blank">need recharge</a>?)
properties (22)
authortipu
permlinkre-annepink-re-lnakuma-2gttw6-steem-20200305t074136585z-20200305t074151
categoryhive-180932
json_metadata""
created2020-03-05 07:41:51
last_update2020-03-05 07:41:51
depth2
children0
last_payout2020-03-12 07:41:51
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_length232
author_reputation55,204,773,715,723
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,072,502
net_rshares0
@ericet ·
最后那个问题是关键。其实程序我已经写好了,也已经运行了,就是在纠结最后一个问题
properties (22)
authorericet
permlinkre-lnakuma-2gttw6-steem-20200305t133908118z
categoryhive-180932
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["hive-180932"],"users":[],"links":[],"image":[]}
created2020-03-05 13:39:09
last_update2020-03-05 13:39:09
depth1
children1
last_payout2020-03-12 13:39:09
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_length39
author_reputation195,650,625,080,393
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,082,815
net_rshares0
@lnakuma ·
同感,心里还是希望大家多看看写的内容👏 👏
properties (22)
authorlnakuma
permlinkre-ericet-202035t22242170z
categoryhive-180932
json_metadata{"tags":["hive-180932"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-06 05:24:03
last_update2020-03-06 05:24:03
depth2
children0
last_payout2020-03-13 05:24:03
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_length21
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 四"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,108,821
net_rshares0
@esteemapp ·
Thanks for using **eSteem**! <br>Your post has been **voted** as a part of [eSteem encouragement program](https://esteem.app/esteem/@good-karma/encouragement-program-continues-82eafcd10a299). Keep up the good work! <br>Dear reader, Install [Android](https://play.google.com/store/apps/details?id=app.esteem.mobile.android), [iOS](https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1451896376&mt=8) Mobile app or [Windows, Mac, Linux](https://github.com/esteemapp/esteem-surfer/releases) Surfer app, if you haven't already!<br>Learn more: https://esteem.app <br>Join our discord: https://discord.me/esteem
properties (22)
authoresteemapp
permlinkre-202035t9340152z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.2-welcome","format":"markdown+html","community":"esteem.app"}
created2020-03-05 08:34:00
last_update2020-03-05 08:34:00
depth1
children0
last_payout2020-03-12 08:34:00
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_length620
author_reputation420,443,679,514,793
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,073,764
net_rshares0
@goodreader ·
牛,已阅,🐂啪
properties (22)
authorgoodreader
permlinkq6puz1
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-05 10:40:21
last_update2020-03-05 10:40:21
depth1
children1
last_payout2020-03-12 10:40:21
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_length7
author_reputation20,526,422,885,116
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,077,144
net_rshares0
@lnakuma ·
啪啪回敬,简单明了
properties (22)
authorlnakuma
permlinkre-goodreader-202035t221422167z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-06 05:14:24
last_update2020-03-06 05:14:24
depth2
children0
last_payout2020-03-13 05:14:24
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_length9
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 四"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,108,645
net_rshares0
@june0620 ·
程序拉倒Web store了吗?
如果有提供下URL吧 😄

Posted using [Partiko Android](https://partiko.app/referral/june0620)
properties (22)
authorjune0620
permlinkjune0620-re-lnakuma-2gttw6-steem-20200305t152845580z
categoryhive-180932
json_metadata{"app":"partiko","client":"android"}
created2020-03-05 15:28:45
last_update2020-03-05 15:28:45
depth1
children1
last_payout2020-03-12 15:28:45
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_length100
author_reputation118,592,211,436,406
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,086,436
net_rshares0
@lnakuma ·
![wjk6c9.png](https://img.esteem.app/wjk6c9.png)

还在等谷歌的审查
properties (22)
authorlnakuma
permlinkre-june0620-202035t94852932z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-05 16:48:54
last_update2020-03-05 16:48:54
depth2
children0
last_payout2020-03-12 16:48:54
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_length58
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 四"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,088,897
net_rshares0
@nuagnorab ·
>但是有个问题来了,如果自动拍手了,大家还看文章吗?

做個實驗驗証一下哈哈
啪啪
properties (22)
authornuagnorab
permlinkq6q7jr
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-05 15:11:51
last_update2020-03-05 15:11:51
depth1
children1
last_payout2020-03-12 15:11:51
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_length41
author_reputation125,097,310,898,849
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,085,822
net_rshares0
@lnakuma ·
🤣 🤣 👍
properties (22)
authorlnakuma
permlinkre-nuagnorab-202035t223919579z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-06 05:39:21
last_update2020-03-06 05:39:21
depth2
children0
last_payout2020-03-13 05:39:21
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_length5
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 四"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,109,147
net_rshares0
@robertyan ·
> 但是有个问题来了,如果自动拍手了,大家还看文章吗?

对我来说,我可能会为了给别人拍手所以才看文章。。。
properties (22)
authorrobertyan
permlinkq6tgfc
categoryhive-180932
json_metadata{"app":"steemit/0.2"}
created2020-03-07 09:16:33
last_update2020-03-07 09:16:33
depth1
children2
last_payout2020-03-14 09:16:33
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_length54
author_reputation16,909,391,530,163
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,141,595
net_rshares0
@lnakuma ·
这个不错。不知道会有多少人这么做。有时候,我也会懒,今天啪五下,也没怎么看内容。
properties (22)
authorlnakuma
permlinkre-robertyan-202038t02455921z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-08 07:24:54
last_update2020-03-08 07:24:54
depth2
children1
last_payout2020-03-15 07:24:54
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_length40
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 四"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,167,382
net_rshares0
@robertyan ·
嗯,让每个人自己选吧,更适合自己的模式是什么 :P
properties (22)
authorrobertyan
permlinkre-lnakuma-q6vbn4
categoryhive-180932
json_metadata{"tags":["hive-180932"],"app":"steempeak/2020.03.1"}
created2020-03-08 09:28:15
last_update2020-03-08 09:28:15
depth3
children0
last_payout2020-03-15 09:28:15
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_length25
author_reputation16,909,391,530,163
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,170,107
net_rshares0
@steemstem ·
re-lnakuma-2gttw6-steem-20200309t100518062z
<div class='text-justify'> <div class='pull-left'> <center> <br /> <img width='200' src='https://res.cloudinary.com/drrz8xekm/image/upload/v1553698283/weenlqbrqvvczjy6dayw.jpg'> </center>  <br/> </div> 

This post has been voted on by the **SteemSTEM curation team** and voting trail. It is elligible for support from @curie and @minnowbooster.<br /> 

If you appreciate the work we are doing, then consider supporting our witness [@stem.witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness). Additional witness support to the [curie witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie) would be appreciated as well.<br /> 

For additional information please join us on the [SteemSTEM discord]( https://discord.gg/BPARaqn) and to get to know the rest of the community!<br />

Please consider using the <a href='https://www.steemstem.io'>steemstem.io</a> app and/or including @steemstem in the list of beneficiaries of this post. This could yield a stronger support from SteemSTEM.
properties (22)
authorsteemstem
permlinkre-lnakuma-2gttw6-steem-20200309t100518062z
categoryhive-180932
json_metadata{"app":"steemstem-bot"}
created2020-03-09 10:05:21
last_update2020-03-09 10:05:21
depth1
children0
last_payout2020-03-16 10:05:21
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_length1,050
author_reputation262,017,435,115,313
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,200,156
net_rshares0
@sunai ·
拍拍手
properties (22)
authorsunai
permlinkq6q6ah
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-05 14:44:42
last_update2020-03-05 14:44:42
depth1
children1
last_payout2020-03-12 14:44:42
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_length3
author_reputation17,899,844,015,065
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,084,876
net_rshares0
@lnakuma ·
谢谢👏
properties (22)
authorlnakuma
permlinkre-sunai-202035t22243224z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-06 05:24:33
last_update2020-03-06 05:24:33
depth2
children0
last_payout2020-03-13 05:24:33
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_length3
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 四"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,108,834
net_rshares0
@teamcn-shop ·
你好鸭,lnakuma!

@annepink给您叫了一份外卖!

由 @xiaoyuanwmm 村凤 在晴空万里 坐着高铁 给您送来
**冰皮月饼** <br> ![](https://ipfs.busy.org/ipfs/QmUGqB8jjykkXt5GUgMmhnXAERaKhrQxEY4vQb2AG64xKj)
吃饱了吗?跟我猜拳吧! **石头,剪刀,布~**

如果您对我的服务满意,请不要吝啬您的点赞~
@onepagex
properties (22)
authorteamcn-shop
permlinkannepink-re-lnakuma-2gttw6-steem-20200305t074136585z
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-03-05 07:41:45
last_update2020-03-05 07:41:45
depth1
children0
last_payout2020-03-12 07:41:45
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_length219
author_reputation11,393,746,055,281
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,072,499
net_rshares0
@wilhb81 · (edited)
嗯,上不到steem.buzz,的确有点措手不及。

谢谢kuma兄和村长的贡献,给你拍拍手~

PS:不管自动还是手动,好文章就是会用心去看 :)
properties (22)
authorwilhb81
permlinkq6pnib
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-05 07:58:57
last_update2020-03-05 07:59:42
depth1
children0
last_payout2020-03-12 07:58:57
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_length74
author_reputation228,240,073,324,104
root_title"STEEM编程练习记录 四"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,072,914
net_rshares0