create account

SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets by howo

View this thread on: hive.blogpeakd.comecency.com
· @howo · (edited)
$248.47
SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets
<center> ![steemsnippetsv1.2.2(2).png](https://steemitimages.com/DQmVbv9bGp9AkDrNRn5WQN5P3XirjcyDLaj5NAvBBd2oZKx/steemsnippetsv1.2.2(2).png)
</center>

Hello ! 

After two weeks it's time for another update. This time I'll focus on only a few snippets and talk about some code change. I mostly did a lot of work to bring forth a block parser skeleton with dsteem. To Allow you to easily act on some actions as soon as they enter the blockchain.

If you're wondering what this project is about you can find the long version here : https://steemit.com/programming/@howo/introducting-steemsnippets

In short :

Steemsnippets is a repository with lots of small snippets examples with a very specific functionnality in mind so that programmers who are beginners ( or not) with the steem ecosystem can go in there and be like "ok how I do that ?" and find a corresponding snippet with complete documentation associated with it.

# Slight modifications :

- The repository is now using the MIT license !

- The voting and posting snippets now use the posting key instead of the password which was insecure.

- Rewrote part of the readme to organize steemjs snippets in two categories : active aka putting operations on the blockchain and passive aka reading stuff from it.

- Fixed a few errors on the README function 

  Most of this small work can be found in the history of the commits : https://github.com/drov0/steemsnippets/commits/master 

## New snippets :

### Block feed

This is a big one, way bigger than my usual snippets but for a good reason. 

This snippet reads the blocks as they go live in the blockchain and for every operation inside of it there is an if clause to allow you to act on. 

Want to build a service where you activate their account as soon as you receive a payment ? Instead of having a function to check every x minutes if you received a payment, you can now know instantly.  Same goes for trailing votes/ Making some pretty website where you see the flow of posts/comments etc. Or if you want your own ginabot to send you a dm/mail whenever something is happening on the blockchain that concerns you.

This is also a great baseline if you have a project where you want to store some specific operations in a db for later use. 

I think I have added all the possible operations. but I let an "else" case anyways to future proof it. 

I won't show a code example in this post as it wouldn't make much sense without the context. So come check it out on github :D 

https://github.com/drov0/steemsnippets/commit/c0bb40ae527a9558805bb840fbbdc41c0cfabc02

### Get  root post

Recently I found myself in a situation where I had a comment, the permlink and the author of that comment but not the actual post on which it was posted. So I wrote a function to get that :D

This function catches errors and returns them properly in case of rpc errors.

The example easily shows how it works 

I will show you how to get @wehmoen cool project, [pixelhosting](https://steemit.com/introduceyourself/@pixelhosting/pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects) introduction post from [this comment](https://steemit.com/introduceyourself/@pixelhosting/pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects#@howo/re-pixelhosting-pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects-20180422t001219308z) 

```
   // working example
    let data =  await get_root_post("howo", "re-pixelhosting-pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects-20180422t001219308z");
    console.log(data); // { root_permlink: 'pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects', root_author: 'pixelhosting' }

    // comment that doesn't exist
    data =  await get_root_post("howo", "re-pixeddddlhosting-pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects-20180422t001219308z");
    console.log(data) // { error: 'content not found' }

```

related commit : https://github.com/drov0/steemsnippets/commit/a67decc3e171e585d45008b7fd38495be5f20eb4


### Get reputation 

After the simplified rep to raw from last week : https://github.com/drov0/steemsnippets/tree/master/steemjs/simplified_rep_to_raw we continue our work on reputation with a snippet to get the simple and raw reputation from an user. 

This function catches errors and returns them properly in case of rpc errors/nonexistant accounts.

The example :

```
    // working example
    let data =  await get_reputation("howo");
    console.log(data); // { simplified_reputation: 63, raw_reputation: '17178492578569' }

    // account that doesn't exist
    data =  await get_reputation("a");
    console.log(data) // { error: 'Account doesn't exist' }
```



related commit :

https://github.com/drov0/steemsnippets/commit/ace0fb809172c28d5f1a91f0ab2305010085c36a

# SteemConnect incoming ! 

I have started to work with steemconnect so expect some snippets in the next weeks.

The project is open source so feel free to submit pull requests with your own snippets :)

@howo


<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@howo/steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 9 others
properties (23)
authorhowo
permlinksteemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":115027303,"name":"steemsnippets","full_name":"drov0/steemsnippets","html_url":"https://github.com/drov0/steemsnippets","fork":false,"owner":{"login":"drov0"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemdev","technology","steem","programming"],"users":["howo","wehmoen","pixelhosting"],"links":["https://steemitimages.com/DQmVbv9bGp9AkDrNRn5WQN5P3XirjcyDLaj5NAvBBd2oZKx/steemsnippetsv1.2.2(2","https://steemit.com/introduceyourself/@pixelhosting/pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects","https://steemit.com/introduceyourself/@pixelhosting/pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects#@howo/re-pixelhosting-pixelhosting-by-wehmoen-free-image-hosting-for-steem-projects-20180422t001219308z"],"image":["https://steemitimages.com/DQmVbv9bGp9AkDrNRn5WQN5P3XirjcyDLaj5NAvBBd2oZKx/steemsnippetsv1.2.2(2"],"moderator":{"account":"justyy","time":"2018-04-25T14:16:19.449Z","pending":false,"reviewed":true,"flagged":false},"questions":{"voters":["justyy"],"answers":[{"question_id":"dev-1","answer_id":"dev-1-a-2","user":"justyy","influence":75},{"question_id":"dev-2","answer_id":"dev-2-a-2","user":"justyy","influence":75},{"question_id":"dev-3","answer_id":"dev-3-a-2","user":"justyy","influence":75},{"question_id":"dev-4","answer_id":"dev-4-a-2","user":"justyy","influence":75},{"question_id":"dev-5","answer_id":"dev-5-a-2","user":"justyy","influence":75},{"question_id":"dev-6","answer_id":"dev-6-a-2","user":"justyy","influence":75},{"question_id":"dev-7","answer_id":"dev-7-a-1","user":"justyy","influence":75}],"total_influence":0,"most_rated":[{"question_id":"dev-1","answer_id":"dev-1-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-2","answer_id":"dev-2-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-3","answer_id":"dev-3-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-4","answer_id":"dev-4-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-5","answer_id":"dev-5-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-6","answer_id":"dev-6-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-7","answer_id":"dev-7-a-1","influence":75,"voters":["justyy"]}]},"score":76.25,"total_influence":75,"staff_pick":null,"config":{"questions":[{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"dev-1","answers":[{"answer":"The quality of the post is fantastic.","answer_id":"dev-1-a-1","value":10},{"answer":"The post is of very good quality. ","answer_id":"dev-1-a-2","value":8},{"answer":"The post is poorly written and/or formatted, but readable.","answer_id":"dev-1-a-3","value":3},{"answer":"The post is really hard to read and the content is barely understandable.","answer_id":"dev-1-a-4","value":0}]},{"question":"How would you rate the impact and significance of the contribution to the project and/or open source ecosystem in terms of uniqueness, usefulness and potential future applications?","question_id":"dev-2","answers":[{"answer":"This contribution adds high value and holds great significance for the project and/or open source ecosystem.","answer_id":"dev-2-a-1","value":35},{"answer":"This contribution adds some value to the project and/or open source ecosystem. ","answer_id":"dev-2-a-2","value":28},{"answer":"This contribution adds some value to the project and/or open source ecosystem.","answer_id":"dev-2-a-3","value":17.5},{"answer":"This contribution hold no value and is insignificant in impact. ","answer_id":"dev-2-a-4","value":0}]},{"question":"How would you rate the total volume of work invested into this contribution?","question_id":"dev-3","answers":[{"answer":"This contribution appears to have demanded a lot of intensive work.","answer_id":"dev-3-a-1","value":20},{"answer":"This contribution appears to have required an average volume of work.","answer_id":"dev-3-a-2","value":14},{"answer":"This contribution shows some work done.","answer_id":"dev-3-a-3","value":6},{"answer":"This contribution shows no work done.","answer_id":"dev-3-a-4","value":0}]},{"question":"How would you rate the quality of the code submitted?","question_id":"dev-4","answers":[{"answer":"High - it follows all best practices. ","answer_id":"dev-4-a-1","value":20},{"answer":"Average - it follows most best practices.","answer_id":"dev-4-a-2","value":14},{"answer":"Low - it follows some best practices.","answer_id":"dev-4-a-3","value":6},{"answer":"Very low - it doesn't follow any best practices. ","answer_id":"dev-4-a-4","value":0}]},{"question":"How would you rate the knowledge and expertise necessary to fix the bug / implement the added feature(s)?","question_id":"dev-5","answers":[{"answer":"High - a lot of research and specific knowledge was required.","answer_id":"dev-5-a-1","value":7.5},{"answer":"Average - some research and knowledge was required.","answer_id":"dev-5-a-2","value":5.25},{"answer":"Low - not much knowledge or skill were required.","answer_id":"dev-5-a-3","value":2.25},{"answer":"Insignificant - no knowledge or skills were necessary.","answer_id":"dev-5-a-4","value":0}]},{"question":"How would you rate the accuracy and readability of the commit messages?","question_id":"dev-6","answers":[{"answer":"High - they are concise, descriptive and consistent. ","answer_id":"dev-6-a-1","value":2.5},{"answer":"Average - they are mostly concise, descriptive and consistent. ","answer_id":"dev-6-a-2","value":2},{"answer":"Low - they could be more concise, descriptive or consistent.","answer_id":"dev-6-a-3","value":0.75},{"answer":"Very low - they aren't concise, descriptive or consistent at all.","answer_id":"dev-6-a-4","value":0}]},{"question":"How do you rate the quality of the comments in the code?","question_id":"dev-7","answers":[{"answer":"High - everything is well-commented and adds to the readability of the code. ","answer_id":"dev-7-a-1","value":5},{"answer":"Average - most of the code is commented and most if it adds to the readability of the code.","answer_id":"dev-7-a-2","value":3},{"answer":"Low - little of the code is commented, but it still adds to the readability.","answer_id":"dev-7-a-3","value":1.5},{"answer":"Very low - the added comments provide no value or are not present at all.","answer_id":"dev-7-a-4","value":0}]}]}}"
created2018-04-23 14:22:27
last_update2018-04-25 14:16:21
depth0
children14
last_payout2018-04-30 14:22:27
cashout_time1969-12-31 23:59:59
total_payout_value180.308 HBD
curator_payout_value68.163 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,213
author_reputation515,737,941,459,006
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,688,936
net_rshares40,466,081,064,122
author_curate_reward""
vote details (73)
@ari.afliandi ·
Thank you ! $upvote https://steemit.com/introduceyourself/@ari.afliandi/hello-steemians-here-s-my-introduction-post-3355735829a71
properties (22)
authorari.afliandi
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180425t161159767z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/introduceyourself/@ari.afliandi/hello-steemians-here-s-my-introduction-post-3355735829a71"],"app":"steemit/0.1"}
created2018-04-25 16:12:00
last_update2018-04-25 16:12:00
depth1
children0
last_payout2018-05-02 16:12: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_length129
author_reputation130,017,412,094
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,093,188
net_rshares0
@intisar ·
* Are you a CSE engineer?You are brilliant  in programming.Next time I also try to post on @utopian-io.
Thanks @howo
properties (22)
authorintisar
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180423t162749167z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["utopian-io","howo"],"app":"steemit/0.1"}
created2018-04-23 16:27:51
last_update2018-04-23 16:27:51
depth1
children0
last_payout2018-04-30 16:27: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_length116
author_reputation1,170,656,062,477
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,709,092
net_rshares0
@jayed007 ·
$0.18
Your code was awesome. Thanks for this lesson. I'm gonna try it so soon.
👍  
properties (23)
authorjayed007
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180423t152335559z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 15:23:33
last_update2018-04-23 15:23:33
depth1
children1
last_payout2018-04-30 15:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.184 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation575,746,000,975
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,698,765
net_rshares26,785,962,258
author_curate_reward""
vote details (1)
@howo ·
Thanks !
properties (22)
authorhowo
permlinkre-jayed007-re-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180423t152505556z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 15:25:06
last_update2018-04-23 15:25:06
depth2
children0
last_payout2018-04-30 15:25: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_length8
author_reputation515,737,941,459,006
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,699,015
net_rshares0
@justyy ·
$2.02
Thank you for your contribution.

----------------------------------------------------------------------
Need help? Write a ticket on https://support.utopian.io.
Chat with us on [Discord](https://discord.gg/uTyJkNm).

**[[utopian-moderator]](https://utopian.io/moderators)**
👍  , , , , ,
properties (23)
authorjustyy
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180425t060110443z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-25 06:01:15
last_update2018-04-25 06:01:15
depth1
children1
last_payout2018-05-02 06:01:15
cashout_time1969-12-31 23:59:59
total_payout_value2.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length274
author_reputation280,616,224,641,976
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,002,125
net_rshares488,384,274,794
author_curate_reward""
vote details (6)
@utopian.tip ·
Hey @justyy, I just gave you a tip for your hard work on moderation. Upvote this comment to support the utopian moderators and increase your future rewards!
properties (22)
authorutopian.tip
permlinkre-re-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180425t060110443z-20180425t112708
categoryutopian-io
json_metadata""
created2018-04-25 11:27:09
last_update2018-04-25 11:27:09
depth2
children0
last_payout2018-05-02 11:27: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_length156
author_reputation238,310,597,885
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,047,566
net_rshares0
@mahiralpha ·
Great content ...... keep it up.
properties (22)
authormahiralpha
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180425t174633182z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-25 17:46:45
last_update2018-04-25 17:46:45
depth1
children0
last_payout2018-05-02 17:46: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_length32
author_reputation319,882,490
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,107,782
net_rshares0
@nafestw ·
$0.32
Thanks for changing the license to MIT!
👍  ,
properties (23)
authornafestw
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180429t122855386z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-29 12:28:54
last_update2018-04-29 12:28:54
depth1
children0
last_payout2018-05-06 12:28:54
cashout_time1969-12-31 23:59:59
total_payout_value0.250 HBD
curator_payout_value0.074 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation2,113,027,036,393
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,820,204
net_rshares51,228,903,564
author_curate_reward""
vote details (2)
@sambillingham ·
$0.16
Nice work on this update. It's great to see all of these examples up on Github now. Makes a massive change since the end of last year when I first started diving into steemdev it was a struggle to find any examples at all.

Keep em coming, no doubt this is useful to many people. 👊 
👍  
properties (23)
authorsambillingham
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180424t162603103z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-24 16:26:12
last_update2018-04-24 16:26:12
depth1
children1
last_payout2018-05-01 16:26:12
cashout_time1969-12-31 23:59:59
total_payout_value0.158 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length282
author_reputation34,876,406,478,004
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,896,472
net_rshares37,050,576,767
author_curate_reward""
vote details (1)
@howo ·
$0.02
Thanks !  I started this project exactly because of that, no examples. So it was annoying as hell to do steem stuff proprely.
👍  
properties (23)
authorhowo
permlinkre-sambillingham-re-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180424t173031206z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-24 17:30:30
last_update2018-04-24 17:30:30
depth2
children0
last_payout2018-05-01 17:30:30
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation515,737,941,459,006
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,906,933
net_rshares3,349,602,407
author_curate_reward""
vote details (1)
@sequentialvibe ·
$0.18
Snippets are a brilliant idea! I can see this making coding way easier. It reminds me of user defined procedures in old school programming. Awesome work.
👍  
properties (23)
authorsequentialvibe
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180423t142716856z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 14:27:21
last_update2018-04-23 14:27:21
depth1
children1
last_payout2018-04-30 14:27:21
cashout_time1969-12-31 23:59:59
total_payout_value0.138 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation58,203,363,771,917
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,689,713
net_rshares26,785,879,136
author_curate_reward""
vote details (1)
@howo ·
That's exactly the idea :D
properties (22)
authorhowo
permlinkre-sequentialvibe-re-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180423t145944832z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 14:59:45
last_update2018-04-23 14:59:45
depth2
children0
last_payout2018-04-30 14:59: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_length26
author_reputation515,737,941,459,006
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,694,873
net_rshares0
@the.queen ·
$0.06
Thank you for this amazing post @howo. Maybe we will meet at the LCCS in october?
👍  ,
properties (23)
authorthe.queen
permlinkre-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180427t024036858z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["howo"],"app":"steemit/0.1"}
created2018-04-27 02:40:36
last_update2018-04-27 02:40:36
depth1
children1
last_payout2018-05-04 02:40:36
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation2,386,945,128
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,368,840
net_rshares10,348,511,101
author_curate_reward""
vote details (2)
@howo ·
I doubt very much I'll miss that ;)
properties (22)
authorhowo
permlinkre-thequeen-re-howo-steemsnippets-1-2-5-block-feed-skeleton-get-root-comment-and-reputation-snippets-20180427t121820294z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-27 12:18:21
last_update2018-04-27 12:18:21
depth2
children0
last_payout2018-05-04 12:18: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_length35
author_reputation515,737,941,459,006
root_title"SteemSnippets 1.2.5, Block feed skeleton, get root comment and reputation snippets"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,445,259
net_rshares0