create account

STEEM编程练习记录 三 by lnakuma

View this thread on: hive.blogpeakd.comecency.com
· @lnakuma ·
$16.38
STEEM编程练习记录 三
今天早晨,正在我因为是星期五发懒,不知道想做什么事的时候,收到了村长@ericet圈给我的一条回复。在[[Life]likeCoin 为什么不制作一个chrome 扩展程序?]( https://steem.buzz/hive-180932/@june0620/life-likecoin-chrome)里,@jun0621提出了一个非常有趣的想法。就是制作一个like Coin的Chrome扩展程序。用一个Chrome Extension,在所有的STEEM的结点上添加“啪啪啪”的小手。
一个挺好玩的程序。于是我打算做一个试试。
## 设计思路
要想制作这么一个能够在所有和STEEMIT有关的结点拍手的扩展程序,必须要让这个程序知道自己在1)STEEM的节点上;2)正在浏览的文章是一个有注册LikeCoin的用户。

1. 第一项非常简单,因为在Chrome扩展程序的manifest.json里面可以规定程序在哪些网站上运行。
1. 第二项稍微复杂一点。需要用一种方法搜取文章的作者,查询作者是不是已经注册了**Matters**。<br />文章的作者可以从网址中截取。举一个例子:@huaren.news的文章[武汉肺炎多国蔓延,该指责还是该合作?世界欠中国/武汉一份感谢!](https://steem.buzz/hive-180932/@huaren.news/48spug)在不同的节点上的网址是:
   1. https://staging.busy.org/@huaren.news/48spug
   1. https://steem.buzz/hive-180932/@huaren.news/48spug
   1. https://steempeak.com/@huaren.news/48spug
   1. https://steemit.com/hive-180932/@huaren.news/48spug

   <br />仔细观察的话,不难发现,每个网址后半段都是`@huaren.news/48spug`。如果程序在`/`之间切开整条网址的话,倒数第二段便是`@huaren.news`。如果我们观察非发表的文章的网址,比如说SteemCN社区([https://steemit.com/trending/hive-180932](https://steemit.com/trending/hive-180932)),这个网址中,没有@用户。我们可以利用这一特点从网址中筛选当前的网页是否是一片**STEEM**上的文章,并且得到作者的用户ID。
1. 我们还要找出所有已经申请**Matters**的用户。<br />
![](https://cdn.steemitimages.com/DQmTnNxxuY59ZExwNH6XYW3B6wrijhSCsTitSamYiJTXy5A/image.png)
<br />    上面一张截图中是我问村长**SteemCN**是怎么记录**Matters**用户的对话。看来只要我把@cn-likers关注的名单调出来就知道所有**Matters**用户了。我在[STEEM编程练习记录 二](https://steem.buzz/hive-180932/@lnakuma/6kfw6y-steem)介绍过如何利用***SteemJs***的API搜索follower和following名单。在回复中村长@erice还贴了他原来写过的follower的程序。由于他的代码比我的更加完整。我借用了他的代码,并改成搜索following的名单。
1. 第四步是寻找当前文章用户的***LikerId***。我在写程序的时候,忽略了这一点。正巧我借用来测试的@windowglass的[【职场碎碎念】辞职](https://steem.buzz/hive-180932/@windowglass/jjsdk),@windowglass和***LikerId***和***SteemId***是相同的。所以我在push我的commit到github上,再测试cn-fund的时候才发现找不到正确的***LikerId***。<br />
![](https://cdn.steemitimages.com/DQmdyFPyuxHqkxWKqxopasmzNq4G6uLHNoV6naKVx157nkB/image.png)
<br />我在[STEEM编程练习记录 一](https://steem.buzz/hive-180932/@lnakuma/steem)介绍过如果搜索**STEEM**用户信息。在第二步通过网址截取用户ID之后,可以先用用户ID搜索用户信息,从中获得用户*Location*里面*LikerId:xxx*的数值。
5. 第五步也是在push commit之后发现的。就是更换网址之后,Chrome扩展程序里面的网址和用户***LikerId***并没有更改。我需要在更换网址的时候,触发扩展程序里面的存储的数值的更新。<br />本来想利用Chrome Extension里面的***content.js***和***background.js***利用Chrome自己的API做触发。但是由于想在半天内写出一个Beta版本供大家啪啪啪,所以我选择了一条更简单粗暴的方法:就是设置一个无限循环的程序环,每个200毫秒自动检查一下当前的网址是否和上一次检查时是不同的网址,如果有变化,则从新更新一遍数据。


## 编写程序
manifest.json是Chrome扩展程序的清单文件。里面记载着扩展程序的版本,导入的其它JavaScript库,注入的配置文件等等。
```
{
  "manifest_version": 2,
  "name": "Liker Clap Extension",
  "description": "This extension will add a Matters Likr Clap Button",
  "version": "0.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.busy.org/*",
        "*://*.steem.buzz/*",
        "*://*.steemit.com/*",
        "*://*.steempeak.com/*"
      ],
      "js": [
        "steem.js",
        "liker.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}
```
<br />上段代码就是本程序的manifest.json。其中**content_scripts**里面规定了,在哪些网站上,这个扩展程序可以运行(**matches**)和运行哪些**JavaScript**的library(***steem.js***和***liker.js***)。
由于Chrome扩展程序不能调用CDN上面的程序库,我想[STEEM API]( https://cdn.jsdelivr.net/npm/steem/dist/steem.min.js)下载下来,放到了程序本地的目录下(***steem.js***)。
必须要主意程序库的排列顺序。***liker.js***里面要调取***steem.js***里面的变量***steem***,所以***steem.js***必须在***liker.js***的前面。

```js
var url = window.location.href;
const button = document.createElement("div");
const css = document.createElement("style");
var href = url.split("/");
var steemId = href[href.length-2];
//steem.api.setOptions({ url: "https://anyx.io" });

const getFollowing = (start = 0, limit = 1000, following = []) => {
  return new Promise((resolve, reject) => {
    steem.api.getFollowing("cn-likers", start, 'blog', limit, async function (err, result) {
      if (result.length > 1) {
        let newResult = [];
        result.forEach(following => {
            if (following.follower != start) {
                newResult.push(following.following);
            }
        });
        following = [...following, ...newResult];
        let followingList = [];
        for (let i in newResult) {
            followingList.push(newResult[i].following);
        }
        getFollowing(result[result.length - 1].following, limit, following)
        .then(resolve)
        .catch(reject);
      } else {
        resolve(following);
      }
    });
  });
}

const getLikerId = (profile) => {
  const location = profile.location;
  console.log(location)
  if(typeof location !=="undefined" && location !== "") {
    const loc = location.split(":");
    if( loc[0] === "likerid" ) { return loc[1]; }
    else { return false; }
  }
  else { return false; }
}

const isLiker = (steemId, following) => {
  let flag = false;
  if(steemId.startsWith("@")) {
    const id = steemId.substr(1);
    for(let i = 0; i < following.length; i++) {
      if(id === following[i]) {
        flag = true;
        break;
      }
    }
    if(flag) { return id; }
    else { return false; }
  }
  else{ return false; }
}

async function createLikerButton(url, steemId) {
  let following = await getFollowing();
  //url = encodeURIComponent(url);
  steemId = isLiker(steemId, following);
  console.log(url);
  console.log(steemId);
  if(steemId) {
    steem.api.getAccounts([steemId], function(err, result) {
      if(err === null) {
        const data = result[0];
        const profile = JSON.parse(data.json_metadata);
        const likerId = getLikerId(profile.profile);
        if(likerId) {
          const src = `https://button.like.co/in/embed/${likerId}/button?referrer=${url}`;
          //console.log(src);
          const iframe = document.createElement("iframe");
          iframe.setAttribute("src", src);
          iframe.setAttribute("frameborder", 0);
          iframe.setAttribute("scrolling", 0);
          iframe.setAttribute("target", "_top");
          button.appendChild(iframe);
        }
      }
      else{
        console.log(err);
      }
    });
  }
  else{
    console.log("Not a registered Liker");
  }
}

css.innerHTML = `
.likecoin-button {
  bottom: 20px;
  position: fixed;
  right: 20px;
  height: 240px;
  width: 500px;
  overflow: hidden;
  z-index: 2000
}
.likecoin-button > div {
  padding-top: 49.48454%;
}
.likecoin-button > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-zoom: 0.75;
        -moz-transform: scale(0.75);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.75);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.75);
        -webkit-transform-origin: 0 0;
}
`;
document.body.appendChild(css);
button.className = "likecoin-embed likecoin-button";
document.body.appendChild(button);


createLikerButton(url, steemId);
window.setInterval(function() {
  let tempurl = window.location.href;
  if(tempurl !== url) {
    button.textContent = "";
    url = tempurl;
    href = url.split("/");
    steemId = href[href.length-2];
    createLikerButton(url, steemId);
  }
}, 1000);
```
`liker.js`是本程序的主心骨。程序一开始先记录当前的网址,生成啪啪啪按键的iFrame。搜取用户的***SteemId***。

我在测试中,可能是调用API太频繁了,惹得[https://anyx.io](https://anyx.io)生气把我给block掉了。对于我来说,用steem默认得结点没有任何问题。但是对于墙内的朋友,估计还得使用[https://anyx.io](https://anyx.io)这样的结点支持。使用的方法是uncommon第六行(去掉`//`)

1. `getFollowing`方程在原来的文章里面讲过,是用来搜索所有@cn-likers关注的名单。
1. `getLikerId`的用处是搜索当前文章的作者是否在自己的*Location*里面填写了自己的***LikerId***。
1. `isLiker`是用来过滤非发表的文章的网页。上面介绍多,所有文章的网址里面都用`@用户`,只要我们将网址切开,倒数第二段里面是以`@`开头的网址,就都是文章。
1. `createLikerButton`则是将所有前面的方程都连接起来。先收录所有@cn-likers关注的用户的名单;再搜索当前网页是否是一篇文章,如果是的话,则截取文章的作者;搜索作者的用户资料并检查是否记录了***LikerId***。如果拥有***LikerId***的话,则在网页上加上一个啪啪啪按键。上面提到的@huaren.news就没有注册***Matters***,所以文章上就没有出现LikeCoin的按键。

## 扩展程序使用效果

![](https://cdn.steemitimages.com/DQmfPDzztGaSFqP97x5WAGkiwDuFNtLDshpyDqrxQNKGRYj/image.png)
*在[https://steemit.com](https://steemit.com)上*

![](https://cdn.steemitimages.com/DQmUkupJzhQBYLeQjZm6wmCy511xDsPu1ubrGAfYf23m27c/image.png)
*在[https://steempeak.com/](https://steempeak.com/)上*

![](https://cdn.steemitimages.com/DQmTKdrHyPgHqJddSHJYusKg95tLkKPdRkGf4uF2sCV1Sok/image.png)
*在[https://staging.busy.org](https://staging.busy.org/)上*

![Screenshot_20200228_135153_com.oice.jpg](https://cdn.steemitimages.com/DQmcfamjUSTtsr4DNQvz1pCABtGNJFGzDBWh3vQFrgx8Yba/Screenshot_20200228_135153_com.oice.jpg)
*啪啪啪之后,在***Liker Land***上可以看到Busy,Steemit的啪啪啪。

----

## 以后还可以做什么

我曾经听过一句形容完成程序开发的话:“没有完成开发的程序,只有不想再继续做下去的程序。”那么,这个我们还能再在这个程序上添加些什么呢?

1. 可以建设访问@cn-likers关注名单的次数。前面提到了[https://anyx.io](https://anyx.io)暂时性限制了我访问他们API的权限。我们在第一次搜索@cn-likers关注名单之后,将名单存储下来,在规定的时间内不再访问***Steem API***结点。
1. 提供***Steem API***的结点服务器很多,可以适当轮换当前使用的结点,这样可以减少过多使用同一个结点的频率。
1. 加一个on/off开关。在不想使用Chrome Extension的时候,将其关掉。

## 安装Chrome扩展程序

我已经把扩展程序存在Github和码云上面。
1. Github: https://github.com/xiangstan/likecoin-extension
1. 码云: https://gitee.com/xiangstan/likecoin-extension

登陆不了Github的可以去码云下载。

代码资料库里面有介绍如何将扩展程序安装到自己的浏览器上(如图)。

![](https://cdn.steemitimages.com/DQmSbyCZ173EuZBDUYMDFmcxEi881jSZdgKbVVTaRnrjyeW/image.png)

-----

## 感谢

1. 设计啪啪啪按键得到了https://github.com/likecoin/likecoin-button-sdk的启发。其中CSS Style也是根据likecoin-button-sdk里面JavaScript的代码改编的。
1. 村长@ericet的getFollowers代码
1. **特别感谢,压轴的重头戏。扩展程序在浏览器里面的图标是女友当年练习Illustrator的时候设计的。别人都可以不感谢,这个必须感谢……**
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 639 others
properties (23)
authorlnakuma
permlink3kphao-steem
categoryhive-180932
json_metadata{"tags":["cn","cn-reader","cn-curation","cn-stem","steemstem","cn-programming","steemlo","creativecoin","palnet","dblog","zzan","neoxian","lassecash","esteem","esteem-cn","sct","sct-cn","mediaofficials","marlians","upfundme","actnearn"],"users":["ericet","jun0621","huaren.news","cn-likers","erice","windowglass"],"image":["https://cdn.steemitimages.com/DQmTnNxxuY59ZExwNH6XYW3B6wrijhSCsTitSamYiJTXy5A/image.png","https://cdn.steemitimages.com/DQmdyFPyuxHqkxWKqxopasmzNq4G6uLHNoV6naKVx157nkB/image.png","https://cdn.steemitimages.com/DQmfPDzztGaSFqP97x5WAGkiwDuFNtLDshpyDqrxQNKGRYj/image.png","https://cdn.steemitimages.com/DQmUkupJzhQBYLeQjZm6wmCy511xDsPu1ubrGAfYf23m27c/image.png","https://cdn.steemitimages.com/DQmTKdrHyPgHqJddSHJYusKg95tLkKPdRkGf4uF2sCV1Sok/image.png","https://cdn.steemitimages.com/DQmcfamjUSTtsr4DNQvz1pCABtGNJFGzDBWh3vQFrgx8Yba/Screenshot_20200228_135153_com.oice.jpg","https://cdn.steemitimages.com/DQmSbyCZ173EuZBDUYMDFmcxEi881jSZdgKbVVTaRnrjyeW/image.png"],"links":["https://steem.buzz/hive-180932/@june0620/life-likecoin-chrome","https://steem.buzz/hive-180932/@huaren.news/48spug","https://staging.busy.org/@huaren.news/48spug","https://steempeak.com/@huaren.news/48spug","https://steemit.com/hive-180932/@huaren.news/48spug","https://steemit.com/trending/hive-180932","https://steem.buzz/hive-180932/@lnakuma/6kfw6y-steem","https://steem.buzz/hive-180932/@windowglass/jjsdk","https://steem.buzz/hive-180932/@lnakuma/steem","https://cdn.jsdelivr.net/npm/steem/dist/steem.min.js","https://anyx.io","https://steemit.com","https://steempeak.com/","https://staging.busy.org/","https://github.com/xiangstan/likecoin-extension","https://gitee.com/xiangstan/likecoin-extension","https://github.com/likecoin/likecoin-button-sdk的启发。其中CSS"],"app":"esteem/2.2.2-mobile","format":"markdown","community":"esteemapp"}
created2020-02-29 04:11:06
last_update2020-02-29 04:11:06
depth0
children38
last_payout2020-03-07 04:11:06
cashout_time1969-12-31 23:59:59
total_payout_value8.214 HBD
curator_payout_value8.164 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,199
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,927,483
net_rshares57,186,496,924,416
author_curate_reward""
vote details (703)
@annepink ·
@tipu curate
!shop

Posted using [Partiko Android](https://partiko.app/referral/annepink)
properties (22)
authorannepink
permlinkannepink-re-lnakuma-3kphao-steem-20200229t041516384z
categoryhive-180932
json_metadata{"app":"partiko","client":"android"}
created2020-02-29 04:15:15
last_update2020-02-29 04:15:15
depth1
children1
last_payout2020-03-07 04:15: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_length89
author_reputation787,830,349,221,460
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,927,558
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-3kphao-steem-20200229t041516384z-20200229t041529
categoryhive-180932
json_metadata""
created2020-02-29 04:15:30
last_update2020-02-29 04:15:30
depth2
children0
last_payout2020-03-07 04:15:30
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_id95,927,566
net_rshares0
@cloudblade ·
太厉害了
啪啪啪啪
!shop
properties (22)
authorcloudblade
permlinkq6g5rg
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-02-29 04:57:15
last_update2020-02-29 04:57:15
depth1
children1
last_payout2020-03-07 04:57: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_length15
author_reputation26,961,334,885,138
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,214
net_rshares0
@lnakuma ·
谢谢
properties (22)
authorlnakuma
permlinkq6gbfp
categoryhive-180932
json_metadata{"app":"steemit/0.2"}
created2020-02-29 06:59:48
last_update2020-02-29 06:59:48
depth2
children0
last_payout2020-03-07 06:59:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,929,980
net_rshares0
@ericet ·
为最后一句啪啪啪😂
properties (22)
authorericet
permlinkq6g3vq
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-02-29 04:16:39
last_update2020-02-29 04:16:39
depth1
children1
last_payout2020-03-07 04:16:39
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_reputation195,650,625,080,393
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,927,606
net_rshares0
@lnakuma ·
🤣 🤣
properties (22)
authorlnakuma
permlinkre-ericet-2020228t214331396z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-02-29 04:43:30
last_update2020-02-29 04:43:30
depth2
children0
last_payout2020-03-07 04:43:30
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_id95,928,062
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-202031t93745129z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.2-welcome","format":"markdown+html","community":"esteem.app"}
created2020-03-01 08:37:45
last_update2020-03-01 08:37:45
depth1
children0
last_payout2020-03-08 08:37: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_length620
author_reputation420,443,679,514,793
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,960,800
net_rshares0
@honoru ·
我是用插件幫您拍手

不過,不知為何,在插件上顯示為 0

![](https://cdn.steemitimages.com/DQmaRFm9taZhEfYn7KZdiufDDVqU3jWW2ziHqzztYTkAhXg/image.png)
properties (22)
authorhonoru
permlinkq6j0na
categoryhive-180932
json_metadata{"image":["https://cdn.steemitimages.com/DQmaRFm9taZhEfYn7KZdiufDDVqU3jWW2ziHqzztYTkAhXg/image.png"],"app":"busy/2.5.4"}
created2020-03-01 17:59:39
last_update2020-03-01 17:59:39
depth1
children0
last_payout2020-03-08 17:59:39
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_length122
author_reputation335,049,851,338,530
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,973,316
net_rshares0
@huaren.news ·
不错,谢谢提醒,这就去注册liker:)
properties (22)
authorhuaren.news
permlinkq6g5g5
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-02-29 04:50:30
last_update2020-02-29 04:50:30
depth1
children1
last_payout2020-03-07 04:50:30
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_length20
author_reputation-3,379,659,091,653
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,140
net_rshares0
@lnakuma ·
👍 👍
properties (22)
authorlnakuma
permlinkre-huarennews-2020228t2296389z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-02-29 05:09:06
last_update2020-02-29 05:09:06
depth2
children0
last_payout2020-03-07 05:09:06
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_id95,928,391
net_rshares0
@june0620 · (edited)
哇~~ 这么快就搞定了?
我必须试试,哈哈哈
多谢多谢

(帖子里我的名字写错了😀😁,我都没有收到提醒,才发现这个文章,哈哈)
properties (22)
authorjune0620
permlinkre-lnakuma-2020229t142426961z
categoryhive-180932
json_metadata{"tags":[],"app":"esteem/2.2.4-mobile","format":"markdown+html","community":"hive-125125"}
created2020-02-29 05:24:27
last_update2020-02-29 05:26:45
depth1
children3
last_payout2020-03-07 05:24:27
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_length63
author_reputation118,592,211,436,406
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,575
net_rshares0
@lnakuma ·
Sorry,我总是丢三落四的,今天名字都写错了。😱 😱
properties (22)
authorlnakuma
permlinkre-june0620-2020228t225424393z
categoryhive-180932
json_metadata{"tags":[],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-02-29 05:54:24
last_update2020-02-29 05:54:24
depth2
children2
last_payout2020-03-07 05:54: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_length27
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,929,033
net_rshares0
@june0620 ·
我用插件给你拍拍手,真好~ 哈哈
properties (22)
authorjune0620
permlinkre-lnakuma-q6gcp3
categoryhive-180932
json_metadata{"tags":["hive-180932"],"app":"steempeak/2020.02.5"}
created2020-02-29 07:27:12
last_update2020-02-29 07:27:12
depth3
children1
last_payout2020-03-07 07:27:12
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_length16
author_reputation118,592,211,436,406
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,930,540
net_rshares0
@justyy ·
拍拍拍,可以放 Chrome webstore 让大家方便安装
👍  
properties (23)
authorjustyy
permlinkq6j9jk
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-01 21:11:45
last_update2020-03-01 21:11:45
depth1
children0
last_payout2020-03-08 21:11: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_length31
author_reputation280,616,224,641,976
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,977,848
net_rshares2,713,593,368
author_curate_reward""
vote details (1)
@nuagnorab ·
西利!

這樣大家都可快快啪啪啪了!

為最後一個啪!
properties (22)
authornuagnorab
permlinkre-lnakuma-2020229t224946382z
categoryhive-180932
json_metadata{"tags":["cn","cn-reader","cn-curation","cn-stem","steemstem","cn-programming","steemlo","creativecoin","palnet","dblog","zzan","neoxian","lassecash","esteem","esteem-cn","sct","sct-cn","mediaofficials","marlians","upfundme","actnearn"],"app":"esteem/2.2.4-mobile","format":"markdown+html","community":"hive-125125"}
created2020-02-29 14:49:48
last_update2020-02-29 14:49:48
depth1
children1
last_payout2020-03-07 14:49:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation125,097,310,898,849
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,939,321
net_rshares0
@lnakuma ·
谢谢

最后一句是整篇post的重点😄
properties (22)
authorlnakuma
permlinkre-nuagnorab-202031t95826958z
categoryhive-180932
json_metadata{"tags":["cn","cn-reader","cn-curation","cn-stem","steemstem","cn-programming","steemlo","creativecoin","palnet","dblog","zzan","neoxian","lassecash","esteem","esteem-cn","sct","sct-cn","mediaofficials","marlians","upfundme","actnearn"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-01 16:58:24
last_update2020-03-01 16:58:24
depth2
children0
last_payout2020-03-08 16:58: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_length19
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,971,988
net_rshares0
@steem.buzz ·
我在steemit.com拍你
properties (22)
authorsteem.buzz
permlinkq6ielh
categoryhive-180932
json_metadata{"app":"steemit/0.2"}
created2020-03-01 10:03:36
last_update2020-03-01 10:03:36
depth1
children1
last_payout2020-03-08 10:03: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_length15
author_reputation6,270,308,840,700
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,962,504
net_rshares0
@lnakuma ·
在Busy里回拍(发现busy里面无法上传贴图。跑到esteem.app里面回复🤣)

![bflpry.jpg](https://img.esteem.app/bflpry.jpg)
properties (22)
authorlnakuma
permlinkre-steembuzz-202031t9101511z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-01 16:10:15
last_update2020-03-01 16:10:15
depth2
children0
last_payout2020-03-08 16:10: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_length92
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,970,949
net_rshares0
@steemstem ·
re-lnakuma-3kphao-steem-20200301t083535994z
<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-3kphao-steem-20200301t083535994z
categoryhive-180932
json_metadata{"app":"steemstem-bot"}
created2020-03-01 08:35:39
last_update2020-03-01 08:35:39
depth1
children0
last_payout2020-03-08 08:35:39
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_id95,960,751
net_rshares0
@susanli3769 ·
拍拍怕
properties (22)
authorsusanli3769
permlinkq6iqld
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-01 14:22:27
last_update2020-03-01 14:22:27
depth1
children1
last_payout2020-03-08 14:22:27
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_reputation991,244,397,673,214
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,968,144
net_rshares0
@lnakuma ·
最后一个怕啥?🤣 
👏 👏
properties (22)
authorlnakuma
permlinkre-susanli3769-202031t93255245z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-03-01 16:32:57
last_update2020-03-01 16:32:57
depth2
children0
last_payout2020-03-08 16:32: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_length13
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,971,457
net_rshares0
@teamcn-shop ·
你好鸭,lnakuma!
@annepink赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 23枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
authorteamcn-shop
permlinkannepink-re-lnakuma-3kphao-steem-20200229t041516384z
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-02-29 04:15:27
last_update2020-02-29 04:15:27
depth1
children2
last_payout2020-03-07 04:15:27
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_length289
author_reputation11,393,746,055,281
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,927,563
net_rshares0
@cloudblade ·
石头
properties (22)
authorcloudblade
permlinkq6g5si
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-02-29 04:57:51
last_update2020-02-29 04:57:51
depth2
children1
last_payout2020-03-07 04:57: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_length2
author_reputation26,961,334,885,138
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,227
net_rshares0
@teamcn-shop ·
https://4.bp.blogspot.com/-rZ6b2iEusuQ/WoGwDTYIzLI/AAAAAAATXIg/w-t43zysT6wBBKcJwnYuVNnNEe4f1syOwCLcBGAs/s1600/AW785125_08.gif 
You lose! 你输了!愿赌服输,请给我点赞~
properties (22)
authorteamcn-shop
permlinkq6g5si
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-02-29 04:58:00
last_update2020-02-29 04:58:00
depth3
children0
last_payout2020-03-07 04:58: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_length152
author_reputation11,393,746,055,281
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,234
net_rshares0
@teamcn-shop ·
你好鸭,lnakuma!
@windowglass赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 24枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
authorteamcn-shop
permlinkq6g4hm
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-02-29 04:31:12
last_update2020-02-29 04:31:12
depth1
children2
last_payout2020-03-07 04:31:12
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_length292
author_reputation11,393,746,055,281
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,927,870
net_rshares0
@cloudblade ·
石头
properties (22)
authorcloudblade
permlinkq6g5sd
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-02-29 04:57:48
last_update2020-02-29 04:57:48
depth2
children1
last_payout2020-03-07 04:57:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation26,961,334,885,138
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,226
net_rshares0
@teamcn-shop ·
https://4.bp.blogspot.com/-rZ6b2iEusuQ/WoGwDTYIzLI/AAAAAAATXIg/w-t43zysT6wBBKcJwnYuVNnNEe4f1syOwCLcBGAs/s1600/AW785125_08.gif 
You lose! 你输了!愿赌服输,请给我点赞~
👍  
properties (23)
authorteamcn-shop
permlinkq6g5sd
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-02-29 04:57:57
last_update2020-02-29 04:57:57
depth3
children0
last_payout2020-03-07 04:57: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_length152
author_reputation11,393,746,055,281
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,232
net_rshares7,370,165,738
author_curate_reward""
vote details (1)
@teamcn-shop ·
你好鸭,lnakuma!
@cloudblade赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 26枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
authorteamcn-shop
permlinkq6g5rg
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-02-29 04:57:27
last_update2020-02-29 04:57:27
depth1
children0
last_payout2020-03-07 04:57:27
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_length291
author_reputation11,393,746,055,281
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,220
net_rshares0
@wilhb81 ·
哇塞,这个操作太厉害了(可惜,我是程序白痴,有看没懂 XD)

幸苦啦,kuma兄,给你大力拍手!!!
properties (22)
authorwilhb81
permlinkq6g761
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-02-29 05:27:39
last_update2020-02-29 05:27:39
depth1
children1
last_payout2020-03-07 05:27:39
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_length51
author_reputation228,240,073,324,104
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,607
net_rshares0
@lnakuma ·
谢谢哈
properties (22)
authorlnakuma
permlinkre-wilhb81-2020228t225646202z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-02-29 05:56:45
last_update2020-02-29 05:56:45
depth2
children0
last_payout2020-03-07 05:56: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_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_id95,929,048
net_rshares0
@windowglass ·
看到文章题目我就纳闷你@我干嘛……
原来是拿我来做试验……哈哈哈……
拍拍拍……
!shop
properties (22)
authorwindowglass
permlinkq6g4hm
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-02-29 04:31:00
last_update2020-02-29 04:31:00
depth1
children5
last_payout2020-03-07 04:31: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_length46
author_reputation28,329,818,684,832
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,927,865
net_rshares0
@cloudblade ·
小白鼠是很为伟大的
!shop
properties (22)
authorcloudblade
permlinkq6g5ub
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-02-29 04:58:57
last_update2020-02-29 04:58:57
depth2
children0
last_payout2020-03-07 04: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_length15
author_reputation26,961,334,885,138
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,251
net_rshares0
@lnakuma ·
因为当时,你那篇是拍手公民里面的第一篇,所以拿来各种试验🤣 🤣 
👏 👏 回敬
properties (22)
authorlnakuma
permlinkre-windowglass-2020228t213535993z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-02-29 04:35:36
last_update2020-02-29 04:35:36
depth2
children0
last_payout2020-03-07 04:35: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_length39
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,927,956
net_rshares0
@teamcn-shop ·
你好鸭,糖糖!
@cloudblade赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 113枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
authorteamcn-shop
permlinkq6g5ub
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-02-29 04:59:09
last_update2020-02-29 04:59:09
depth2
children2
last_payout2020-03-07 04:59: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_length287
author_reputation11,393,746,055,281
root_title"STEEM编程练习记录 三"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,257
net_rshares0
@lnakuma ·
剪刀
properties (22)
authorlnakuma
permlinkre-teamcn-shop-2020228t2293380z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.3-surfer","format":"markdown+html","community":"esteem.app"}
created2020-02-29 05:09:33
last_update2020-02-29 05:09:33
depth3
children1
last_payout2020-03-07 05:09: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_length2
author_reputation101,490,348,543,772
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,928,399
net_rshares0
@yesno ·
Brelent
👎  
properties (23)
authoryesno
permlinkre-lnakuma-202031t213643118z
categoryhive-180932
json_metadata{"tags":["cn","cn-reader","cn-curation","cn-stem","steemstem","cn-programming","steemlo","creativecoin","palnet","dblog","zzan","neoxian","lassecash","esteem","esteem-cn","sct","sct-cn","mediaofficials","marlians","upfundme","actnearn"],"app":"esteem/2.2.4-mobile","format":"markdown+html","community":"hive-125125"}
created2020-03-01 16:36:54
last_update2020-03-01 16:36:54
depth1
children0
last_payout2020-03-08 16:36: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_length7
author_reputation25,108,294,984
root_title"STEEM编程练习记录 三"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,971,533
net_rshares-26,004,414,118
author_curate_reward""
vote details (1)