<html> <p>Last month I published an article showing the downtrend in benefactor reward in 2018. If you missed that post you can check it out here.</p> <p>https://steemit.com/utopian-io/@paulag/exploratory-analysis-of-benefactor-rewards-shows-dramatic-impact-of-downturn-on-dapps-1540645248384</p> <p>Benefactor rewards changed over the year for a number of reasons. </p> <p>1. Less users</p> <p>2. Drop in the price of STEEM</p> <p>3. Some apps changed their rewards %</p> <p>Because of this the charts show in this analysis did not reflect the usage of these app and so I wanted to have a quick look at how the much the user base and the number of posts has changed over the year from the different apps. </p> <h2> Repository</h2> <p><a href="https://github.com/steemit/steem">https://github.com/steemit/steem</a> </p> <h2>Aim of Analysis</h2> <ul> <li>Explore and visualize the activity from apps posting root comments to the steem blochchain.</li> <li>Establish what % of root posts are made via Steemit.com and how this has changed over the year.</li> <li>See what apps are growing in terms of root posts.</li> </ul> <h2>Exploratory Analysis</h2> <p>https://cdn.steemitimages.com/DQme7BQkprmgbf55nhyPyQzYRJXhHspYgpy6yc6toE9C9SF/2.png </p> <p>In the chart above we can see in the blue the distinct number of apps posting to the blockchain each month. As December is only a part month, we can really discount this as it may not show a true reflection.</p> <p>Beneath this shows the distinct number of authors posting to the blockchain each month.</p> <p>The number of authors per app decrease considerably more than the number of apps posting. Using an animated scatter plot this is considerably easier to see.</p> <p>This first scatter plot show the number of posts made to each of the apps each month plotter against the number of authors. We can clearly see Steemit way out ahead. Esteem and Busy also shine threw. </p> <p>https://cdn.steemitimages.com/DQmeR6YYYBMbwAgpZ9ghmtKgr2iYxmbv677igRu9NQ1esRp/monthly%20include.gif</p> <p>If we remove Steemit, Esteem and Busy we can get a clearer image of the other popular apps. You can see Zappl doing well and then disappearing and also Dlive. Dmaina has dramtic reductions as does Utopian. Steempress seems to increase as many other decrease and you can also see the rise of parkito, actifit and some of the other new apps around October. </p> <p>https://cdn.steemitimages.com/DQmW25cZRM9oWigha1K2DkxjHgq37FRSxnSkYU4ZLbiRWA1/monthly%20exclude.gif</p> <p>Lets look now at these same metrics on a year to date view. Again it is very clear to see how far out ahead steemit.com is when it comes to author activity. Esteem and Busy are also very clear to see.</p> <p>Removing these 3 accounts we can get a better view of the other popular apps. We can clearly see @steempress racing along from May with the numbe of posts but not increasing in the number of users. Zappl stops moving in June and Dlive in September. Dtube, Steepshot and Dmania all doing well. </p> <p>https://cdn.steemitimages.com/DQmQyoM38RynfEWKf7hLonRA2ELweybwxqrUnsfvtyVQi7F/tyd%20ex.gif</p> <p>Removing Zappl, Dlive, Dtube, Steemshot and Dmania now in addation to Steemit, esteem and busy lets take another look. Unfortunate this would not upload as a gif so I had to take a still from month 12.</p> <p> https://cdn.steemitimages.com/DQmfXVXz2vHLEAXUzQX5NjwHoVZHYEku4VhURTa2BPEFid3/3.png </p> <p>As well as the apps that are preforming well, from this we can see a new cluster of apps that are on the rise. A table view can be seen of the top apps sorted by year to date posts displayed by month.</p> <p>https://cdn.steemitimages.com/DQmeMFqnrzkoKgVWYVsDCYbTB1CmumTaXQstfA3kFYYqMzd/4.png </p> <p>If we sort this no by % per month we can see that in Jan Steemit.com made up 68.8% of all root posts made and now its standing at 51.61%</p> <p> https://cdn.steemitimages.com/DQmQV2jCDYJiQ4HMDYqr9yYSEJZwXUu8kXWaSvePBdFW4Me/5.png </p> <h2>Conclusion</h2> <p>Steemit.com remians the most active app posting to the steem blockchain. We can also see a rise in the activity of the other apps. This is very encouraging and I hope to see the gap between Steemit.com and other apps close more in the next 12 months.</p> <p>Its fantastic to see apps llike steempress, dtube, partkito, actifit and dlike take a market share of the posts in the last few months. Its also interesting to see Dmania make a comeback.</p> <p>I would love to see the same analysis done with comments, however the query for the year is way to big for me to analyse in this way using the tools I have.</p> <h2>Data and query</h2> <p>As always I connected to Steemsql managed by @arcange and I used Power BI to preform the analysis. The M code used to gather this data was</p> <pre><code>let</code></pre> <pre><code> Source = Sql.Database("vip.steemsql.com", "DBSteem", [Query="select author, permlink, created, json_metadata#(lf)from Comments#(lf)where CONVERT(DATE,created) BETWEEN '2018-01-01' AND '2018-12-31'#(lf)and depth = 0"]),</code></pre> <pre><code> #"Changed Type" = Table.TransformColumnTypes(Source,{{"created", type date}}),</code></pre> <pre><code> #"Parsed JSON" = Table.TransformColumns(#"Changed Type",{{"json_metadata", Json.Document}}),</code></pre> <pre><code> #"Expanded json_metadata" = Table.ExpandRecordColumn(#"Parsed JSON", "json_metadata", {"app"}, {"json_metadata.app"}),</code></pre> <pre><code> #"Filtered Rows" = Table.SelectRows(#"Expanded json_metadata", each true),</code></pre> <pre><code> #"Inserted Text Before Delimiter" = Table.AddColumn(#"Filtered Rows", "Text Before Delimiter", each Text.BeforeDelimiter([json_metadata.app], "/"), type text),</code></pre> <pre><code> #"Filtered Rows1" = Table.SelectRows(#"Inserted Text Before Delimiter", each true),</code></pre> <pre><code> #"Removed Errors" = Table.RemoveRowsWithErrors(#"Filtered Rows1", {"Text Before Delimiter"}),</code></pre> <pre><code> #"Filtered Rows2" = Table.SelectRows(#"Removed Errors", each true)</code></pre> <pre><code>in</code></pre> <pre><code> #"Filtered Rows2"</code></pre> <p> </p> <h2>Shameless Promotion</h2> <p> Like what we are doing? Dont forget to vote for <a href="https://steemit.com/@steemcommunity">@steemcommunity</a> as your steem witness. You can vote for our witness using SteemConnect here: <a href="https://steemconnect.com/sign/account-witness-vote?witness=steemcommunity&approve=1">https://steemconnect.com/sign/account-witness-vote?witness=steemcommunity&approve=1</a> </p> <p>https://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmbQRxg3R9M2AFLHQjW388a6ng6ofoN3UVux5B8FGtiiWA/1.png </p> </html>
author | paulag | ||||||
---|---|---|---|---|---|---|---|
permlink | exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612 | ||||||
category | utopian-io | ||||||
json_metadata | {"app":"steeditor/0.1.2","format":"html","image":[],"tags":["utopian-io","analysis","steem","dapps","witness-category"],"users":["paulag","steempress","arcange","steemcommunity"],"links":["https://steemit.com/utopian-io/@paulag/exploratory-analysis-of-benefactor-rewards-shows-dramatic-impact-of-downturn-on-dapps-1540645248384","https://github.com/steemit/steem","https://cdn.steemitimages.com/DQme7BQkprmgbf55nhyPyQzYRJXhHspYgpy6yc6toE9C9SF/2.png ","https://cdn.steemitimages.com/DQmeR6YYYBMbwAgpZ9ghmtKgr2iYxmbv677igRu9NQ1esRp/monthly%20include.gif","https://cdn.steemitimages.com/DQmW25cZRM9oWigha1K2DkxjHgq37FRSxnSkYU4ZLbiRWA1/monthly%20exclude.gif","https://cdn.steemitimages.com/DQmQyoM38RynfEWKf7hLonRA2ELweybwxqrUnsfvtyVQi7F/tyd%20ex.gif","https://cdn.steemitimages.com/DQmfXVXz2vHLEAXUzQX5NjwHoVZHYEku4VhURTa2BPEFid3/3.png ","https://cdn.steemitimages.com/DQmeMFqnrzkoKgVWYVsDCYbTB1CmumTaXQstfA3kFYYqMzd/4.png ","https://cdn.steemitimages.com/DQmQV2jCDYJiQ4HMDYqr9yYSEJZwXUu8kXWaSvePBdFW4Me/5.png ","https://steemit.com/@steemcommunity","https://steemconnect.com/sign/account-witness-vote?witness=steemcommunity&","https://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmbQRxg3R9M2AFLHQjW388a6ng6ofoN3UVux5B8FGtiiWA/1.png "]} | ||||||
created | 2018-12-13 12:49:36 | ||||||
last_update | 2018-12-13 12:49:36 | ||||||
depth | 0 | ||||||
children | 37 | ||||||
last_payout | 2018-12-20 12:49:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 38.736 HBD | ||||||
curator_payout_value | 12.866 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 7,074 | ||||||
author_reputation | 274,264,287,951,003 | ||||||
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 100,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 76,783,255 | ||||||
net_rshares | 90,391,095,773,230 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 13,529,120,660 | 1.25% | ||
wackou | 0 | 80,168,526,116 | 1.29% | ||
lafona-miner | 0 | 732,738,734,677 | 20% | ||
tombstone | 0 | 89,052,758,394 | 0.4% | ||
nextgencrypto | 0 | 799,626,338 | 1.25% | ||
drifter1 | 0 | 298,888,836 | 2.16% | ||
teamsteem | 0 | 38,056,677,816 | 20% | ||
nanzo-scoop | 0 | 1,182,154,165,969 | 20% | ||
lola-carola | 0 | 186,997,723 | 2.16% | ||
mummyimperfect | 0 | 16,197,646,013 | 20% | ||
kevinwong | 0 | 79,036,232,619 | 1% | ||
ak2020 | 0 | 6,765,992,530 | 20% | ||
eric-boucher | 0 | 7,108,065,926 | 2.16% | ||
anwenbaumeister | 0 | 191,802,034 | 4.32% | ||
mammasitta | 0 | 229,938,120 | 0.05% | ||
emily-cook | 0 | 563,116,289 | 20% | ||
hitmeasap | 0 | 15,151,788,826 | 33% | ||
ausbitbank | 0 | 2,023,375,501,120 | 100% | ||
diana.catherine | 0 | 10,346,854,278 | 50% | ||
raymondspeaks | 0 | 240,520,470 | 2.16% | ||
jesse5th | 0 | 66,190,383 | 50% | ||
inertia | 0 | 793,044,045,085 | 100% | ||
arcange | 0 | 34,984,389,679 | 4% | ||
demotruk | 0 | 3,305,167,510,564 | 100% | ||
arconite | 0 | 253,534,940 | 0.5% | ||
raphaelle | 0 | 2,291,402,009 | 4% | ||
ace108 | 0 | 19,611,882,602 | 1% | ||
psygambler | 0 | 244,465,143 | 2.16% | ||
lemouth | 0 | 77,818,795,290 | 15% | ||
gammagooblin | 0 | 1,635,028,259 | 50% | ||
elamental | 0 | 358,393,775 | 1% | ||
protegeaa | 0 | 286,359,186,191 | 50% | ||
anarcho-andrei | 0 | 1,595,860,897 | 7.5% | ||
etcmike | 0 | 39,296,526,003 | 20% | ||
krnel | 0 | 335,195,146,744 | 25% | ||
charlie777pt | 0 | 303,847,067 | 0.3% | ||
amr008 | 0 | 7,080,150,761 | 100% | ||
lamouthe | 0 | 9,398,481,073 | 20% | ||
fraenk | 0 | 27,570,627,836 | 100% | ||
thecyclist | 0 | 3,477,669,815 | 1.25% | ||
lk666 | 0 | 516,963,642 | 2.16% | ||
abh12345 | 0 | 407,915,618,975 | 50% | ||
boxcarblue | 0 | 102,140,375,912 | 50% | ||
t-bot | 0 | 718,398,137,834 | 20% | ||
clayboyn | 0 | 3,440,921,678 | 5% | ||
whoib | 0 | 8,657,899,018 | 70% | ||
curie | 0 | 116,987,764,851 | 4.32% | ||
rymlen | 0 | 734,069,930 | 1% | ||
hendrikdegrote | 0 | 1,800,194,295,488 | 4.32% | ||
vact | 0 | 80,308,295,753 | 4.32% | ||
golbang | 0 | 10,780,203,735 | 1.29% | ||
steemstem | 0 | 819,389,054,571 | 20% | ||
dashfit | 0 | 364,321,932 | 2.16% | ||
fratheone | 0 | 1,192,003,683 | 100% | ||
j3dy | 0 | 21,087,715,317 | 100% | ||
gangstayid | 0 | 97,215,992 | 2.16% | ||
teamhumble | 0 | 138,773,503,870 | 100% | ||
mafeeva | 0 | 20,371,811,175 | 20% | ||
engagement | 0 | 0 | 1.25% | ||
romaldos | 0 | 374,891,134 | 100% | ||
v4vapid | 0 | 6,576,999,570,773 | 44% | ||
newhope | 0 | 1,742,277,556,195 | 21% | ||
iflagtrash | 0 | 0 | 1.25% | ||
dna-replication | 0 | 5,622,060,673 | 20% | ||
steemitboard | 0 | 14,366,140,482 | 1% | ||
omitaylor | 0 | 76,290,538 | 2% | ||
randomthoughts | 0 | 165,296,700 | 1.25% | ||
gmedley | 0 | 295,228,252 | 2.16% | ||
elviento | 0 | 528,342,437 | 0.91% | ||
pacokam8 | 0 | 98,435,633 | 1.72% | ||
michelios | 0 | 470,648,665 | 0.64% | ||
freebornsociety | 0 | 4,844,849,915 | 10% | ||
moksamol | 0 | 505,080,503 | 2.16% | ||
getrichordie | 0 | 136,173,420 | 2.16% | ||
thatsweeneyguy | 0 | 150,567,169 | 2.16% | ||
bloom | 0 | 81,949,371,917 | 20% | ||
eurogee | 0 | 179,904,844 | 2% | ||
steemchiller | 0 | 119,293,666,872 | 100% | ||
valued-customer | 0 | 12,654,391,790 | 25% | ||
artjom13 | 0 | 985,660,454 | 100% | ||
rt395 | 0 | 5,069,818,477 | 15% | ||
kennyroy | 0 | 14,743,786,966 | 100% | ||
kryzsec | 0 | 7,293,265,394 | 16% | ||
jakipatryk | 0 | 67,716,519,207 | 100% | ||
jga | 0 | 3,231,993,980 | 22.08% | ||
improv | 0 | 214,362,681 | 1.42% | ||
soundwavesphoton | 0 | 34,869,628,372 | 33.33% | ||
rycharde | 0 | 8,274,446,106 | 11% | ||
helo | 0 | 8,984,922,917 | 10% | ||
flauwy | 0 | 89,574,776,597 | 33% | ||
samminator | 0 | 5,620,099,802 | 10% | ||
locikll | 0 | 1,685,568,807 | 8.64% | ||
mahdiyari | 0 | 15,346,516,029 | 10% | ||
lorenzor | 0 | 4,352,425,543 | 50% | ||
anouk.nox | 0 | 6,700,958,719 | 25% | ||
crimsonclad | 0 | 22,209,811,922 | 6% | ||
aboutyourbiz | 0 | 816,978,836 | 4.32% | ||
pennsif | 0 | 13,420,559,984 | 15% | ||
gokulnk | 0 | 19,160,309,924 | 100% | ||
drakos | 0 | 2,514,432,880,420 | 100% | ||
paulag | 0 | 14,442,771,738 | 5% | ||
alexander.alexis | 0 | 8,404,329,019 | 20% | ||
howtostartablog | 0 | 78,173,331 | 0.43% | ||
evolved08gsr | 0 | 5,044,862,589 | 100% | ||
jonmagnusson | 0 | 361,172,550 | 1.08% | ||
jayna | 0 | 1,415,578,327 | 3.75% | ||
suesa | 0 | 117,802,814,046 | 25% | ||
cryptokrieg | 0 | 482,973,433 | 4.32% | ||
slickhustler007 | 0 | 167,978,892 | 2.16% | ||
corsica | 0 | 9,009,438,111 | 20% | ||
erickpinos | 0 | 6,362,555,991 | 100% | ||
makrotheblack | 0 | 82,176,144 | 2.16% | ||
thedelegator | 0 | 47,382,682 | 1.25% | ||
ludmila.kyriakou | 0 | 221,614,273 | 6% | ||
vallesleoruther | 0 | 71,021,480,339 | 100% | ||
discordiant | 0 | 1,542,730,669 | 6% | ||
fancybrothers | 0 | 113,485,737 | 6% | ||
gaman | 0 | 0 | 5% | ||
jacekw | 0 | 7,197,017,139 | 20% | ||
drorion | 0 | 25,447,162,413 | 100% | ||
codingdefined | 0 | 16,102,490,312 | 15% | ||
howo | 0 | 27,365,559,476 | 10% | ||
tsoldovieri | 0 | 1,333,772,535 | 10% | ||
nitego | 0 | 487,473,458 | 1.29% | ||
synrg | 0 | 166,875,409,475 | 100% | ||
amymya | 0 | 956,434,946 | 2.5% | ||
neumannsalva | 0 | 598,302,544 | 2.16% | ||
steemitbc | 0 | 9,366,834,971 | 100% | ||
wargof | 0 | 272,791,814 | 10% | ||
abigail-dantes | 0 | 326,931,995,227 | 20% | ||
inquiringtimes | 0 | 15,452,414,882 | 50% | ||
elsurtidor | 0 | 15,621,327,099 | 5% | ||
phogyan | 0 | 82,757,955 | 2.16% | ||
esteemguy | 0 | 157,605,449 | 20% | ||
zonguin | 0 | 637,011,104 | 5% | ||
g0nr0gue | 0 | 174,641,072 | 2.16% | ||
clumsysilverdad | 0 | 66,004,980,996 | 50% | ||
alexzicky | 0 | 3,868,785,442 | 5% | ||
mountain.phil28 | 0 | 3,594,214,862 | 25% | ||
jasonbu | 0 | 14,615,930,513 | 35% | ||
redrica | 0 | 2,237,527,051 | 5.5% | ||
acehpungo | 0 | 9,820,395,864 | 100% | ||
steemitph | 0 | 25,314,885,313 | 50% | ||
avesa | 0 | 61,341,976 | 0.33% | ||
iamphysical | 0 | 13,745,054,008 | 90% | ||
kingswisdom | 0 | 275,147,481 | 10% | ||
zest | 0 | 3,918,964,922 | 10% | ||
felixrodriguez | 0 | 817,068,240 | 10% | ||
leir | 0 | 1,988,924,988 | 50% | ||
indy8phish | 0 | 63,802,275 | 2.16% | ||
felander | 0 | 60,709,229,272 | 46% | ||
azulear | 0 | 3,369,537,121 | 100% | ||
psicoluigi | 0 | 346,802,200 | 50% | ||
make-a-whale | 0 | 56,556,499,536 | 7.1% | ||
honeysara | 0 | 142,166,917 | 1.08% | ||
mr-aaron | 0 | 247,615,510 | 10% | ||
niallon11 | 0 | 5,319,782,491 | 5% | ||
aneukpineung78 | 0 | 7,671,584,091 | 100% | ||
massivevibration | 0 | 3,129,520,016 | 5% | ||
nurhayati | 0 | 152,952,328 | 0.5% | ||
crokkon | 0 | 96,326,903,542 | 100% | ||
fbslo | 0 | 1,153,539,931 | 2% | ||
clweeks | 0 | 187,191,944 | 2.59% | ||
trevorpetrie | 0 | 2,901,076,756 | 25% | ||
eastmael | 0 | 23,633,333,570 | 100% | ||
davidke20 | 0 | 6,549,945,005 | 30% | ||
sorin.cristescu | 0 | 1,388,254,193,086 | 100% | ||
carrieallen | 0 | 1,559,741,405 | 5% | ||
hz432creations | 0 | 96,838,378 | 12.5% | ||
nicola71 | 0 | 1,096,039,348 | 3.5% | ||
robertoueti | 0 | 2,468,251,859 | 10% | ||
roleerob | 0 | 13,622,140,766 | 10% | ||
gnarlyanimations | 0 | 403,575,878 | 2.16% | ||
scorer | 0 | 284,642,886,384 | 100% | ||
revisesociology | 0 | 38,136,049,683 | 15% | ||
melavie | 0 | 583,484,796 | 5% | ||
espoem | 0 | 6,613,647,398 | 4% | ||
memorysports | 0 | 149,716,892 | 33% | ||
erikkun28 | 0 | 0 | 1% | ||
strefanetu | 0 | 172,255,066 | 10% | ||
mcfarhat | 0 | 18,232,462,557 | 21.37% | ||
gotgame | 0 | 63,725,753 | 2.16% | ||
jlsplatts | 0 | 229,763,411 | 0.86% | ||
sku77-poprocks | 0 | 387,659,727 | 4.32% | ||
mayowadavid | 0 | 852,517,560 | 10% | ||
poodai | 0 | 154,438,829 | 2.16% | ||
markmorbidity | 0 | 99,430,627 | 2.16% | ||
art-mess | 0 | 331,185,798 | 12.5% | ||
peaceandwar | 0 | 635,647,237 | 2.16% | ||
melvin.etniopal | 0 | 7,720,146,764 | 100% | ||
enzor | 0 | 259,345,038 | 10% | ||
loshcat | 0 | 3,086,984,406 | 100% | ||
the-gate-keeper | 0 | 200,850,762 | 100% | ||
namchau | 0 | 2,509,416,854 | 70% | ||
jesusj1 | 0 | 101,521,109 | 100% | ||
lekosvapenglass | 0 | 70,052,381 | 40% | ||
ngc | 0 | 177,205,336,469 | 1.25% | ||
carloserp-2000 | 0 | 39,078,955,031 | 100% | ||
socent | 0 | 574,586,361 | 15% | ||
gra | 0 | 7,553,777,926 | 20% | ||
utopian-io | 0 | 59,004,867,144,237 | 44.17% | ||
shammi | 0 | 34,870,850,115 | 35% | ||
eonwarped | 0 | 27,378,247,690 | 8% | ||
jaff8 | 0 | 91,178,727,044 | 53.43% | ||
tfcoates | 0 | 182,865,841 | 5% | ||
amriadits | 0 | 865,602,452 | 100% | ||
seanlloyd | 0 | 314,532,049 | 1% | ||
aalok | 0 | 108,043,905 | 26% | ||
familytree | 0 | 1,479,724,164 | 95% | ||
craigahamilton | 0 | 589,611,563 | 25% | ||
drmake | 0 | 2,307,308,119 | 2.16% | ||
smitop | 0 | 5,656,753,727 | 100% | ||
newsrx | 0 | 1,372,482,868 | 100% | ||
evecab | 0 | 331,357,563 | 1.25% | ||
guga34 | 0 | 494,514,245 | 15% | ||
pechichemena | 0 | 1,102,779,190 | 5% | ||
scipio | 0 | 79,631,597,303 | 33.33% | ||
amestyj | 0 | 2,348,307,936 | 50% | ||
kernelillo | 0 | 264,831,347 | 12.5% | ||
josephsavage | 0 | 2,621,452,924 | 10% | ||
helpie | 0 | 420,187,950,944 | 25% | ||
woolnami | 0 | 2,829,117,742 | 1.29% | ||
damdap | 0 | 374,188,821 | 100% | ||
xanderslee | 0 | 202,459,428 | 4.32% | ||
egotheist | 0 | 167,061,757 | 2% | ||
kenadis | 0 | 4,483,859,473 | 20% | ||
nathen007 | 0 | 3,800,623,133 | 100% | ||
maticpecovnik | 0 | 1,093,800,786 | 8% | ||
robotics101 | 0 | 1,935,021,806 | 20% | ||
tristan-muller | 0 | 80,053,038 | 20% | ||
markaustin | 0 | 300,639,636 | 5% | ||
alexs1320 | 0 | 80,656,993,067 | 100% | ||
steemerscare | 0 | 57,819,521 | 100% | ||
luisferchav | 0 | 918,029,742 | 12.5% | ||
thescubageek | 0 | 206,943,212 | 2.16% | ||
steembasicincome | 0 | 122,524,415,485 | 2% | ||
fejiro | 0 | 216,312,225 | 10% | ||
votetanding | 0 | 377,066,188 | 100% | ||
maski | 0 | 69,256,885 | 2.16% | ||
soulturtle | 0 | 620,695,242 | 5% | ||
venalbe | 0 | 99,304,572 | 2.16% | ||
ivymalifred | 0 | 1,403,410,434 | 50% | ||
sco | 0 | 16,876,519,069 | 18% | ||
luoq | 0 | 2,610,680,170 | 100% | ||
ennyta | 0 | 1,915,597,622 | 50% | ||
hkmoon | 0 | 267,437,215 | 2.16% | ||
rharphelle | 0 | 1,042,735,798 | 25% | ||
gordon92 | 0 | 127,754,322 | 2.16% | ||
stahlberg | 0 | 685,545,907 | 2.16% | ||
gabrielatravels | 0 | 176,868,973 | 1.08% | ||
catalincernat | 0 | 49,544,932 | 4.32% | ||
cordeta | 0 | 74,894,260 | 2.16% | ||
reizak | 0 | 320,662,268 | 1.72% | ||
vjap55 | 0 | 382,591,721 | 100% | ||
zlatkamrs | 0 | 220,063,262 | 4.1% | ||
monie | 0 | 418,665,251 | 100% | ||
mangoish | 0 | 90,229,430 | 10% | ||
creatrixity | 0 | 147,181,683 | 2.16% | ||
amosbastian | 0 | 133,254,019,435 | 53.43% | ||
mountainjewel | 0 | 1,412,195,280 | 2% | ||
shoganaii | 0 | 161,098,138 | 10% | ||
darkiche | 0 | 76,730,472 | 10% | ||
hetty-rowan | 0 | 112,860,724 | 2.16% | ||
edwardstobia | 0 | 96,262,767 | 2.5% | ||
payger | 0 | 125,543,381 | 2.16% | ||
carpedimus | 0 | 481,794,147 | 12.5% | ||
langford | 0 | 1,387,228,828 | 20% | ||
gamsam | 0 | 2,563,060,199 | 0.75% | ||
beautifuldata | 0 | 11,289,298 | 30% | ||
bestsmiles | 0 | 101,217,644 | 50% | ||
adesojisouljay | 0 | 97,609,402 | 5% | ||
asaj | 0 | 16,737,830,920 | 100% | ||
mathowl | 0 | 3,474,761,545 | 11% | ||
slacktmusic | 0 | 519,066,423 | 12.5% | ||
smjn | 0 | 109,375,270,495 | 25% | ||
nealmcspadden | 0 | 89,603,976,095 | 100% | ||
adamzi | 0 | 107,220,640 | 2.16% | ||
silkroadgo | 0 | 6,029,041,738 | 1.29% | ||
lacher-prise | 0 | 189,745,263 | 10% | ||
thabiggdogg | 0 | 482,059,021 | 2.16% | ||
yumisee | 0 | 153,967,147 | 15% | ||
olajidekehinde | 0 | 81,822,455 | 10% | ||
real2josh | 0 | 153,135,951 | 10% | ||
steepup | 0 | 277,506,178 | 8% | ||
damahsyari | 0 | 504,279,778 | 100% | ||
mrday | 0 | 33,943,186 | 100% | ||
gribouille | 0 | 202,723,615 | 10% | ||
saifulrakitic | 0 | 591,203,159 | 100% | ||
traviseric | 0 | 252,728,574 | 50% | ||
pearly | 0 | 238,753,881 | 50% | ||
newageinv | 0 | 68,581,081,444 | 21% | ||
tobias-g | 0 | 45,110,624,869 | 25% | ||
yrmaleza | 0 | 1,100,929,787 | 50% | ||
mininthecity | 0 | 144,580,742 | 3.45% | ||
edprivat | 0 | 146,516,013 | 0.51% | ||
grizzle | 0 | 208,247,184 | 1% | ||
twanz | 0 | 179,100,207 | 100% | ||
lunaticpandora | 0 | 541,476,834 | 1.2% | ||
mondodidave73 | 0 | 1,091,125,323 | 3% | ||
holger80 | 0 | 228,413,286,775 | 49% | ||
kingabesh | 0 | 605,239,641 | 10% | ||
silentscreamer | 0 | 3,674,041,662 | 12.5% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
didic | 0 | 1,940,909,448 | 2.16% | ||
niko3d | 0 | 145,899,746 | 2.16% | ||
warpedpoetic | 0 | 882,026,714 | 3.75% | ||
operahoser | 0 | 206,821,395 | 0.69% | ||
hazem91 | 0 | 848,060,042 | 5% | ||
therosepatch | 0 | 603,223,055 | 50% | ||
royaleagle | 0 | 1,390,356,487 | 100% | ||
emiliomoron | 0 | 1,816,390,696 | 50% | ||
dexterdev | 0 | 9,822,962,386 | 50% | ||
verhp11 | 0 | 143,148,456 | 1% | ||
oghie | 0 | 540,065,983 | 50% | ||
east.autovote | 0 | 959,342,138 | 100% | ||
ameliabartlett | 0 | 125,488,017 | 1% | ||
robertbira | 0 | 2,016,894,875 | 5% | ||
bearded-benjamin | 0 | 23,012,231,739 | 50% | ||
juandvg | 0 | 211,228,183 | 12.5% | ||
ajpacheco1610 | 0 | 214,406,206 | 10% | ||
travelling-two | 0 | 3,181,189,271 | 10% | ||
alexdory | 0 | 8,109,916,206 | 8% | ||
benleemusic | 0 | 833,780,836 | 0.43% | ||
charitybot | 0 | 3,092,412,565 | 100% | ||
lianaakobian | 0 | 2,334,247,788 | 20% | ||
ulisesfl17 | 0 | 2,163,133,047 | 100% | ||
beeyou | 0 | 30,268,080,664 | 100% | ||
arac | 0 | 1,184,469,035 | 100% | ||
francostem | 0 | 2,751,212,193 | 20% | ||
ivan-g | 0 | 463,920,302 | 2.16% | ||
croctopus | 0 | 1,403,772,445 | 100% | ||
chimtivers96 | 0 | 227,849,628 | 4.32% | ||
zipporah | 0 | 6,447,226,918 | 5% | ||
fego | 0 | 28,067,456,563 | 100% | ||
sissyjill | 0 | 74,333,578 | 7% | ||
buaan | 0 | 750,005,622 | 100% | ||
emmanuel293 | 0 | 101,691,885 | 25% | ||
siomarasalmeron | 0 | 1,383,856,902 | 12.5% | ||
morbyjohn | 0 | 130,415,012 | 7% | ||
reazuliqbal | 0 | 33,885,162,140 | 25% | ||
spawnband | 0 | 518,548,226 | 5% | ||
positiveninja | 0 | 571,040,521 | 2.16% | ||
simplymike | 0 | 37,773,491,694 | 20% | ||
foxyspirit | 0 | 1,120,222,476 | 5% | ||
good-karma2 | 0 | 557,395,413 | 100% | ||
wanasoloben | 0 | 252,494,112 | 2.16% | ||
hakancelik | 0 | 27,739,350,470 | 50% | ||
tomastonyperez | 0 | 6,248,488,925 | 50% | ||
elvigia | 0 | 5,253,721,084 | 50% | ||
cicisaja | 0 | 9,332,762,534 | 50% | ||
schlafhacking | 0 | 192,267,490,680 | 100% | ||
qberry | 0 | 2,015,981,723 | 2.16% | ||
lesmouths-travel | 0 | 925,344,977 | 15% | ||
musmui | 0 | 489,531,969 | 100% | ||
semperenglish | 0 | 1,102,435,748 | 100% | ||
zcool | 0 | 188,606,261 | 10% | ||
cjunros | 0 | 79,755,737 | 2.16% | ||
tfq86 | 0 | 17,923,517,357 | 44% | ||
ivansnz | 0 | 215,825,214 | 0.43% | ||
derangedvisions | 0 | 1,523,205,620 | 6.25% | ||
wolfhart | 0 | 25,031,537,881 | 26% | ||
effofex | 0 | 1,916,672,695 | 10% | ||
ladiesofsteemit | 0 | 342,200,906 | 10% | ||
luiscd8a | 0 | 2,166,592,481 | 80% | ||
bookoons | 0 | 62,905,895 | 2.16% | ||
lordbutterfly | 0 | 2,923,651,990 | 10% | ||
misan | 0 | 11,827,474,063 | 50% | ||
samlee2018 | 0 | 60,588,736 | 50% | ||
silverade | 0 | 557,155,261 | 100% | ||
eniolw | 0 | 1,978,450,421 | 50% | ||
de-stem | 0 | 13,732,097,360 | 19.8% | ||
geadriana | 0 | 977,796,981 | 50% | ||
peekbit | 0 | 12,276,668,331 | 100% | ||
elpdl | 0 | 492,945,172 | 100% | ||
derbesserwisser | 0 | 20,233,812,839 | 100% | ||
serylt | 0 | 6,380,253,754 | 19.6% | ||
bavi | 0 | 93,878,395 | 2.16% | ||
hiddenblade | 0 | 1,223,071,092 | 12.5% | ||
misia1979 | 0 | 363,028,281 | 2.16% | ||
angelinafx | 0 | 3,026,373,438 | 1.5% | ||
ari16 | 0 | 180,713,228 | 10% | ||
josedelacruz | 0 | 3,290,385,577 | 50% | ||
legendchew | 0 | 41,321,805,599 | 100% | ||
joseangelvs | 0 | 1,184,524,363 | 100% | ||
viannis | 0 | 1,751,418,260 | 50% | ||
charitymemes | 0 | 524,062,245 | 100% | ||
veckinon | 0 | 691,364,839 | 12.5% | ||
flores39 | 0 | 489,957,652 | 100% | ||
amarspm53 | 0 | 557,320,507 | 100% | ||
majapesi | 0 | 251,814,769 | 50% | ||
finanzamt | 0 | 73,524,886 | 5.9% | ||
recordpool | 0 | 289,395,280 | 10% | ||
michaelwrites | 0 | 229,567,867 | 10% | ||
bafi | 0 | 92,473,979,910 | 100% | ||
woolnyeo | 0 | 299,458,720 | 1.29% | ||
javicuesta | 0 | 603,848,381 | 25% | ||
deholt | 0 | 881,657,423 | 20% | ||
maurice1975 | 0 | 760,776,922 | 100% | ||
smacommunity | 0 | 153,588,717 | 2.16% | ||
serialfiller | 0 | 50,706,569,044 | 100% | ||
musicvoter | 0 | 3,563,709,099 | 1% | ||
zaxan | 0 | 281,704,271 | 5% | ||
jcharles | 0 | 519,168,287 | 100% | ||
kbr | 0 | 568,911,665 | 6.25% | ||
temitayo-pelumi | 0 | 1,508,898,362 | 20% | ||
free-reign | 0 | 425,161,971 | 12.5% | ||
misterro | 0 | 138,005,889 | 25% | ||
anggreklestari | 0 | 15,486,004,576 | 100% | ||
yusvelasquez | 0 | 439,597,105 | 50% | ||
shookriya | 0 | 258,037,690 | 5.55% | ||
alexworld | 0 | 285,680,237 | 25% | ||
altobot | 0 | 1,877,216,903 | 75% | ||
gracelbm | 0 | 123,324,606 | 2.16% | ||
frejafri | 0 | 233,362,203 | 2.5% | ||
metama | 0 | 956,410,195 | 2.16% | ||
marcovugts | 0 | 2,700,204,449 | 100% | ||
acont | 0 | 252,112,056 | 50% | ||
dobrica | 0 | 81,138,340 | 2.16% | ||
niouton | 0 | 169,616,831 | 0.86% | ||
mrshev | 0 | 9,060,457,700 | 40% | ||
hazard10 | 0 | 554,718,810 | 100% | ||
anaestrada12 | 0 | 8,872,063,452 | 100% | ||
timons | 0 | 555,838,916 | 100% | ||
steem.lion | 0 | 553,834,817 | 100% | ||
steemzeiger | 0 | 1,079,524,165 | 19.8% | ||
steem.peng | 0 | 556,949,157 | 100% | ||
juliocaraballo | 0 | 68,719,214 | 50% | ||
faiyazmahmud | 0 | 287,528,608 | 35% | ||
fitat40 | 0 | 23,953,425,672 | 20% | ||
ziapase | 0 | 7,082,667,019 | 100% | ||
marysemciver | 0 | 261,888,380 | 10% | ||
apshamilton | 0 | 99,031,662,572 | 74% | ||
kafupraise | 0 | 96,927,267 | 34% | ||
biomimi | 0 | 191,509,014 | 40% | ||
ibk-gabriel | 0 | 121,868,651 | 10% | ||
drsensor | 0 | 2,157,554,993 | 12% | ||
flordiaman | 0 | 136,738,345 | 12.5% | ||
hhtb | 0 | 951,198,652 | 10% | ||
reyvaj | 0 | 3,260,966,967 | 10% | ||
jesusfl17 | 0 | 489,694,070 | 100% | ||
ilovecryptopl | 0 | 473,465,346 | 3.45% | ||
purelyscience | 0 | 117,631,595 | 10% | ||
yomismosoy | 0 | 184,702,913 | 50% | ||
bflanagin | 0 | 289,680,425 | 2.16% | ||
ubaldonet | 0 | 1,943,993,353 | 80% | ||
tradermeetscoder | 0 | 3,620,631,233 | 33% | ||
steem-bar | 0 | 554,195,243 | 100% | ||
lillywilton | 0 | 602,308,409 | 20% | ||
yestermorrow | 0 | 1,325,750,257 | 5% | ||
call-me-howie | 0 | 1,320,102,896 | 2.16% | ||
preventsuicide | 0 | 118,436,794 | 3.75% | ||
mary11 | 0 | 284,772,617 | 75% | ||
acousticguitar | 0 | 1,236,420,407 | 50% | ||
hamismsf | 0 | 66,650,883,966 | 25% | ||
hansmast | 0 | 307,717,670 | 2.16% | ||
gamer86 | 0 | 547,278,886 | 100% | ||
power.steem | 0 | 554,195,243 | 100% | ||
king.steem | 0 | 556,497,902 | 100% | ||
wstanley226 | 0 | 1,306,450,560 | 50% | ||
reinaseq | 0 | 2,297,217,062 | 70% | ||
suasteguimichel | 0 | 70,285,510 | 50% | ||
lebey1 | 0 | 271,787,714 | 25% | ||
osariemen | 0 | 1,174,378,952 | 90% | ||
steem.sport | 0 | 555,800,896 | 100% | ||
hawaj | 0 | 164,259,305 | 4.32% | ||
hafismultim | 0 | 556,773,793 | 100% | ||
clement.poiret | 0 | 212,847,982 | 4.32% | ||
markgritter | 0 | 17,718,318,749 | 100% | ||
lupafilotaxia | 0 | 7,210,971,244 | 100% | ||
fran.frey | 0 | 1,833,125,793 | 50% | ||
emsteemians | 0 | 101,732,612 | 10% | ||
perpetuum-lynx | 0 | 476,476,802 | 19.6% | ||
bar-bar1903 | 0 | 555,800,896 | 100% | ||
alaiza | 0 | 459,432,079 | 100% | ||
jrevilla | 0 | 174,334,200 | 50% | ||
theexcelclub | 0 | 2,365,685,892 | 100% | ||
herbayomi | 0 | 91,051,858 | 10% | ||
ab123 | 0 | 176,928,914 | 37.5% | ||
annaabi | 0 | 288,773,576 | 2.16% | ||
abraham10 | 0 | 67,202,932 | 82% | ||
torrey.blog | 0 | 18,742,769,404 | 50% | ||
alfonzoasdrubal | 0 | 552,617,622 | 100% | ||
synthtology | 0 | 49,655,566 | 2.16% | ||
squinty | 0 | 374,056,806 | 100% | ||
chrisrice | 0 | 3,960,280,473 | 100% | ||
icsan | 0 | 556,730,712 | 100% | ||
skorup87 | 0 | 22,572,727 | 12% | ||
swapsteem | 0 | 472,687,522 | 10% | ||
trang | 0 | 353,669,867 | 2.16% | ||
stem-espanol | 0 | 37,828,821,852 | 100% | ||
praditya | 0 | 1,208,508,798 | 24% | ||
jacekw.dev | 0 | 2,706,954,730 | 40% | ||
lapp | 0 | 459,446,215 | 100% | ||
steemtpistia | 0 | 462,350,429 | 100% | ||
crassipes | 0 | 459,038,519 | 100% | ||
yashshah991 | 0 | 68,286,953 | 50% | ||
aleestra | 0 | 750,095,492 | 100% | ||
rhethypo | 0 | 113,219,392 | 2.16% | ||
predict-crypto | 0 | 94,651,608 | 0.08% | ||
steem.racing | 0 | 1,128,464,225 | 23% | ||
javier.dejuan | 0 | 4,358,990,395 | 20% | ||
agrovision | 0 | 459,442,574 | 100% | ||
desikaamukkahani | 0 | 91,373,724 | 4.32% | ||
steem-ua | 0 | 233,630,454,014 | 1.87% | ||
xeliram | 0 | 251,993,822 | 50% | ||
giulyfarci52 | 0 | 326,783,026 | 50% | ||
tebarsuara | 0 | 538,688,892 | 100% | ||
eu-id | 0 | 2,479,892,608 | 10% | ||
smk-trail | 0 | 554,143,546 | 100% | ||
kejsermanden | 0 | 50,405,558 | 100% | ||
arteem | 0 | 31,364,455,426 | 75% | ||
kaczynski | 0 | 48,491,196 | 100% | ||
raoufwilly | 0 | 447,621,149 | 7.5% | ||
cryptowrld | 0 | 0 | 26% | ||
daddywilliam | 0 | 76,955,911 | 2.16% | ||
alvin0617 | 0 | 83,061,400 | 2.16% | ||
cherryandberry | 0 | 0 | 5% | ||
jumisharma | 0 | 168,347,408 | 11% | ||
teamcr | 0 | 794,739,432 | 100% | ||
stem.witness | 0 | 5,230,151,379 | 20% | ||
sarhugo | 0 | 132,177,898 | 2.16% | ||
ozgurcinarli | 0 | 124,520,469 | 12.5% | ||
xuhi | 0 | 64,606,754 | 50% | ||
anthive | 0 | 69,426,464 | 50% | ||
andiblok | 0 | 66,693,802 | 25% | ||
optimizer | 0 | 2,187,837,551 | 1.93% | ||
regularowl | 0 | 605,299,917 | 15% | ||
bott | 0 | 372,556,253 | 100% | ||
double-negative | 0 | 229,350,784 | 20% | ||
aeiou00 | 0 | 131,887,295 | 30% | ||
wilmer14molina | 0 | 150,675,353 | 10% | ||
bitok.xyz | 0 | 8,804,349,239 | 1% | ||
kingnosa | 0 | 59,462,309 | 50% | ||
neolinkhati | 0 | 4,739,559 | 10% | ||
bluesniper | 0 | 23,230,366,810 | 1.5% | ||
oh-high-mark | 0 | 198,345,176 | 12.5% | ||
butt-memes | 0 | 691,570,248 | 12.5% | ||
princessamber | 0 | 4,082,688,959 | 100% | ||
bigriffsbongrips | 0 | 124,290,606 | 12.5% | ||
zaxan-blog | 0 | 100,578,595 | 25% | ||
ctime | 0 | 14,470,640,356 | 0.55% | ||
amin-ove | 0 | 97,809,630 | 50% | ||
ghostdylan | 0 | 15,817,544,829 | 100% | ||
theduskinus | 0 | 1,485,174,514 | 12.5% | ||
nanzo-snaps | 0 | 42,361,203,203 | 10% | ||
we-are-steemians | 0 | 8,023,897,321 | 40% | ||
hairgistix | 0 | 1,022,614,677 | 2.16% | ||
huilco | 0 | 419,149,196 | 100% | ||
aerial-italy | 0 | 420,683,647 | 100% | ||
cerd26 | 0 | 92,854,362 | 100% | ||
we-are-vietnam | 0 | 6,409,933,694 | 80% | ||
we-are-welcoming | 0 | 8,203,808,213 | 50% | ||
steemmyphoto | 0 | 746,918,865 | 100% | ||
combatsports | 0 | 1,186,547,497 | 4.32% | ||
xrp.trail | 0 | 1,371,045,465 | 2.51% |
It's really nice to hear something ecouraging
author | alexs1320 |
---|---|
permlink | re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t152510087z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 15:25:15 |
last_update | 2018-12-13 15:25:15 |
depth | 1 |
children | 1 |
last_payout | 2018-12-20 15:25: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 | 45 |
author_reputation | 150,945,165,388,638 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,788,981 |
net_rshares | 0 |
it sure is
author | paulag |
---|---|
permlink | re-alexs1320-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t153813334z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 15:38:12 |
last_update | 2018-12-13 15:38:12 |
depth | 2 |
children | 0 |
last_payout | 2018-12-20 15:38: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 | 10 |
author_reputation | 274,264,287,951,003 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,789,557 |
net_rshares | 0 |
Are we approaching The Flippening!?
author | birdinc |
---|---|
permlink | re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t210416702z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 21:04:18 |
last_update | 2018-12-13 21:04:18 |
depth | 1 |
children | 1 |
last_payout | 2018-12-20 21:04: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 | 7,641,301,280,384 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,801,446 |
net_rshares | 0 |
na not yet, but if we were to do a steemit off week, or if steemit started charging a 20% benefactor charge, then we could move very fast
author | paulag |
---|---|
permlink | re-birdinc-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t211156712z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 21:11:57 |
last_update | 2018-12-13 21:11:57 |
depth | 2 |
children | 0 |
last_payout | 2018-12-20 21:11: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 | 137 |
author_reputation | 274,264,287,951,003 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,801,723 |
net_rshares | 0 |
WOW WOW WOW Fantastic post, great charts! Having well over a hundred DApps is impressive, even though the contraction in use is a bit of a bummer. Great overview and cool moving graphics. Thanks for being a source of clarity in the confusion of the STEEM blockchain. RESTEEMED (-:
author | clumsysilverdad | ||||||
---|---|---|---|---|---|---|---|
permlink | re-paulag-20181213t74725436z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","analysis","steem","dapps","witness-category"],"app":"esteem/2.0.2-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2018-12-13 13:47:27 | ||||||
last_update | 2018-12-13 13:47:27 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-12-20 13:47: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 | 288 | ||||||
author_reputation | 28,166,630,869,767 | ||||||
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 76,785,266 | ||||||
net_rshares | 7,564,876,011 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
melvin.etniopal | 0 | 7,564,876,011 | 100% |
Glad you like it @clumsysilverdad. I think as time passes we will see dapps usage rate grow and steemit.coms delcine further, this rocks
author | paulag |
---|---|
permlink | re-clumsysilverdad-re-paulag-20181213t74725436z-20181213t153427203z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["clumsysilverdad"],"app":"steemit/0.1"} |
created | 2018-12-13 15:34:27 |
last_update | 2018-12-13 15:34:27 |
depth | 2 |
children | 0 |
last_payout | 2018-12-20 15:34: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 | 137 |
author_reputation | 274,264,287,951,003 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,789,404 |
net_rshares | 6,339,867,759 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clumsysilverdad | 0 | 6,339,867,759 | 5% |
.
author | crokkon |
---|---|
permlink | re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181215t130249177z |
category | utopian-io |
json_metadata | "{"app": ""}" |
created | 2018-12-15 13:02:48 |
last_update | 2022-09-18 10:05:09 |
depth | 1 |
children | 2 |
last_payout | 2018-12-22 13:02:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.637 HBD |
curator_payout_value | 3.118 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 81,214,366,861,104 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,875,080 |
net_rshares | 21,432,310,339,578 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
paulag | 0 | 58,474,316,346 | 20% | ||
codingdefined | 0 | 15,838,741,764 | 15% | ||
utopian-io | 0 | 21,182,538,567,541 | 14.66% | ||
emrebeyler | 0 | 74,856,503 | 0.01% | ||
amosbastian | 0 | 40,699,849,640 | 16.21% | ||
organicgardener | 0 | 7,761,934,678 | 25% | ||
reazuliqbal | 0 | 7,148,952,301 | 5% | ||
statsexpert | 0 | 8,395,417,943 | 100% | ||
mightypanda | 0 | 106,694,481,067 | 60% | ||
fastandcurious | 0 | 2,534,679,673 | 60% | ||
linknotfound | 0 | 1,356,120,158 | 100% | ||
monster-inc | 0 | 667,806,179 | 100% | ||
yff | 0 | 124,615,785 | 100% |
thanks for the review @crokkon, im looking forward to running this in a few months. i think we will see a different picture then
author | paulag |
---|---|
permlink | re-crokkon-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181215t145455877z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["crokkon"],"app":"steemit/0.1"} |
created | 2018-12-15 14:54:57 |
last_update | 2018-12-15 14:54:57 |
depth | 2 |
children | 0 |
last_payout | 2018-12-22 14:54:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 274,264,287,951,003 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,879,163 |
net_rshares | 45,821,943,990 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
crokkon | 0 | 45,821,943,990 | 50% |
Thank you for your review, @crokkon! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181215t130249177z-20181217t181521z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-17 18:15:21 |
last_update | 2018-12-17 18:15:21 |
depth | 2 |
children | 0 |
last_payout | 2018-12-24 18:15: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 | 59 |
author_reputation | 152,955,367,999,756 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,977,836 |
net_rshares | 0 |
Why is musing and stemq not included?
author | dexterdev |
---|---|
permlink | re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t161313694z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 16:15:51 |
last_update | 2018-12-13 16:15:51 |
depth | 1 |
children | 4 |
last_payout | 2018-12-20 16:15: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 | 37 |
author_reputation | 17,771,704,061,240 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,790,999 |
net_rshares | 0 |
All apps from which root posts are made by are included. Many dont make it out of that cluster to have an impact, and the tables show the top 28 so i dont bombard with massive tables of a few hundred apps for people to pour over. Do musing and stemq have authors use root posts or comments? Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | paulag |
---|---|
permlink | paulag-re-dexterdev-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t162042584z |
category | utopian-io |
json_metadata | {"app":"partiko"} |
created | 2018-12-13 16:20:45 |
last_update | 2018-12-13 16:20:45 |
depth | 2 |
children | 3 |
last_payout | 2018-12-20 16:20: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 | 360 |
author_reputation | 274,264,287,951,003 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,791,180 |
net_rshares | 9,922,468,190 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dexterdev | 0 | 9,922,468,190 | 50% |
what does root post and comments mean? Are you on discord? Can I chat you there?
author | dexterdev |
---|---|
permlink | re-paulag-paulag-re-dexterdev-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t161944330z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 16:22:24 |
last_update | 2018-12-13 16:22:24 |
depth | 3 |
children | 2 |
last_payout | 2018-12-20 16:22: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 | 80 |
author_reputation | 17,771,704,061,240 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,791,245 |
net_rshares | 0 |
The trend has great implications for the ecosystem and should encourage DApps to continue developing as Steemit will continue to fall behind. Once others become the launchpad for new users into Steem, I would assume that retention could improve given the great communities being built around each. I have tried to limit my use of Steemit lately and have bot felt the need to go back at all which is great! Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
author | newageinv |
---|---|
permlink | newageinv-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t150857854z |
category | utopian-io |
json_metadata | {"app":"partiko"} |
created | 2018-12-13 15:09:00 |
last_update | 2018-12-13 15:09:00 |
depth | 1 |
children | 1 |
last_payout | 2018-12-20 15:09:00 |
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 | 469 |
author_reputation | 260,845,010,643,878 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,788,348 |
net_rshares | 0 |
I agree, more focused apps should increase retention, this is a great thing.
author | paulag |
---|---|
permlink | re-newageinv-newageinv-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t153720807z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 15:37:21 |
last_update | 2018-12-13 15:37:21 |
depth | 2 |
children | 0 |
last_payout | 2018-12-20 15: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 | 76 |
author_reputation | 274,264,287,951,003 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,789,528 |
net_rshares | 0 |
This post has been included in today's [**SOS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsallyouneedtoknowaboutthestateofsteem13december2018-5z6ceren6u) - a digest of all you need to know about the State of Steem. *** * *Promoter of [**The SOS Forums : Weekly Discussion Forums on the State of Steem**](https://steemit.com/steem/@pennsif/the-state-of-steem-forum-1-supported-by-dsound-thursday-13-december-8pm-11pm-utc-msp-waves).* * *Co-ordinator of [**SteemClub-UK**](https://steemit.com/@steemclub-uk).* * *Editor of the [**weekly listing of steem radio shows, podcasts & social broadcasts**](https://steemit.com/mspwaves/@pennsif/schedule-of-steem-radio-shows-podcasts-and-social-broadcasts-supported-by-dsound-week-beginning-10-december-2018).* * *Founder of the [**A Dollar A Day**](https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-over-usd600-donated-in-november-2018-monthly-summary-of-donations-received-and-given) charitable giving project.* https://pennsif.com/wp-content/uploads/2018/08/adollaraday-linear-400x98.jpg ***
author | pennsif |
---|---|
permlink | re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181214t065222062z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"image":["https://pennsif.com/wp-content/uploads/2018/08/adollaraday-linear-400x98.jpg"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsallyouneedtoknowaboutthestateofsteem13december2018-5z6ceren6u","https://steemit.com/steem/@pennsif/the-state-of-steem-forum-1-supported-by-dsound-thursday-13-december-8pm-11pm-utc-msp-waves","https://steemit.com/@steemclub-uk","https://steemit.com/mspwaves/@pennsif/schedule-of-steem-radio-shows-podcasts-and-social-broadcasts-supported-by-dsound-week-beginning-10-december-2018","https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-over-usd600-donated-in-november-2018-monthly-summary-of-donations-received-and-given"],"app":"steemit/0.1"} |
created | 2018-12-14 06:52:21 |
last_update | 2018-12-14 06:52:21 |
depth | 1 |
children | 0 |
last_payout | 2018-12-21 06:52: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 | 1,094 |
author_reputation | 636,410,097,572,565 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,818,800 |
net_rshares | 0 |
As we can see, the quantity of people using Steemit is decreasing by the time. It's an amazing thing since we can break out the hegemony of that app. Thanks for sharing! Cheers!
author | robertoueti |
---|---|
permlink | re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t151658538z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak"} |
created | 2018-12-13 15:17:00 |
last_update | 2018-12-13 15:17:00 |
depth | 1 |
children | 13 |
last_payout | 2018-12-20 15:17:00 |
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 | 177 |
author_reputation | 54,030,753,776,533 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,788,670 |
net_rshares | 0 |
it will be fantastic when apps have more activity than steemit
author | paulag |
---|---|
permlink | re-robertoueti-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t153753115z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 15:37:54 |
last_update | 2018-12-13 15:37:54 |
depth | 2 |
children | 3 |
last_payout | 2018-12-20 15:37: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 | 62 |
author_reputation | 274,264,287,951,003 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,789,546 |
net_rshares | 2,459,996,522 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robertoueti | 0 | 2,459,996,522 | 10% |
After the last @ned talk, I think it won't need so much time to that occurs. Maybe in February we can see that. Busy is a tough competitor for Steemit, maybe will be busy getting the majority of the activity soon. Thanks for sharing!
author | robertoueti |
---|---|
permlink | re-paulag-re-robertoueti-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t154426825z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak"} |
created | 2018-12-13 15:44:27 |
last_update | 2018-12-13 15:44:27 |
depth | 3 |
children | 2 |
last_payout | 2018-12-20 15:44: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 | 233 |
author_reputation | 54,030,753,776,533 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,789,809 |
net_rshares | 0 |
It will only be "fantastic" if the **overall total number of people using steem** (the blockchain and all the apps) **was increasing!** Which unfortunately is quite the contrary to facts When the proportion of people using Steemit is decreasing on the backdrop of a **sharp overall decline in users** it is mostly indicative of the fact that the less engaged users peel away and only the "hard core" users remain. These latter users are by definition more likely to know about the other apps and know the strengths and weaknesses of each and make a more nuanced use of them. Whereas "low intensity" users just default to steemit.com (but have currently all but deserted the platform)
author | sorin.cristescu |
---|---|
permlink | re-robertoueti-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t173122873z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 17:31:24 |
last_update | 2018-12-13 17:31:24 |
depth | 2 |
children | 8 |
last_payout | 2018-12-20 17:31:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 686 |
author_reputation | 255,754,000,681,122 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,793,703 |
net_rshares | 56,875,927,290 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sorin.cristescu | 0 | 54,409,310,174 | 4% | ||
robertoueti | 0 | 2,466,617,116 | 10% |
I agree with you @sorin.cristescu about the overall quantity of people using steem. However, we need to see the crypto world as a whole. The quantity going out of cryptos is huge, the speculators are going out (besides people who invested and don't have the calm necessary to continue investing), but now, as we can see, people who continue to be here are that one who really think the platform have future. So, we have a drop of total number of people, yes... But the overall quality has increase.
author | robertoueti |
---|---|
permlink | re-sorincristescu-re-robertoueti-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t173701276z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak"} |
created | 2018-12-13 17:37:00 |
last_update | 2018-12-13 17:37:00 |
depth | 3 |
children | 7 |
last_payout | 2018-12-20 17:37:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 498 |
author_reputation | 54,030,753,776,533 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,793,952 |
net_rshares | 82,407,376,999 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sorin.cristescu | 0 | 82,407,376,999 | 6% |
Would be interesting to look at activity other than root posts. I know there is one app that puts all of its content into comments, and some of the other apps may show relatively high usage in terms of non-posting engagement. Obviously this raises the question of comment spam, automated voting, etc. though some of this may be identifiable as associated with specific app tags.
author | smooth |
---|---|
permlink | re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t155554700z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 15:55:57 |
last_update | 2018-12-13 15:55:57 |
depth | 1 |
children | 1 |
last_payout | 2018-12-20 15:55: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 | 379 |
author_reputation | 253,602,537,834,068 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,790,246 |
net_rshares | 0 |
yes, steemmonsters for example is not included in this report as its not a 'posting app'. There are too many millions of rows of comments to be pulled for a full year on the comments side, so maybe this would have to be a snapshop of 1 month if I were to look at this data, but I would expect to see 'parkito' rank very high with comments, I wonder how wrong I could be :-) Then for voting...hmmm, im not sure of the top of my head about this one...
author | paulag |
---|---|
permlink | re-smooth-re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181213t160255817z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-13 16:02:57 |
last_update | 2018-12-13 16:02:57 |
depth | 2 |
children | 0 |
last_payout | 2018-12-20 16:02: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 | 455 |
author_reputation | 274,264,287,951,003 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,790,552 |
net_rshares | 0 |
#### Hi @paulag! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your **UA** account score is currently 7.000 which ranks you at **#89** across all Steem accounts. Your rank has improved 1 places in the last three days (old rank 90). In our last Algorithmic Curation Round, consisting of 368 contributions, your post is ranked at **#2**. Congratulations! ##### Evaluation of your UA score: * Your follower network is great! * The readers appreciate your great work! * Great user engagement! You rock! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181214t061534z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2018-12-14 06:15:36 |
last_update | 2018-12-14 06:15:36 |
depth | 1 |
children | 0 |
last_payout | 2018-12-21 06:15:36 |
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 | 642 |
author_reputation | 23,214,230,978,060 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,817,534 |
net_rshares | 0 |
Congratulations @paulag! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@paulag/votes.png?201812131701</td><td>You made more than 23000 upvotes. Your next target is to reach 24000 upvotes.</td></tr> </table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@paulag)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-paulag-20181213t173917000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-12-13 17:39:15 |
last_update | 2018-12-13 17:39:15 |
depth | 1 |
children | 0 |
last_payout | 2018-12-20 17:39: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 | 801 |
author_reputation | 38,975,615,169,260 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,794,047 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <br /> <center> <img width='125' src='https://i.postimg.cc/9FwhnG3w/steemstem_curie.png'> </center> <br/> </div> <br /> <br /> This post has been voted on by the **SteemSTEM** curation team and voting trail in collaboration with **@curie**. <br /> If you appreciate the work we are doing then consider [voting](https://www.steemit.com/~witnesses) both projects for witness by selecting [**stem.witness**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness) and [**curie**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie)! <br /> For additional information please join us on the [**SteemSTEM discord**]( https://discord.gg/BPARaqn) and to get to know the rest of the community! </div>
author | steemstem |
---|---|
permlink | re-paulag-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181214t001659984z |
category | utopian-io |
json_metadata | {"app":"bloguable-bot"} |
created | 2018-12-14 00:17:03 |
last_update | 2018-12-14 00:17:03 |
depth | 1 |
children | 0 |
last_payout | 2018-12-21 00:17: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 | 800 |
author_reputation | 262,017,435,115,313 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,807,075 |
net_rshares | 0 |
Hey, @paulag! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-exploratory-analysis-shows-dapps-activity-is-gaining-market-share-on-steemit-com-1544705375612-20181215t133730z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-15 13:37:30 |
last_update | 2018-12-15 13:37:30 |
depth | 1 |
children | 0 |
last_payout | 2018-12-22 13:37: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 | 588 |
author_reputation | 152,955,367,999,756 |
root_title | "Exploratory Analysis shows DApps activity is gaining market share on Steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,876,319 |
net_rshares | 0 |