create account

Engagement away from home by abh12345

View this thread on: hive.blogpeakd.comecency.com
· @abh12345 ·
$23.50
Engagement away from home
Looking at engagement outside ones own posts  - thoughts, method, and a couple of tables to show who's been doing this the most.

<center>
![people-2557396_1920.jpg](https://images.hive.blog/DQmYMvf8qHy5jcJCWJ1v5GEm2yPKsAWFMbvyAAtWU3UkmcJ/people-2557396_1920.jpg)
<sub><b>[source](https://pixabay.com/photos/people-girls-women-students-2557396/)</b></sub>
</center>
------------------

The following comment by @kristyglas on my post the other day forms the basis for today's effort:

> Orcas and dolphins get way more comments on their posts. Replying to comments is way faster (not necessarily easier) than finding interesting posts to comment on [source](https://hive.blog/engagement/@kristyglas/re-abh12345-qbf932)
#
I think so, and although responding to the people who have visited your content and chosen to make a comment is important (repeat visitors/retention?), the commentary elsewhere is also important (new eyes?), and should perhaps be looked at separately.

Yesterday I didn't post and spent most of my day replying to comments on my on blog, and whilst this makes my numbers look good in the table below, I do feel that my engagement on the posts of others has not been anything special.


##### Total comments on Hive since 3 pm - 20th March 2020

Account	|	Comments	|	Length
-	|	-	|	-
galenkp	|	4119	|	1070482
tattoodjay	|	3115	|	582747
melinda010100	|	2960	|	337529
johannpiber	|	2675	|	907985
russellstockley	|	2660	|	822739
tarazkp	|	2636	|	492735
flaxz	|	2520	|	343921
chekohler	|	2364	|	434206
abh12345	|	2231	|	408976
trincowski	|	2047	|	237592
wakeupkitty	|	1884	|	236339
artemislives	|	1867	|	512427
brittandjosie	|	1834	|	449073
silvertop	|	1796	|	292852

-------------------

#### SQL to the rescue
#### 
And so this morning, I have been looking at a method to count:

- How many comments one has made outside their own posts
- How many different people one has spoken to outside of replying to those commenting on their own posts


You can skip to the tables if code makes you cross-eyed 🤓


Getting the number of comments an account has made from a specific date is quite easy:

```
select count(*) from comments where 
author = 'abh12345'  -- ME
and created > '03/20/2020 15:00:00' -- Approx new chain start-time
and depth > 0 -- Comments only (Posts are depth 0)
```
<br>
However, because posts and comments reside in the same table on @hiveSQL and there is no obvious method to join the table back on itself, I have taken this rather fiddly approach to finding out if a comment that was made, was made in reply to a comment on ones own post.


```
select url, 
left(substring(url,CHARINDEX('@',url,1)+1,20), CHARINDEX('/',substring(url,CHARINDEX('@',url,1)+1,20))-1) as post_author 
from comments 
where depth > 0 and author = 'abh12345' 
and author <> left(substring(url,CHARINDEX('@',url,1)+1,20), CHARINDEX('/',substring(url,CHARINDEX('@',url,1)+1,20))-1) 
and created > '03/20/2020 15:00:00'
```
<br>

![image.png](https://images.hive.blog/DQmNvUEwTB7sCxPPJKttqiFh8gc3ESMRQdKedHFrcATWQCV/image.png)


The screenshot is shows some of the data returned from the above query.  Each post and comment has a url, and the first username in the URL will be the original post author.  So, it's just a matter of ensuring that this author is not the same as 'me', which is what this line does:

```
and author <> left(substring(url,CHARINDEX('@',url,1)+1,20), CHARINDEX('/',substring(url,CHARINDEX('@',url,1)+1,20))-1) 
```

In English, the process is something like:
1. Find the first '@' and tell me what position it is in the string
2. Start at this position +1 (we don't want the @), and give me the next 20 characters (should be enough to account for all length of username)
3. Use these 20 characters and give me everything to the left of the first '/' 

And so: 

'/hive-139358/@galenkp/your-limousine-has-arrived-sir#@abh12345/q8wibb'

becomes

'galenkp/your-limousi'

and then

'galenkp'

And then you can compare the comment author to what is returned from the string query, simples! 🙈

If anyone has a better method, I'm all ears!

----------------------

So, who has been commentating a lot outside of their own posts, and who's been speaking to many different people?

##### Total comments on Hive since 3pm - 20th March 2020, excluding replies to comments on own posts


Account	|	Comments	|	Length
-	|	-	|	-
galenkp	|	1959	|	476231
tattoodjay	|	1842	|	317958
flaxz	|	1735	|	239697
melinda010100	|	1734	|	220625
rockor	|	1721	|	138017
trincowski	|	1660	|	209792
silvertop	|	1654	|	264934
ryivhnn	|	1634	|	666635
chekohler	|	1609	|	276496
johannpiber	|	1525	|	517684
artemislives	|	1457	|	407770
# 

There is some overlap in this list and the one further up, and I think it might be interesting to look at the percentages of comments in/out of own posts, when looking at account 'class'.

Galen is a new orca, and with 1959 of 4119 comments made outside his own posts, a fairly even 47/53% split.  He is also the only orca in the 2nd list.

chekohler (11k HP) has 1609 of 2364 comments outside of own posts -  68/32%

trincowski (3.4k HP) has 1660 of 2047 comments outside of own posts - 81/19%

And where am I in this list? Much further down with 721 comments (out of 2231) outside of my own posts - 32/68%

A really small dataset, but it does seem that smaller accounts are commenting more outside their own posts.


-----------------------------

The final list shows the accounts who have commented on the most unique accounts' posts on Hive (since 3 pm 20th March 2020):

Account	|	No. of different people visited
-	|	-
joeyarnoldvn	|	696
johnolusegun	|	468
brittandjosie	|	466
creativemary	|	365
mattsanthonyit	|	349
steemsupporter	|	343
fredkese	|	340
silvertop	|	328
naturalmedicine	|	326
ewkaw	|	325
alokkumar121	|	324
melinda010100	|	321
chekohler	|	320
codingdefined	|	319
jeffjagoe	|	312
artemislives	|	310
mayvileros	|	301
sidwrites	|	301
# 
Notice that the orcas in the first list are nowhere to be found here, although engagement master/knucklehead Galen is not far behind with 293 different account-posts commented on.

182 for me,  which compared to the top of the list doesn't look that good.  However, the average number of unique people visited for all the accounts that have made at least one 'outreach' comment on Hive is *only* 16.8.

---------------

#### Summary  
#### 
Well I think I have new criteria to be included in the Engagement League at some point.  I do look at number of different people spoken to each week, but that includes people visiting your own posts.  

Do you think it is worth looking at comments made outside of own posts, and number of different people spoken to outside of your own posts?

And if so, do you think this type of 'outreach' engagement, should be scored higher than engaging on your own posts?

-------------------

Tomorrow I think I'm going to show you my sports watch, my brain is ded from this weeks data grind.

Have a good friday!

Asher
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 204 others
👎  
properties (23)
authorabh12345
permlinkengagement-away-from-home
categoryengagement
json_metadata{"tags":["engagement","outreach","ocd","palnet","neoxian"],"users":["kristyglas","hivesql"],"image":["https://images.hive.blog/DQmYMvf8qHy5jcJCWJ1v5GEm2yPKsAWFMbvyAAtWU3UkmcJ/people-2557396_1920.jpg","https://images.hive.blog/DQmNvUEwTB7sCxPPJKttqiFh8gc3ESMRQdKedHFrcATWQCV/image.png"],"links":["https://pixabay.com/photos/people-girls-women-students-2557396/","https://hive.blog/engagement/@kristyglas/re-abh12345-qbf932"],"app":"hiveblog/0.1","format":"markdown"}
created2020-06-05 13:16:36
last_update2020-06-05 13:16:36
depth0
children60
last_payout2020-06-12 13:16:36
cashout_time1969-12-31 23:59:59
total_payout_value13.752 HBD
curator_payout_value9.751 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,946
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,473
net_rshares54,402,131,798,224
author_curate_reward""
vote details (269)
@amico ·
A huge hug  🤗 and a little bit of !BEER 🍻 from @amico! 
___
Un caro abbraccio 🤗 e un po' di BEER 🍻 da @amico!
properties (22)
authoramico
permlinkre-engagement-away-from-home-20200605t131848z
categoryengagement
json_metadata"{"app": "rewarding/0.1.0"}"
created2020-06-05 13:18:51
last_update2020-06-05 13:18:51
depth1
children0
last_payout2020-06-12 13:18: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_length111
author_reputation51,076,240,298,517
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,519
net_rshares0
@arcange ·
$0.06
Good trick to SUBSTRINGify the url to find the post author.

But when dealing with dates, you should use ANSI date format (YYYY-MM-DD) because you do not know the locale of the server. Would it be a different date format than US (MM/DD/YYYY), or change to a different format, your query will fail.

By replacing `created > '03/20/2020 15:00:00'` with `created > '2020-03-20 15:00:00'`, your query will **never** fail, whatever the locale of the server.

Add to this that the latest format is more "universal" and is less confusing. 
👍  
👎  
properties (23)
authorarcange
permlinkre-abh12345-qblsy1
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-08 10:54:09
last_update2020-06-08 10:54:09
depth1
children4
last_payout2020-06-15 10:54:09
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length532
author_reputation1,149,826,979,348,487
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,842,074
net_rshares222,497,503,576
author_curate_reward""
vote details (2)
@abh12345 · (edited)
It does the job :)

Thanks for the tip on dates.  I usually take the day month year out of timestamp/created and build my own date - much easier when exporting to excel I find.

> select 
cast(day(timestamp)as varchar(20)) + '/' + cast(month(timestamp)as varchar(20)) + '/' + cast(year(timestamp)as varchar(20))
properties (22)
authorabh12345
permlinkre-arcange-qblt5x
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-08 10:58:45
last_update2020-06-08 10:59:48
depth2
children3
last_payout2020-06-15 10:58: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_length311
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,842,122
net_rshares0
@arcange ·
$0.05
If you plan to export a date part to Excel, better (and faster) to use `CONVERT(DATE,timestamp)`<div class="pull-right"><a href="/@hive.engage">![](https://i.imgur.com/XsrNmcl.png)</a></div>
👍  
👎  
properties (23)
authorarcange
permlinkre-re-arcange-qblt5x
categoryengagement
json_metadata{"app":"engage"}
created2020-06-09 14:40:33
last_update2020-06-09 14:40:33
depth3
children2
last_payout2020-06-16 14:40:33
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length190
author_reputation1,149,826,979,348,487
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,864,564
net_rshares217,558,014,342
author_curate_reward""
vote details (2)
@bashadow ·
$0.02
I think the 'outreach' engagement is a good idea. While I tend to view and comment on several post a day, I do realize that most of my comments go to the same grouping of people, so I know I need to reach out more.

It has been quite some time since the last League update, and this could be a nice metric to add.
👍  , ,
properties (23)
authorbashadow
permlinkre-abh12345-qbgpdz
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 16:49:03
last_update2020-06-05 16:49:03
depth1
children1
last_payout2020-06-12 16:49:03
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length313
author_reputation100,388,692,638,882
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,789,551
net_rshares98,453,427,001
author_curate_reward""
vote details (3)
@abh12345 ·
Thanks for the feedback, I think they will both be added :)
properties (22)
authorabh12345
permlinkre-bashadow-qbgun5
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 18:42:42
last_update2020-06-05 18:42:42
depth2
children0
last_payout2020-06-12 18:42: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_length59
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,791,501
net_rshares0
@bhoa ·
$0.02
> And if so, do you think this type of 'outreach' engagement, should be scored higher than engaging on your own posts?

I think engagement is meant to be both ways. Your post and other people's post.  This will help in discovering people with good content too.


New users have to comment on other posts to get seen unlike the big boys who know themselves already. You might then notice that there are constant people on most of the posts done by the orcas ... 
Well this criterion will make things tougher on the engagement league.
👍  , ,
properties (23)
authorbhoa
permlinkqbgl4n
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 15:17:18
last_update2020-06-05 15:17:18
depth1
children0
last_payout2020-06-12 15:17:18
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length532
author_reputation60,701,104,434,307
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,788,060
net_rshares97,612,684,739
author_curate_reward""
vote details (3)
@brittandjosie ·
 ~ I didn't post and spent most of my day replying to comments on my on blog, and whilst this makes my numbers look good in the table below, I do feel that my engagement on the posts of others has not been anything special.~
I have thought about doing one day of only reading and commenting. but i am here to post, i am the girl with the ideas and love to make a blog. 
I think if someone spent a moment or even two to comment on a masterpiece blog you did the least you can do is be nice and answer back just as in real life.

That said, it will take away time to spend to comment outside your own blog. 

~ Do you think it is worth looking at comments made outside of own posts, and number of different people spoken to outside of your own posts? ~ 
well yes, your are the list guy, and this could provide a whole different look on the list and might be interesting. Or a separate league. In the past there were tow leagues aswell remember. And there are sponsors enough.

That ‘outreach' engagement, could be scored higher than engaging on your own posts, and make total engagement better in numbers i guess. 

But i am a fan of the list on sunday but maybe it need a few new rows, as i said could be interesting ! More work for you less biking though

We could also tie our sweet orca at the number 1 place to a chair ( Janton style) without his computer and see what happens to the numbers hahahahah, they will be different i tell ya,

Oh and dont tell him i want to tie him to a chair please,
B


👍  ,
properties (23)
authorbrittandjosie
permlinkre-abh12345-qbgl44
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 15:16:51
last_update2020-06-05 15:16:51
depth1
children3
last_payout2020-06-12 15:16: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_length1,503
author_reputation525,661,217,955,513
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,788,050
net_rshares333,127,282
author_curate_reward""
vote details (2)
@abh12345 ·
It all points to more work for me and less time on my bike!

I think the EL is due a revamp though, and these metrics could help :)
properties (22)
authorabh12345
permlinkre-brittandjosie-qbgl7q
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 15:19:03
last_update2020-06-05 15:19:03
depth2
children2
last_payout2020-06-12 15:19: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_length131
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,788,096
net_rshares0
@brittandjosie ·
I say revamp away , biking can be done tomorrow
properties (22)
authorbrittandjosie
permlinkqbgl97
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 15:19:54
last_update2020-06-05 15:19:54
depth3
children1
last_payout2020-06-12 15:19: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_length47
author_reputation525,661,217,955,513
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,788,117
net_rshares0
@codingdefined ·
So with 319 comments on different author is actually good for me, can be better. Interesting case study.
👍  ,
properties (23)
authorcodingdefined
permlinkre-abh12345-202065t1912374z
categoryengagement
json_metadata{"tags":["engagement","outreach","ocd","palnet","neoxian"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-06-05 13:31:27
last_update2020-06-05 13:31:27
depth1
children1
last_payout2020-06-12 13:31: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_length104
author_reputation546,625,180,824,195
root_title"Engagement away from home"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,727
net_rshares280,675,723
author_curate_reward""
vote details (2)
@abh12345 ·
That is a huge number of different people spoken to outside of your own posts!
properties (22)
authorabh12345
permlinkre-codingdefined-qbggm8
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:39:45
last_update2020-06-05 13:39:45
depth2
children0
last_payout2020-06-12 13:39: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_length78
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,836
net_rshares0
@creativemary ·
Oh my it's so cool you can make all of these statistics and show it to us. There are some serious heavy weight champions in here haha
👍  ,
properties (23)
authorcreativemary
permlinkqbgncw
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 16:05:24
last_update2020-06-05 16:05:24
depth1
children2
last_payout2020-06-12 16:05: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_length133
author_reputation546,556,273,326,144
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,788,809
net_rshares276,150,774
author_curate_reward""
vote details (2)
@abh12345 ·
Yes there are, and you are one of them - so many people you have spoken to of late :)
properties (22)
authorabh12345
permlinkre-creativemary-qbgupf
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 18:44:06
last_update2020-06-05 18:44:06
depth2
children1
last_payout2020-06-12 18:44: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_length85
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,791,527
net_rshares0
@creativemary ·
I consider it only fair to give back to a community which offered me such a place to express freely and with members who can appreciate value when they see it. I have to put in the extra effort and hope that people will engage more in here if they realise their posts are being read and appreciated. I must admit it is quite a challenge and I have to set up a schedule in order to give Hive the deserved time
👍  
properties (23)
authorcreativemary
permlinkqbhnbp
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-06 05:02:15
last_update2020-06-06 05:02:15
depth3
children0
last_payout2020-06-13 05:02: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_length408
author_reputation546,556,273,326,144
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,799,060
net_rshares131,557,545
author_curate_reward""
vote details (1)
@cryptoandcoffee ·
Those are some impressive numbers and the number of different people visited is truly remarkable.
👍  ,
properties (23)
authorcryptoandcoffee
permlinkqbgfw2
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 13:24:03
last_update2020-06-05 13:24:03
depth1
children1
last_payout2020-06-12 13: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_length97
author_reputation3,765,065,297,355,280
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,608
net_rshares283,725,539
author_curate_reward""
vote details (2)
@abh12345 ·
Yeah I think some people (no names brittandjosie) have taken it upon themselves to welcome every new account to Hive :)
properties (22)
authorabh12345
permlinkre-cryptoandcoffee-qbgfxi
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:24:54
last_update2020-06-05 13:24:54
depth2
children0
last_payout2020-06-12 13: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_length119
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,624
net_rshares0
@galenkp ·
Hey mate, some interesting stats. Showing  commenting statistics *outside of ones own posts* would be a good addition to the EL I think. It will show who is spreading the engagement around and who is commenting with a small select group. 

I was pleased to see my nearly 50/50 split although a little disappointed to see my *unique users commented on* being a little lower. I considered why this may be. 

I think, for me, it is because I focus on supporting people through engagement and that process takes time to develop. Hence my commenting is less widespread, but penetrates much deeper. 

Me spreading 620 comments a week between 620 accounts would provide no value to those 620 accounts...Follow up commenting and engagement is required, not simply *drop and run* commenting. 

Engaging to me doesn't mean dropping as many comments as possible, but getting involved, conversing. That's my idea of it, and I think the comment count, split between within and without my posts and character count demonstrates that. 

This is a good post, and interesting statistics, although the code did my head in. (I'm a dumb bastard so don't understand it.) I hope people can see patterns here, and that they can see the benefit of engaging for effect, not just engaging to make it up the list on the EL.
👍  ,
properties (23)
authorgalenkp
permlinkqbh90h
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 23:53:06
last_update2020-06-05 23:53:06
depth1
children2
last_payout2020-06-12 23:53: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_length1,296
author_reputation3,723,499,743,338,065
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,796,349
net_rshares412,387,473
author_curate_reward""
vote details (2)
@abh12345 ·
Yes, I think I will include these metrics in the EL, probably starting a week on Sunday.

> Me spreading 620 comments a week between 620 accounts would provide no value to those 620 accounts...Follow up commenting and engagement is required, not simply drop and run commenting.

Very true, and that is an insane number of accounts to keep up with.  Seems you are doing a solid job sir, hats off :)
properties (22)
authorabh12345
permlinkqbibbd
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-06 13:40:27
last_update2020-06-06 13:40:27
depth2
children1
last_payout2020-06-13 13:40: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_length397
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,805,404
net_rshares0
@galenkp ·
It will be interesting to see if it changes the results any, the new metrics I mean.
properties (22)
authorgalenkp
permlinkqbicjd
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-06 14:06:48
last_update2020-06-06 14:06:48
depth3
children0
last_payout2020-06-13 14:06: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_length84
author_reputation3,723,499,743,338,065
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,805,710
net_rshares0
@kristyglas ·
Aww thank you for the shoutout!
Not at all surprised to see trincowski and ryivhnn :D I've got a lot to learn from them xD

>The final list shows the accounts who have commented on the most unique accounts' posts on Hive (since 3 pm 20th March 2020)

That's a really good addition :D

Unfortunately I don't understand any of the code part, but your compilations and stats are easy to understand (I think haha) Actually most of those posting a lot are also diversifying :D
👍  ,
properties (23)
authorkristyglas
permlinkre-abh12345-qbghwe
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 14:07:33
last_update2020-06-05 14:07:33
depth1
children1
last_payout2020-06-12 14:07: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_length471
author_reputation128,388,033,443,655
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,165
net_rshares324,136,066
author_curate_reward""
vote details (2)
@abh12345 ·
My pleasure :)  Thanks for the encouragement to look further into this data!
👍  
properties (23)
authorabh12345
permlinkqbgjdc
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 14:39:12
last_update2020-06-05 14:39:12
depth2
children0
last_payout2020-06-12 14:39: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_length76
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,555
net_rshares16,440,439,162
author_curate_reward""
vote details (1)
@meesterboom ·
I had a week off in this period. That must really have dented my stats!!

I do try to comment on other posts, I am not a fan of those who only ever reply but there are a lot of those kind of authors.

I have joined a table to itself before, usually when you make the table as an alias and nested selects. It isn't the most graceful. 

select * from comments com1 
where blah in (select * from blah)
And blah in/not in etc

But fuck it, yours works!! :0D
👍  ,
properties (23)
authormeesterboom
permlinkqbghuf
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 14:06:18
last_update2020-06-05 14:06:18
depth1
children2
last_payout2020-06-12 14:06:18
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_length453
author_reputation1,803,855,402,078,242
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,149
net_rshares330,399,691
author_curate_reward""
vote details (2)
@abh12345 ·
$0.07
Yep I think your week off cost you here :)

Love me some nested selects for readability! 

The issue is seemingly a lack of key to main post from the comments within.

Also, a comment has a depth > 1 and a  parent author, but nothin to say it is a comment of this post which was written by this author.  

Anyway, string query saves the day!
👍  
properties (23)
authorabh12345
permlinkqbgj8k
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 14:36:21
last_update2020-06-05 14:36:21
depth2
children1
last_payout2020-06-12 14:36:21
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length341
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,510
net_rshares267,071,535,079
author_curate_reward""
vote details (1)
@meesterboom ·
Good old string query, almost sounds like a sitcom!! :OD

I must try harder in the other commenting!
properties (22)
authormeesterboom
permlinkqbgjuh
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 14:49:30
last_update2020-06-05 14:49:30
depth3
children0
last_payout2020-06-12 14:49: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_length100
author_reputation1,803,855,402,078,242
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,702
net_rshares0
@melinda010100 ·
I'm quite thrilled to see that I made it on your sample lists! A great way for me to reach out is by using Communities! If I comment on all the posts in #FeatheredFriends, #ShadowHunters and then go to @barbara-orenya's #FeelGood Community it provides me with more posts to comment on than I can manage in a day! I really hope that we see communities being supported and utilized more and more! A lot of the Redfish that post into Shadowhunters could use more encouragement! 
properties (22)
authormelinda010100
permlinkre-abh12345-202068t173547278z
categoryengagement
json_metadata{"tags":["engagement","outreach","ocd","palnet","neoxian"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-06-08 22:35:48
last_update2020-06-08 22:35:48
depth1
children0
last_payout2020-06-15 22:35: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_length475
author_reputation1,092,371,412,175,977
root_title"Engagement away from home"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,853,161
net_rshares0
@oredebby ·
Wow you took your time to do all these? This is huge and really helpful. Well its good to post but interacting with others is also a key part to be relevant on the blockchain.
👍  ,
properties (23)
authororedebby
permlinkqbgfzy
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 13:25:48
last_update2020-06-05 13:25:48
depth1
children1
last_payout2020-06-12 13:25: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_length175
author_reputation148,269,625,840,013
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,643
net_rshares282,197,568
author_curate_reward""
vote details (2)
@abh12345 ·
I'm not sure how helpful but it is something I was interested to see, cheers :)
properties (22)
authorabh12345
permlinkre-oredebby-qbgg6v
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:30:30
last_update2020-06-05 13:30:30
depth2
children0
last_payout2020-06-12 13:30: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_length79
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,713
net_rshares0
@palasatenea ·
This shows another picture very different from your last statistics, could be good info for the engagement league, sincerely I didn't expect so drastic changes in the data, some of the users on the list are veterans from the engagement league also but including this possibly they will be better ranked, I'm happy for trinkowski and brittandjosie two users that I appreciate a lot because they do a fantastic job in Hive engaging with others.

Excellent work abh12345.  
👍  ,
properties (23)
authorpalasatenea
permlinkre-abh12345-qbggy1
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:46:51
last_update2020-06-05 13:46:51
depth1
children4
last_payout2020-06-12 13:46: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_length470
author_reputation6,973,925,098,488
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,911
net_rshares271,613,026
author_curate_reward""
vote details (2)
@abh12345 ·
Thanks very much :)

Yeah the 'outreach' commentating is definitely worth highlighting in a different way to engaging on your own blog.  Both are essential I think, but for different reasons.  Cheers!
properties (22)
authorabh12345
permlinkre-palasatenea-qbgh2p
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:49:39
last_update2020-06-05 13:49:39
depth2
children0
last_payout2020-06-12 13:49: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_length200
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,942
net_rshares0
@brittandjosie ·
Well thats do nice and highly appreciated @palasatenea and indeed i will add veteran to my info 
👍  
properties (23)
authorbrittandjosie
permlinkre-palasatenea-qbgld9
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 15:22:21
last_update2020-06-05 15:22:21
depth2
children2
last_payout2020-06-12 15:22: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_length96
author_reputation525,661,217,955,513
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,788,175
net_rshares21,866,848,571
author_curate_reward""
vote details (1)
@palasatenea ·
Lol I should've written remarkable members, I understand that the veteran word isn't the preferred one for any woman 😄.
properties (22)
authorpalasatenea
permlinkre-brittandjosie-qbgnde
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 16:05:39
last_update2020-06-05 16:05:39
depth3
children1
last_payout2020-06-12 16:05: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_length119
author_reputation6,973,925,098,488
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,788,814
net_rshares0
@por500bolos ·
I would bet my "engagement" outside of my own posts must be way higher. Not because I'm not replying and engaging enough with the commenters of my posts. But because there don't seem to be many kamikazes here who dare to comment on my articles. LoL
👍  ,
properties (23)
authorpor500bolos
permlinkqbhjmq
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-06 03:42:45
last_update2020-06-06 03:42:45
depth1
children2
last_payout2020-06-13 03:42: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_length248
author_reputation15,305,611,876,551
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,798,433
net_rshares268,635,584
author_curate_reward""
vote details (2)
@abh12345 ·
haha :)

Yeah I reckon so, you could soar up the EL!
👍  
properties (23)
authorabh12345
permlinkre-por500bolos-qblt1f
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-08 10:56:03
last_update2020-06-08 10:56:03
depth2
children1
last_payout2020-06-15 10:56: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_length52
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,842,095
net_rshares22,349,966,991
author_curate_reward""
vote details (1)
@por500bolos ·
Thank you for the recognition!! };D
properties (22)
authorpor500bolos
permlinkqblut5
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-08 11:34:18
last_update2020-06-08 11:34:18
depth3
children0
last_payout2020-06-15 11:34:18
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_reputation15,305,611,876,551
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,842,615
net_rshares0
@prydefoltz ·
I know I am super appreciative of the comments given to me and I do make an effort to leave at least a few comments a day on the posts of others but I have to admit that it is among my circle of friends. Although, I upvote a wider circle. Time is always the factor. Another factor that might be interesting to study is the length and original content in each comment. I get a lot of 'nice picture(s)' on posts that were more than just a picture. Should we consider qualitative measures of comments as well as quantitative?
👍  ,
properties (23)
authorprydefoltz
permlinkre-abh12345-qbgfzw
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:26:21
last_update2020-06-05 13:26:21
depth1
children5
last_payout2020-06-12 13:26: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_length522
author_reputation360,132,673,030,656
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,653
net_rshares329,963,254
author_curate_reward""
vote details (2)
@abh12345 ·
> ...  I do make an effort to leave at least a few comments a day on the posts of others but I have to admit that it is among my circle of friends.

Nothing wrong with this at all, I guess it depends how many friends you want :)


> Should we consider qualitative measures of comments as well as quantitative?

We should, but it is easier said than done.

Any ideas on how to do this, (other than just discounting 'nice post', and 'upvote plz sir') would be appreciated :)

properties (22)
authorabh12345
permlinkre-prydefoltz-qbggbn
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:33:24
last_update2020-06-05 13:33:24
depth2
children3
last_payout2020-06-12 13:33: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_length474
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,760
net_rshares0
@prydefoltz ·
Word count would give you an idea, and I think (don't know) spam detector software would weed out posts that were too similar. Also whether the comment was responded too and how many times. Quality comments usually get responded to and a thread is created with more than two entries. 
properties (22)
authorprydefoltz
permlinkre-abh12345-qbggrz
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:43:12
last_update2020-06-05 13:43:12
depth3
children2
last_payout2020-06-12 13:43: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_length284
author_reputation360,132,673,030,656
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,867
net_rshares0
@codingdefined ·
That's a very good point, we need to check the combination of quality along with the quantity. But how do you define quality, just by removing common words or there should be a length of the comments or it can be no two comments by an author should be exact copy.
properties (22)
authorcodingdefined
permlinkre-prydefoltz-202065t19331678z
categoryengagement
json_metadata{"tags":["esteem"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-06-05 13:33:33
last_update2020-06-05 13:33:33
depth2
children0
last_payout2020-06-12 13:33: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_length263
author_reputation546,625,180,824,195
root_title"Engagement away from home"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,762
net_rshares0
@shanibeer ·
I would find it helpful to separate replies to comments on the author's own posts from comments made on other authors' posts.
They're both important so I wouldn't rank either one higher than the other.
I guess a minimum five word/20 character threshold could eliminate lots of the "nice picture" comments, but on the other hand it could also knock out the little riffs of repartee which are such a joy to read :)
I found it useful, when I was new, to get the feedback that the Engagment League provides: I'm always more or less in the shallows, so I felt that my engagement was about right for the time I had available and what I wanted to do.
Is there still a redfish league? I thought this was really good for smaller accounts, as there may be too much competition for them to appear in the Engagement League, but the redfish league would still provide them with some feedback.
Thank you for this - all really interesting :)
👍  ,
properties (23)
authorshanibeer
permlinkre-abh12345-qbgivj
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 14:28:33
last_update2020-06-05 14:28:33
depth1
children3
last_payout2020-06-12 14:28: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_length926
author_reputation251,500,308,465,095
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,392
net_rshares330,554,137
author_curate_reward""
vote details (2)
@abh12345 ·
I will look adding these metrics into the EL, and probably remove a couple of less important ones (like witness votes).

> I guess a minimum five word/20 character threshold could eliminate lots of the "nice picture" comments, but on the other hand it could also knock out the little riffs of repartee which are such a joy to read :)

Exactly, and why i'm not all in on the idea to chop off short comments.

> Is there still a redfish league? I thought this was really good for smaller accounts, as there may be too much competition for them to appear in the Engagement League, but the redfish league would still provide them with some feedback.

Sadly not, paulag did the legwork with that one and I'm worried about doing something similar because of the time it takes.  

Thanks for stopping by, have a nice weekend.
properties (22)
authorabh12345
permlinkqbgjlc
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 14:44:03
last_update2020-06-05 14:44:03
depth2
children2
last_payout2020-06-12 14:44: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_length818
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,623
net_rshares0
@brittandjosie ·
Less important ones WITNESS VOTES , maybe people who havent votes 30 witnesses are not allowed to participate, witnesses are important 
properties (22)
authorbrittandjosie
permlinkre-abh12345-qbgl69
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 15:18:09
last_update2020-06-05 15:18:09
depth3
children1
last_payout2020-06-12 15:18: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_length135
author_reputation525,661,217,955,513
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,788,070
net_rshares0
@shmoogleosukami ·
Very insightful, having more metrics to work with definitely paints a more complete picture of how the platform is performing and how people are behaving. With this kind of data we could discover areas of improvement in both behaviour and user experience.
👍  ,
properties (23)
authorshmoogleosukami
permlinkre-abh12345-qbgj67
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 14:34:57
last_update2020-06-05 14:34:57
depth1
children1
last_payout2020-06-12 14:34: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_length255
author_reputation229,385,617,821,986
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,481
net_rshares277,653,047
author_curate_reward""
vote details (2)
@abh12345 ·
Cheers :)

Yeah I think my messing around could well end up as part of a larger project, within an app, at some point.
👍  
properties (23)
authorabh12345
permlinkqbgjaa
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 14:37:21
last_update2020-06-05 14:37:21
depth2
children0
last_payout2020-06-12 14:37: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_length118
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,532
net_rshares25,714,127,908
author_curate_reward""
vote details (1)
@tarazkp ·
Yep, I am guilty of not commenting off of my own blog that much these days, but I do make the effort to sometimes, as well as read and vote.
👍  ,
properties (23)
authortarazkp
permlinkqbgra6
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 17:30:09
last_update2020-06-05 17:30:09
depth1
children3
last_payout2020-06-12 17:30: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_length140
author_reputation5,986,254,750,259,059
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,790,215
net_rshares273,404,097
author_curate_reward""
vote details (2)
@abh12345 ·
$0.05
You are quite busy here and in real life, but I think the numbers would be well above average.
👍  
properties (23)
authorabh12345
permlinkre-tarazkp-qbgz02
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 20:16:51
last_update2020-06-05 20:16:51
depth2
children2
last_payout2020-06-12 20:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,793,046
net_rshares218,865,581,276
author_curate_reward""
vote details (1)
@tarazkp ·
I have been adding a few names to my follow list lately from those who engage with me. I figure that I am not going to search for new authors that much as I am not a great consumer of random in real life. However, if they take the time and engage well with me, I will give them a follow and see what they are up to.
properties (22)
authortarazkp
permlinkqbgz60
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 20:20:24
last_update2020-06-05 20:20:24
depth3
children1
last_payout2020-06-12 20:20: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_length315
author_reputation5,986,254,750,259,059
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,793,111
net_rshares0
@thetimetravelerz ·
would love to join this esteemed group
properties (22)
authorthetimetravelerz
permlinkqbi6im
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-06 12:06:30
last_update2020-06-06 12:06:30
depth1
children1
last_payout2020-06-13 12:06: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_length38
author_reputation225,665,716,179,203
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,804,297
net_rshares0
@abh12345 ·
Me too :D
properties (22)
authorabh12345
permlinkre-thetimetravelerz-qblt1p
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-08 10:56:15
last_update2020-06-08 10:56:15
depth2
children0
last_payout2020-06-15 10:56: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_length9
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,842,099
net_rshares0
@thisismylife ·
$0.02
Ok, so you lost me when talking about queries and code and .. lol..
It's great that you can pull out this info though :) 
👍  , ,
properties (23)
authorthisismylife
permlinkre-abh12345-qbgh0i
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 13:48:18
last_update2020-06-05 13:48:18
depth1
children2
last_payout2020-06-12 13:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation683,250,614,739,688
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,786,932
net_rshares98,367,716,534
author_curate_reward""
vote details (3)
@abh12345 ·
Yeah, I think that will be the case for many.  The reason I add it is partly  for future reference, and to pad the work out :D
👍  
properties (23)
authorabh12345
permlinkqbgjes
categoryengagement
json_metadata{"app":"hiveblog/0.1"}
created2020-06-05 14:40:06
last_update2020-06-05 14:40:06
depth2
children1
last_payout2020-06-12 14:40: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_length126
author_reputation1,408,615,966,842,648
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,568
net_rshares1,375,877,106
author_curate_reward""
vote details (1)
@thisismylife ·
Well, keep up the good work, I'd say :) and have a wonderful weekend ;)
properties (22)
authorthisismylife
permlinkre-abh12345-qbgji1
categoryengagement
json_metadata{"tags":["engagement"],"app":"peakd/2020.05.5"}
created2020-06-05 14:42:03
last_update2020-06-05 14:42:03
depth3
children0
last_payout2020-06-12 14:42: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_length71
author_reputation683,250,614,739,688
root_title"Engagement away from home"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,787,600
net_rshares0