Looking at engagement outside ones own posts - thoughts, method, and a couple of tables to show who's been doing this the most. <center>  <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>  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
author | abh12345 |
---|---|
permlink | engagement-away-from-home |
category | engagement |
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"} |
created | 2020-06-05 13:16:36 |
last_update | 2020-06-05 13:16:36 |
depth | 0 |
children | 60 |
last_payout | 2020-06-12 13:16:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 13.752 HBD |
curator_payout_value | 9.751 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,946 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,473 |
net_rshares | 54,402,131,798,224 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enlil | 0 | 135,843,335,154 | 25% | ||
onealfa | 0 | 165,648,393,520 | 5% | ||
kingscrown | 0 | 1,366,592,772,579 | 15% | ||
field | 0 | 19,209,205,987 | 100% | ||
livingfree | 0 | 175,247,871,978 | 1% | ||
jeffjagoe | 0 | 92,865,278,150 | 24% | ||
meesterboom | 0 | 1,800,949,629,488 | 100% | ||
arcange | 0 | 768,025,683,835 | 25% | ||
sharker | 0 | 3,901,355,466 | 13.75% | ||
raphaelle | 0 | 22,576,385,158 | 25% | ||
sazbird | 0 | 39,568,673,453 | 50% | ||
kibela | 0 | 3,564,244,806 | 13.75% | ||
alinalazareva | 0 | 537,668,564 | 10% | ||
jphamer1 | 0 | 2,776,867,727,532 | 100% | ||
shanghaipreneur | 0 | 202,859,041,364 | 100% | ||
kiddarko | 0 | 9,524,005,587 | 7.5% | ||
borran | 0 | 373,351,569,611 | 55% | ||
anech512 | 0 | 6,606,055,882 | 25% | ||
lemouth | 0 | 883,423,445,935 | 50% | ||
wisbeech | 0 | 8,237,797,178 | 100% | ||
jlufer | 0 | 34,663,177,585 | 100% | ||
por500bolos | 0 | 22,430,716,132 | 75% | ||
dadview | 0 | 2,011,390,466 | 4.5% | ||
abh12345 | 0 | 2,012,467,651,324 | 100% | ||
justyy | 0 | 73,492,657,912 | 7.5% | ||
clayboyn | 0 | 58,000,247,076 | 12.5% | ||
gamer00 | 0 | 20,039,575,231 | 1.32% | ||
jaybird | 0 | 188,586,170,661 | 100% | ||
slider2990 | 0 | 26,458,750,567 | 30% | ||
created | 0 | 203,349,790,479 | 1% | ||
adventureevryday | 0 | 8,575,946,145 | 15% | ||
edb | 0 | 224,363,368,621 | 50% | ||
amariespeaks | 0 | 4,960,752,521 | 40% | ||
da-dawn | 0 | 31,424,569,066 | 23% | ||
dzboston33 | 0 | 971,938,089 | 50% | ||
silviabeneforti | 0 | 97,292,158,479 | 100% | ||
tarazkp | 0 | 3,681,898,588,569 | 100% | ||
noemilunastorta | 0 | 26,793,962,066 | 67% | ||
buzzbeergeek | 0 | 2,717,802,440 | 15% | ||
markkujantunen | 0 | 30,765,249,576 | 25% | ||
danielsaori | 0 | 497,217,172,639 | 100% | ||
detlev | 0 | 18,673,535,324 | 1.5% | ||
fingersik | 0 | 56,431,814,983 | 100% | ||
anomadsoul | 0 | 60,778,868,417 | 100% | ||
marxrab | 0 | 3,112,472,819 | 5% | ||
steemitcitizen | 0 | 602,104,403 | 7.5% | ||
melinda010100 | 0 | 126,948,229,490 | 30% | ||
smasssh | 0 | 1,579,529,549,853 | 50% | ||
thenightflier | 0 | 347,894,448,756 | 100% | ||
khussan | 0 | 1,814,875,112 | 100% | ||
aleister | 0 | 8,848,191,914 | 10% | ||
swelker101 | 0 | 65,672,869,949 | 25% | ||
varunpinto | 0 | 3,777,640,659 | 100% | ||
isaria | 0 | 381,444,851,952 | 25% | ||
mdosev | 0 | 2,528,810,292 | 7.5% | ||
galenkp | 0 | 1,891,046,314,535 | 100% | ||
maxer27 | 0 | 129,473,216,148 | 25% | ||
drakos | 0 | 499,650,209,201 | 30% | ||
jaynie | 0 | 278,918,506,058 | 40% | ||
howtostartablog | 0 | 8,094,979,426 | 30% | ||
xyzashu | 0 | 1,041,868,576 | 50% | ||
jayna | 0 | 50,389,113,106 | 16% | ||
ew-and-patterns | 0 | 265,889,218,708 | 10% | ||
geekgirl | 0 | 863,149,183,875 | 100% | ||
benedict08 | 0 | 184,104,583,016 | 50% | ||
mcoinz79 | 0 | 2,940,852,468,901 | 100% | ||
kristyglas | 0 | 16,880,403,205 | 100% | ||
codingdefined | 0 | 193,848,225,492 | 100% | ||
shebe | 0 | 12,018,449,658 | 23.85% | ||
themarkymark | 0 | 2,180,058,764,275 | 10% | ||
cranium | 0 | 175,909,359,383 | 100% | ||
steemvote | 0 | 1,511,590,708,601 | 100% | ||
steempostitalia | 0 | 434,634,549,171 | 100% | ||
jasonbu | 0 | 89,666,760,168 | 64.89% | ||
fabiyamada | 0 | 894,005,475 | 2% | ||
shanibeer | 0 | 185,915,578,739 | 30% | ||
minismallholding | 0 | 338,566,413,298 | 100% | ||
fionasfavourites | 0 | 30,633,005,910 | 50% | ||
costanza | 0 | 186,851,197,903 | 100% | ||
santigs | 0 | 6,999,891,986 | 25% | ||
bashadow | 0 | 74,787,382,960 | 25% | ||
coruscate | 0 | 173,110,480,634 | 50% | ||
kimzwarch | 0 | 8,887,567,948 | 4% | ||
crokkon | 0 | 68,927,426,758 | 100% | ||
buildawhale | 0 | 5,284,899,442,787 | 10% | ||
raj808 | 0 | 37,836,646,559 | 100% | ||
justinparke | 0 | 2,795,280,909 | 5% | ||
alinakot | 0 | 137,379,545,937 | 100% | ||
joshman | 0 | 488,798,185,643 | 10% | ||
taskmaster4450 | 0 | 88,310,952,372 | 5% | ||
revisesociology | 0 | 498,676,038,516 | 40% | ||
puncakbukit | 0 | 42,488,181,918 | 25% | ||
superbing | 0 | 3,200,155,844 | 90% | ||
izzydawn | 0 | 14,746,979,071 | 100% | ||
makerhacks | 0 | 11,404,862,648 | 10% | ||
heidi71 | 0 | 73,339,488,185 | 100% | ||
pitboy | 0 | 282,535,064,944 | 100% | ||
thetimetravelerz | 0 | 9,324,286,184 | 100% | ||
josediccus | 0 | 129,207,178,713 | 30% | ||
liverpool-fan | 0 | 1,669,077,909 | 30% | ||
traciyork | 0 | 380,126,653,376 | 100% | ||
karinxxl | 0 | 1,375,262,354 | 25% | ||
omstavan | 0 | 5,606,909,783 | 100% | ||
yogajill | 0 | 164,836,718,465 | 100% | ||
mytechtrail | 0 | 34,970,081,048 | 15% | ||
skycae | 0 | 1,303,762,023 | 10% | ||
b00m | 0 | 137,181,416,404 | 100% | ||
itchyfeetdonica | 0 | 55,724,025,951 | 50% | ||
marcolino76 | 0 | 19,366,659,538 | 50% | ||
steembasicincome | 0 | 518,994,659,912 | 26.5% | ||
upmyvote | 0 | 7,990,647,874 | 10% | ||
elbrava | 0 | 1,200,244,669 | 20% | ||
aussieninja | 0 | 112,115,350,966 | 100% | ||
abitcoinskeptic | 0 | 50,288,434,431 | 15% | ||
jongolson | 0 | 456,445,686,861 | 50% | ||
adityajainxds | 0 | 18,438,725,140 | 50% | ||
girolamomarotta | 0 | 52,348,923,937 | 70% | ||
rovingman | 0 | 1,427,201,190 | 100% | ||
korinkrafting | 0 | 840,665,908 | 22.5% | ||
mehta | 0 | 1,708,518,144 | 100% | ||
davemccoy | 0 | 5,171,800,619 | 100% | ||
mermaidvampire | 0 | 7,494,418,391 | 45% | ||
patricklancaster | 0 | 1,242,462,424 | 7.5% | ||
jimcustodio | 0 | 1,872,911,562 | 50% | ||
nobyeni | 0 | 625,018,055 | 1.32% | ||
realtreebivvy | 0 | 9,568,065,944 | 100% | ||
holger80 | 0 | 2,069,983,604,662 | 50% | ||
shmoogleosukami | 0 | 52,775,293,969 | 100% | ||
glenalbrethsen | 0 | 430,239,313,795 | 60% | ||
ericburgoyne | 0 | 1,341,721,948 | 20% | ||
moeenali | 0 | 1,612,135,034 | 1% | ||
sweetkathy | 0 | 2,187,837,156 | 100% | ||
anikys3reasure | 0 | 652,166,711 | 13.25% | ||
ipromote | 0 | 29,475,252,899 | 10% | ||
bozz | 0 | 45,377,633,916 | 10% | ||
whack.science | 0 | 114,669,980,376 | 35% | ||
russellstockley | 0 | 672,769,295 | 10% | ||
jasonwaterfalls | 0 | 679,961,579 | 90% | ||
jagoe | 0 | 47,179,731,525 | 24% | ||
life-relearnt | 0 | 5,866,959,276 | 50% | ||
teutonium | 0 | 19,588,451,241 | 40% | ||
oadissin | 0 | 8,509,614,847 | 26.5% | ||
simplymike | 0 | 79,809,259,123 | 50% | ||
dhingvimal | 0 | 4,809,466,696 | 70% | ||
azircon | 0 | 2,435,029,583,478 | 20% | ||
veganomics | 0 | 4,049,768,806 | 50% | ||
amico | 0 | 245,590,367,523 | 24.91% | ||
rentmoney | 0 | 77,702,775,716 | 100% | ||
onepercentbetter | 0 | 11,929,768,548 | 5% | ||
lesmouths-travel | 0 | 4,010,812,693 | 50% | ||
dera123 | 0 | 984,495,772,689 | 100% | ||
jkramer | 0 | 610,632,049,625 | 100% | ||
flaxz | 0 | 49,895,205,400 | 25% | ||
yameen | 0 | 675,903,137 | 2% | ||
prydefoltz | 0 | 45,828,787,796 | 50% | ||
allover | 0 | 7,716,020,240 | 100% | ||
rollandthomas | 0 | 873,138,857 | 2% | ||
we-are | 0 | 2,956,889,467 | 17.41% | ||
superlao | 0 | 52,097,395,680 | 100% | ||
friendsofgondor | 0 | 590,729,659,955 | 100% | ||
slobberchops | 0 | 881,722,510,838 | 20% | ||
stevenwood | 0 | 18,932,992,634 | 100% | ||
enforcer48 | 0 | 102,921,595,977 | 15% | ||
crypticat | 0 | 190,238,315,071 | 100% | ||
flibbertigibbet | 0 | 184,088,817,758 | 100% | ||
akdx | 0 | 14,002,784,991 | 25% | ||
cryptoandcoffee | 0 | 75,356,743,001 | 10% | ||
merlion | 0 | 1,731,075,117 | 5% | ||
dses | 0 | 24,467,017,240 | 70% | ||
digital.mine | 0 | 70,238,272,113 | 0.3% | ||
moneybaby | 0 | 858,613,270 | 2.5% | ||
agathusia | 0 | 915,539,020 | 100% | ||
drsensor | 0 | 1,079,400,836 | 40% | ||
cmplxty | 0 | 73,547,231,786 | 35% | ||
mastersa | 0 | 1,634,105,986 | 27.5% | ||
abduljalill | 0 | 316,715,946 | 100% | ||
georgeknowsall | 0 | 34,107,046,863 | 100% | ||
dog-marley | 0 | 37,199,330,135 | 100% | ||
thehive | 0 | 30,502,259,855 | 50% | ||
steemmedia.org | 0 | 780,101,435 | 50% | ||
fullnodeupdate | 0 | 11,468,267,924 | 50% | ||
tipsybosphorus | 0 | 469,463,304,357 | 100% | ||
upvoteshares | 0 | 174,860,402,726 | 73% | ||
oakshieldholding | 0 | 270,460,633 | 100% | ||
palasatenea | 0 | 22,220,742,615 | 100% | ||
steemitcuration | 0 | 5,335,829,711 | 25% | ||
merlin7 | 0 | 302,102,770,707 | 100% | ||
thrasher666 | 0 | 1,672,738,280 | 60% | ||
priyanarc | 0 | 60,165,962,608 | 20% | ||
florino | 0 | 809,100,323 | 15% | ||
conectionbot | 0 | 575,796,297 | 16% | ||
johannpiber | 0 | 115,617,913,790 | 15% | ||
teenagecrypto | 0 | 16,616,556,778 | 100% | ||
dein-problem | 0 | -82,904,993 | -1% | ||
kekos | 0 | 93,230,099,766 | 100% | ||
travelfreako | 0 | 107,001,984 | 100% | ||
blind-spot | 0 | 18,259,546,647 | 25% | ||
idiosyncratic1 | 0 | 13,474,431,017 | 100% | ||
ctime | 0 | 641,986,018,713 | 5% | ||
fusion.lover | 0 | 18,895,121,605 | 100% | ||
zaphyr | 0 | 40,609,490,959 | 100% | ||
hungrybear | 0 | 303,160,807 | 5% | ||
hamsa.quality | 0 | 1,762,468,910 | 26.5% | ||
brandnewaccount | 0 | 1,392,896,799 | 100% | ||
shit-posts | 0 | 1,435,897,563 | 100% | ||
rihanna2 | 0 | 576,683,876 | 100% | ||
abbenay | 0 | 1,038,325,597 | 5% | ||
bewithbreath | 0 | 910,930,176 | 1.32% | ||
wolffeys | 0 | 8,610,227,105 | 100% | ||
kggymlife | 0 | 4,946,694,735 | 20% | ||
bynarikode | 0 | 1,972,385,383 | 91.04% | ||
catsndogs | 0 | 537,240,447 | 100% | ||
claudio83 | 0 | 35,227,783,516 | 100% | ||
bigmoneyman | 0 | 917,429,560 | 50% | ||
dtrade | 0 | 644,035,969 | 25% | ||
dailyke20 | 0 | 2,658,099,712 | 60% | ||
canercanbolat | 0 | 986,077,717 | 100% | ||
cezary-io | 0 | 144,949,770,406 | 25% | ||
omnivori | 0 | 3,096,246,765 | 90% | ||
plankton.token | 0 | 39,990,071,643 | 30% | ||
oxoskva | 0 | 1,092,059,724 | 100% | ||
nicollefiallo | 0 | 3,472,370,562 | 12% | ||
iamjohn | 0 | 3,172,369,911 | 50% | ||
maxwellmarcusart | 0 | 62,355,463,887 | 39% | ||
stubborn-soul | 0 | 1,976,846,223 | 50% | ||
astil.codex | 0 | 317,380,345 | 70% | ||
we-are-palcoin | 0 | 0 | 9.13% | ||
asmr.tist | 0 | 44,156,299,888 | 100% | ||
ssiena | 0 | 15,294,582,456 | 100% | ||
abh12345.pal | 0 | 944,498,246 | 100% | ||
treasure-chest | 0 | 0 | 30% | ||
penpals | 0 | 655,373,164 | 60% | ||
votebetting | 0 | 665,376,041,124 | 50% | ||
ilias.fragment | 0 | 355,320,660 | 70% | ||
babytarazkp | 0 | 5,860,576,597 | 85% | ||
gingerbyna | 0 | 341,098,537 | 45.52% | ||
arctis | 0 | 620,305,059 | 50% | ||
marlians.spt | 0 | 1,347,326,142 | 100% | ||
abh12345.neox | 0 | 953,775,204 | 100% | ||
soyunasantacruz | 0 | 24,340,247,274 | 100% | ||
sbi-tokens | 0 | 727,918,615 | 9.32% | ||
brutoken | 0 | 741,070,824 | 100% | ||
acta | 0 | 40,676,429,205 | 100% | ||
the-table | 0 | 18,865,406,409 | 100% | ||
jk6276.life | 0 | 35,409,958,456 | 50% | ||
joshmania | 0 | 5,296,613,646 | 6.9% | ||
tonimontana.neo | 0 | 91,815,635 | 4.11% | ||
silverquest | 0 | 133,712,957,662 | 100% | ||
qwertm | 0 | 782,913,859 | 13.25% | ||
autowin | 0 | 631,338,518 | 50% | ||
policewala | 0 | 24,267,931,249 | 15% | ||
galenkp.aus | 0 | 1,211,381,760 | 100% | ||
khalpal | 0 | 1,275,242,807 | 100% | ||
angel33 | 0 | 519,035,279 | 84% | ||
toni.pal | 0 | 453,917,448 | 41.29% | ||
bilpcoinbpc | 0 | 641,790,553 | 25% | ||
dalz4 | 0 | 1,282,433,266 | 100% | ||
drew0 | 0 | 2,666,627,974 | 20% | ||
chromebook | 0 | 348,663,219 | 80% | ||
craniuma | 0 | 5,256,212,959 | 100% | ||
ericandryan | 0 | 951,656,184 | 70% | ||
fengchao | 0 | 2,854,683,026 | 3% | ||
hiveyoda | 0 | 1,891,010,064 | 1% | ||
creativemary | 0 | 27,634,176,323 | 50% | ||
thisismylife | 0 | 5,796,656,249 | 100% | ||
softworld | 0 | 374,434,170,572 | 25% | ||
mynewlifeai | 0 | 534,969,099 | 100% | ||
hivelander | 0 | 117,035,812,682 | 50% | ||
curation.bot | 0 | 0 | 0.73% |
A huge hug 🤗 and a little bit of !BEER 🍻 from @amico! ___ Un caro abbraccio 🤗 e un po' di BEER 🍻 da @amico!
author | amico |
---|---|
permlink | re-engagement-away-from-home-20200605t131848z |
category | engagement |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-06-05 13:18:51 |
last_update | 2020-06-05 13:18:51 |
depth | 1 |
children | 0 |
last_payout | 2020-06-12 13:18:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 51,076,240,298,517 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,519 |
net_rshares | 0 |
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.
author | arcange |
---|---|
permlink | re-abh12345-qblsy1 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-08 10:54:09 |
last_update | 2020-06-08 10:54:09 |
depth | 1 |
children | 4 |
last_payout | 2020-06-15 10:54:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 532 |
author_reputation | 1,149,826,979,348,487 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,842,074 |
net_rshares | 222,497,503,576 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 222,580,408,569 | 10% | ||
dein-problem | 0 | -82,904,993 | -1% |
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))
author | abh12345 |
---|---|
permlink | re-arcange-qblt5x |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-08 10:58:45 |
last_update | 2020-06-08 10:59:48 |
depth | 2 |
children | 3 |
last_payout | 2020-06-15 10:58:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 311 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,842,122 |
net_rshares | 0 |
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"></a></div>
author | arcange |
---|---|
permlink | re-re-arcange-qblt5x |
category | engagement |
json_metadata | {"app":"engage"} |
created | 2020-06-09 14:40:33 |
last_update | 2020-06-09 14:40:33 |
depth | 3 |
children | 2 |
last_payout | 2020-06-16 14:40:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 190 |
author_reputation | 1,149,826,979,348,487 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,864,564 |
net_rshares | 217,558,014,342 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 217,640,919,335 | 10% | ||
dein-problem | 0 | -82,904,993 | -1% |
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.
author | bashadow |
---|---|
permlink | re-abh12345-qbgpdz |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 16:49:03 |
last_update | 2020-06-05 16:49:03 |
depth | 1 |
children | 1 |
last_payout | 2020-06-12 16:49:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 313 |
author_reputation | 100,388,692,638,882 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,789,551 |
net_rshares | 98,453,427,001 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustsweeper | 0 | 98,124,315,458 | 17.57% | ||
abh12345.pal | 0 | 187,005,196 | 25% | ||
abh12345.neox | 0 | 142,106,347 | 20% |
Thanks for the feedback, I think they will both be added :)
author | abh12345 |
---|---|
permlink | re-bashadow-qbgun5 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 18:42:42 |
last_update | 2020-06-05 18:42:42 |
depth | 2 |
children | 0 |
last_payout | 2020-06-12 18:42:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,791,501 |
net_rshares | 0 |
> 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.
author | bhoa |
---|---|
permlink | qbgl4n |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 15:17:18 |
last_update | 2020-06-05 15:17:18 |
depth | 1 |
children | 0 |
last_payout | 2020-06-12 15:17:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 532 |
author_reputation | 60,701,104,434,307 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,788,060 |
net_rshares | 97,612,684,739 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustsweeper | 0 | 97,288,068,588 | 16.82% | ||
abh12345.pal | 0 | 188,187,501 | 25% | ||
abh12345.neox | 0 | 136,428,650 | 20% |
~ 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
author | brittandjosie |
---|---|
permlink | re-abh12345-qbgl44 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 15:16:51 |
last_update | 2020-06-05 15:16:51 |
depth | 1 |
children | 3 |
last_payout | 2020-06-12 15:16:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,503 |
author_reputation | 525,661,217,955,513 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,788,050 |
net_rshares | 333,127,282 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 191,782,390 | 25% | ||
abh12345.neox | 0 | 141,344,892 | 20% |
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 :)
author | abh12345 |
---|---|
permlink | re-brittandjosie-qbgl7q |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 15:19:03 |
last_update | 2020-06-05 15:19:03 |
depth | 2 |
children | 2 |
last_payout | 2020-06-12 15:19:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,788,096 |
net_rshares | 0 |
I say revamp away , biking can be done tomorrow
author | brittandjosie |
---|---|
permlink | qbgl97 |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 15:19:54 |
last_update | 2020-06-05 15:19:54 |
depth | 3 |
children | 1 |
last_payout | 2020-06-12 15:19:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 525,661,217,955,513 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,788,117 |
net_rshares | 0 |
So with 319 comments on different author is actually good for me, can be better. Interesting case study.
author | codingdefined | ||||||
---|---|---|---|---|---|---|---|
permlink | re-abh12345-202065t1912374z | ||||||
category | engagement | ||||||
json_metadata | {"tags":["engagement","outreach","ocd","palnet","neoxian"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-06-05 13:31:27 | ||||||
last_update | 2020-06-05 13:31:27 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2020-06-12 13:31:27 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 104 | ||||||
author_reputation | 546,625,180,824,195 | ||||||
root_title | "Engagement away from home" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 97,786,727 | ||||||
net_rshares | 280,675,723 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 135,484,382 | 20% | ||
abh12345.neox | 0 | 145,191,341 | 20% |
That is a huge number of different people spoken to outside of your own posts!
author | abh12345 |
---|---|
permlink | re-codingdefined-qbggm8 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:39:45 |
last_update | 2020-06-05 13:39:45 |
depth | 2 |
children | 0 |
last_payout | 2020-06-12 13:39:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,836 |
net_rshares | 0 |
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
author | creativemary |
---|---|
permlink | qbgncw |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 16:05:24 |
last_update | 2020-06-05 16:05:24 |
depth | 1 |
children | 2 |
last_payout | 2020-06-12 16:05:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 546,556,273,326,144 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,788,809 |
net_rshares | 276,150,774 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 133,275,715 | 20% | ||
abh12345.neox | 0 | 142,875,059 | 20% |
Yes there are, and you are one of them - so many people you have spoken to of late :)
author | abh12345 |
---|---|
permlink | re-creativemary-qbgupf |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 18:44:06 |
last_update | 2020-06-05 18:44:06 |
depth | 2 |
children | 1 |
last_payout | 2020-06-12 18:44:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,791,527 |
net_rshares | 0 |
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
author | creativemary |
---|---|
permlink | qbhnbp |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-06 05:02:15 |
last_update | 2020-06-06 05:02:15 |
depth | 3 |
children | 0 |
last_payout | 2020-06-13 05:02:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 408 |
author_reputation | 546,556,273,326,144 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,799,060 |
net_rshares | 131,557,545 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 131,557,545 | 20% |
Those are some impressive numbers and the number of different people visited is truly remarkable.
author | cryptoandcoffee |
---|---|
permlink | qbgfw2 |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 13:24:03 |
last_update | 2020-06-05 13:24:03 |
depth | 1 |
children | 1 |
last_payout | 2020-06-12 13:24:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 3,765,065,297,355,280 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,608 |
net_rshares | 283,725,539 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 136,970,263 | 20% | ||
abh12345.neox | 0 | 146,755,276 | 20% |
Yeah I think some people (no names brittandjosie) have taken it upon themselves to welcome every new account to Hive :)
author | abh12345 |
---|---|
permlink | re-cryptoandcoffee-qbgfxi |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:24:54 |
last_update | 2020-06-05 13:24:54 |
depth | 2 |
children | 0 |
last_payout | 2020-06-12 13:24:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,624 |
net_rshares | 0 |
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.
author | galenkp |
---|---|
permlink | qbh90h |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 23:53:06 |
last_update | 2020-06-05 23:53:06 |
depth | 1 |
children | 2 |
last_payout | 2020-06-12 23:53:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,296 |
author_reputation | 3,723,499,743,338,065 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,796,349 |
net_rshares | 412,387,473 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 194,208,023 | 25% | ||
abh12345.neox | 0 | 218,179,450 | 29% |
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 :)
author | abh12345 |
---|---|
permlink | qbibbd |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-06 13:40:27 |
last_update | 2020-06-06 13:40:27 |
depth | 2 |
children | 1 |
last_payout | 2020-06-13 13:40:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 397 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,805,404 |
net_rshares | 0 |
It will be interesting to see if it changes the results any, the new metrics I mean.
author | galenkp |
---|---|
permlink | qbicjd |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-06 14:06:48 |
last_update | 2020-06-06 14:06:48 |
depth | 3 |
children | 0 |
last_payout | 2020-06-13 14:06:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 3,723,499,743,338,065 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,805,710 |
net_rshares | 0 |
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
author | kristyglas |
---|---|
permlink | re-abh12345-qbghwe |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 14:07:33 |
last_update | 2020-06-05 14:07:33 |
depth | 1 |
children | 1 |
last_payout | 2020-06-12 14:07:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 471 |
author_reputation | 128,388,033,443,655 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,165 |
net_rshares | 324,136,066 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 185,821,897 | 25% | ||
abh12345.neox | 0 | 138,314,169 | 20% |
My pleasure :) Thanks for the encouragement to look further into this data!
author | abh12345 |
---|---|
permlink | qbgjdc |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 14:39:12 |
last_update | 2020-06-05 14:39:12 |
depth | 2 |
children | 0 |
last_payout | 2020-06-12 14:39:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,555 |
net_rshares | 16,440,439,162 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kristyglas | 0 | 16,440,439,162 | 100% |
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
author | meesterboom |
---|---|
permlink | qbghuf |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 14:06:18 |
last_update | 2020-06-05 14:06:18 |
depth | 1 |
children | 2 |
last_payout | 2020-06-12 14:06:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 453 |
author_reputation | 1,803,855,402,078,242 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,149 |
net_rshares | 330,399,691 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 190,576,931 | 25% | ||
abh12345.neox | 0 | 139,822,760 | 20% |
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!
author | abh12345 |
---|---|
permlink | qbgj8k |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 14:36:21 |
last_update | 2020-06-05 14:36:21 |
depth | 2 |
children | 1 |
last_payout | 2020-06-12 14:36:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.037 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 341 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,510 |
net_rshares | 267,071,535,079 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
meesterboom | 0 | 267,071,535,079 | 15% |
Good old string query, almost sounds like a sitcom!! :OD I must try harder in the other commenting!
author | meesterboom |
---|---|
permlink | qbgjuh |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 14:49:30 |
last_update | 2020-06-05 14:49:30 |
depth | 3 |
children | 0 |
last_payout | 2020-06-12 14:49:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 1,803,855,402,078,242 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,702 |
net_rshares | 0 |
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!
author | melinda010100 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-abh12345-202068t173547278z | ||||||
category | engagement | ||||||
json_metadata | {"tags":["engagement","outreach","ocd","palnet","neoxian"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-06-08 22:35:48 | ||||||
last_update | 2020-06-08 22:35:48 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-06-15 22:35:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 475 | ||||||
author_reputation | 1,092,371,412,175,977 | ||||||
root_title | "Engagement away from home" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 97,853,161 | ||||||
net_rshares | 0 |
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.
author | oredebby |
---|---|
permlink | qbgfzy |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 13:25:48 |
last_update | 2020-06-05 13:25:48 |
depth | 1 |
children | 1 |
last_payout | 2020-06-12 13:25:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 175 |
author_reputation | 148,269,625,840,013 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,643 |
net_rshares | 282,197,568 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 136,226,525 | 20% | ||
abh12345.neox | 0 | 145,971,043 | 20% |
I'm not sure how helpful but it is something I was interested to see, cheers :)
author | abh12345 |
---|---|
permlink | re-oredebby-qbgg6v |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:30:30 |
last_update | 2020-06-05 13:30:30 |
depth | 2 |
children | 0 |
last_payout | 2020-06-12 13:30:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,713 |
net_rshares | 0 |
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.
author | palasatenea |
---|---|
permlink | re-abh12345-qbggy1 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:46:51 |
last_update | 2020-06-05 13:46:51 |
depth | 1 |
children | 4 |
last_payout | 2020-06-12 13:46:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 470 |
author_reputation | 6,973,925,098,488 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,911 |
net_rshares | 271,613,026 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 132,545,375 | 20% | ||
abh12345.neox | 0 | 139,067,651 | 20% |
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!
author | abh12345 |
---|---|
permlink | re-palasatenea-qbgh2p |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:49:39 |
last_update | 2020-06-05 13:49:39 |
depth | 2 |
children | 0 |
last_payout | 2020-06-12 13:49:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 200 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,942 |
net_rshares | 0 |
Well thats do nice and highly appreciated @palasatenea and indeed i will add veteran to my info
author | brittandjosie |
---|---|
permlink | re-palasatenea-qbgld9 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 15:22:21 |
last_update | 2020-06-05 15:22:21 |
depth | 2 |
children | 2 |
last_payout | 2020-06-12 15:22:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 525,661,217,955,513 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,788,175 |
net_rshares | 21,866,848,571 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
palasatenea | 0 | 21,866,848,571 | 100% |
Lol I should've written remarkable members, I understand that the veteran word isn't the preferred one for any woman 😄.
author | palasatenea |
---|---|
permlink | re-brittandjosie-qbgnde |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 16:05:39 |
last_update | 2020-06-05 16:05:39 |
depth | 3 |
children | 1 |
last_payout | 2020-06-12 16:05:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 6,973,925,098,488 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,788,814 |
net_rshares | 0 |
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
author | por500bolos |
---|---|
permlink | qbhjmq |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-06 03:42:45 |
last_update | 2020-06-06 03:42:45 |
depth | 1 |
children | 2 |
last_payout | 2020-06-13 03:42:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 248 |
author_reputation | 15,305,611,876,551 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,798,433 |
net_rshares | 268,635,584 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 131,817,956 | 20% | ||
abh12345.neox | 0 | 136,817,628 | 20% |
haha :) Yeah I reckon so, you could soar up the EL!
author | abh12345 |
---|---|
permlink | re-por500bolos-qblt1f |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-08 10:56:03 |
last_update | 2020-06-08 10:56:03 |
depth | 2 |
children | 1 |
last_payout | 2020-06-15 10:56:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,842,095 |
net_rshares | 22,349,966,991 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
por500bolos | 0 | 22,349,966,991 | 75% |
Thank you for the recognition!! };D
author | por500bolos |
---|---|
permlink | qblut5 |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-08 11:34:18 |
last_update | 2020-06-08 11:34:18 |
depth | 3 |
children | 0 |
last_payout | 2020-06-15 11:34:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 15,305,611,876,551 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,842,615 |
net_rshares | 0 |
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?
author | prydefoltz |
---|---|
permlink | re-abh12345-qbgfzw |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:26:21 |
last_update | 2020-06-05 13:26:21 |
depth | 1 |
children | 5 |
last_payout | 2020-06-12 13:26:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 522 |
author_reputation | 360,132,673,030,656 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,653 |
net_rshares | 329,963,254 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 189,380,953 | 25% | ||
abh12345.neox | 0 | 140,582,301 | 20% |
> ... 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 :)
author | abh12345 |
---|---|
permlink | re-prydefoltz-qbggbn |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:33:24 |
last_update | 2020-06-05 13:33:24 |
depth | 2 |
children | 3 |
last_payout | 2020-06-12 13:33:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 474 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,760 |
net_rshares | 0 |
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.
author | prydefoltz |
---|---|
permlink | re-abh12345-qbggrz |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:43:12 |
last_update | 2020-06-05 13:43:12 |
depth | 3 |
children | 2 |
last_payout | 2020-06-12 13:43:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 284 |
author_reputation | 360,132,673,030,656 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,867 |
net_rshares | 0 |
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.
author | codingdefined | ||||||
---|---|---|---|---|---|---|---|
permlink | re-prydefoltz-202065t19331678z | ||||||
category | engagement | ||||||
json_metadata | {"tags":["esteem"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-06-05 13:33:33 | ||||||
last_update | 2020-06-05 13:33:33 | ||||||
depth | 2 | ||||||
children | 0 | ||||||
last_payout | 2020-06-12 13:33:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 263 | ||||||
author_reputation | 546,625,180,824,195 | ||||||
root_title | "Engagement away from home" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 97,786,762 | ||||||
net_rshares | 0 |
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 :)
author | shanibeer |
---|---|
permlink | re-abh12345-qbgivj |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 14:28:33 |
last_update | 2020-06-05 14:28:33 |
depth | 1 |
children | 3 |
last_payout | 2020-06-12 14:28:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 926 |
author_reputation | 251,500,308,465,095 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,392 |
net_rshares | 330,554,137 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 192,990,436 | 25% | ||
abh12345.neox | 0 | 137,563,701 | 20% |
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.
author | abh12345 |
---|---|
permlink | qbgjlc |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 14:44:03 |
last_update | 2020-06-05 14:44:03 |
depth | 2 |
children | 2 |
last_payout | 2020-06-12 14:44:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 818 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,623 |
net_rshares | 0 |
Less important ones WITNESS VOTES , maybe people who havent votes 30 witnesses are not allowed to participate, witnesses are important
author | brittandjosie |
---|---|
permlink | re-abh12345-qbgl69 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 15:18:09 |
last_update | 2020-06-05 15:18:09 |
depth | 3 |
children | 1 |
last_payout | 2020-06-12 15:18:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 135 |
author_reputation | 525,661,217,955,513 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,788,070 |
net_rshares | 0 |
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.
author | shmoogleosukami |
---|---|
permlink | re-abh12345-qbgj67 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 14:34:57 |
last_update | 2020-06-05 14:34:57 |
depth | 1 |
children | 1 |
last_payout | 2020-06-12 14:34:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 255 |
author_reputation | 229,385,617,821,986 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,481 |
net_rshares | 277,653,047 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 134,008,988 | 20% | ||
abh12345.neox | 0 | 143,644,059 | 20% |
Cheers :) Yeah I think my messing around could well end up as part of a larger project, within an app, at some point.
author | abh12345 |
---|---|
permlink | qbgjaa |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 14:37:21 |
last_update | 2020-06-05 14:37:21 |
depth | 2 |
children | 0 |
last_payout | 2020-06-12 14:37:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,532 |
net_rshares | 25,714,127,908 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shmoogleosukami | 0 | 25,714,127,908 | 50% |
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.
author | tarazkp |
---|---|
permlink | qbgra6 |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 17:30:09 |
last_update | 2020-06-05 17:30:09 |
depth | 1 |
children | 3 |
last_payout | 2020-06-12 17:30:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 140 |
author_reputation | 5,986,254,750,259,059 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,790,215 |
net_rshares | 273,404,097 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.pal | 0 | 137,718,374 | 20% | ||
abh12345.neox | 0 | 135,685,723 | 20% |
You are quite busy here and in real life, but I think the numbers would be well above average.
author | abh12345 |
---|---|
permlink | re-tarazkp-qbgz02 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 20:16:51 |
last_update | 2020-06-05 20:16:51 |
depth | 2 |
children | 2 |
last_payout | 2020-06-12 20:16:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,793,046 |
net_rshares | 218,865,581,276 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tarazkp | 0 | 218,865,581,276 | 6% |
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.
author | tarazkp |
---|---|
permlink | qbgz60 |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 20:20:24 |
last_update | 2020-06-05 20:20:24 |
depth | 3 |
children | 1 |
last_payout | 2020-06-12 20:20:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 315 |
author_reputation | 5,986,254,750,259,059 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,793,111 |
net_rshares | 0 |
would love to join this esteemed group
author | thetimetravelerz |
---|---|
permlink | qbi6im |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-06 12:06:30 |
last_update | 2020-06-06 12:06:30 |
depth | 1 |
children | 1 |
last_payout | 2020-06-13 12:06:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 225,665,716,179,203 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,804,297 |
net_rshares | 0 |
Me too :D
author | abh12345 |
---|---|
permlink | re-thetimetravelerz-qblt1p |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-08 10:56:15 |
last_update | 2020-06-08 10:56:15 |
depth | 2 |
children | 0 |
last_payout | 2020-06-15 10:56:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,842,099 |
net_rshares | 0 |
Ok, so you lost me when talking about queries and code and .. lol.. It's great that you can pull out this info though :)
author | thisismylife |
---|---|
permlink | re-abh12345-qbgh0i |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 13:48:18 |
last_update | 2020-06-05 13:48:18 |
depth | 1 |
children | 2 |
last_payout | 2020-06-12 13:48:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 683,250,614,739,688 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,786,932 |
net_rshares | 98,367,716,534 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustbunny | 0 | 98,088,553,781 | 31.85% | ||
abh12345.pal | 0 | 134,745,207 | 20% | ||
abh12345.neox | 0 | 144,417,546 | 20% |
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
author | abh12345 |
---|---|
permlink | qbgjes |
category | engagement |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-05 14:40:06 |
last_update | 2020-06-05 14:40:06 |
depth | 2 |
children | 1 |
last_payout | 2020-06-12 14:40:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 1,408,615,966,842,648 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,568 |
net_rshares | 1,375,877,106 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thisismylife | 0 | 1,375,877,106 | 25% |
Well, keep up the good work, I'd say :) and have a wonderful weekend ;)
author | thisismylife |
---|---|
permlink | re-abh12345-qbgji1 |
category | engagement |
json_metadata | {"tags":["engagement"],"app":"peakd/2020.05.5"} |
created | 2020-06-05 14:42:03 |
last_update | 2020-06-05 14:42:03 |
depth | 3 |
children | 0 |
last_payout | 2020-06-12 14:42:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 683,250,614,739,688 |
root_title | "Engagement away from home" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,787,600 |
net_rshares | 0 |