<html> <p><img src="https://steemitimages.com/DQmZEnwyfgHaUfAQBKVo5AHfmjYsmE87exVrszfLqp59uiQ/app-stream.png" width="1189" height="644"/></p> <p><br></p> <p>Hello Steem, today I will be outdooring a new Steem utility I have been working on: <strong>App Stream</strong>.</p> <p>During the development of Peer Query beta as a full fledged platform featuring content created only on it, we run into a challenge.</p> <p>While we could index posts and comments made on our site, we could not index comments/replies made from other clients on posts created through Peer Query.</p> <p>This problem applies not only to Peer Query, but also to all other Steem clients.</p> <h2>The challenge</h2> <p><a href="https://steem.io"><strong>Steem</strong></a> is great for content publishing, <em>yet its open source data nature means that the same content can be served and interacted with from over several different interface</em>.</p> <p>This feature is good for open source and censorship resistance, however it poses a challenge for app/client owners who want to index all activities on posts made from their clients.</p> <p>This is because while a post may be created on a one client, it would be edited, commented on, voted and resteemed from other clients.</p> <p>Consider this challenge:</p> <ul> <li><em>Ama</em> creates a query/post through <strong>PeerQuery.com</strong></li> <li><em>John</em> comments on it through <strong>raw Steem JS</strong></li> <li><em>Jin</em> replies to <em>John's</em> comment <strong>using Busy.org</strong></li> <li>then the author <em>Ama</em>, edits the same post using <strong>Steemit.com</strong></li> <li><em>Mary</em> replies to <em>Jin's reply</em> using <strong>eSteem app</strong></li> <li>countless more activities(<em>resteem, votes, ...</em>) happen on the same post from <strong>different clients</strong></li> </ul> <p>No matter how much indexing Peer Query does for activity on its site, we would definitely miss those made from other clients.</p> <p>The only way to solve the problem is to stream all operation on the Steem blockchain and check if they match something in your DB or not.</p> <h2>App Stream</h2> <p>App Stream is designed for this challenging task, and is designed to be as modular and efficient as possible. App Stream is a standalone Node.js program that curates all posts as well as its comments, replies and even edits from whatever target you set in a MYSQL DB.</p> <p>There are 3 types of target:</p> <ol> <li><code>app</code></li> <li><code>category</code></li> <li><code>author</code></li> </ol> <p>There are six Db engines:</p> <ul> <li><code>post-by-app</code></li> <li><code>post-by-author</code></li> <li><code>post-by-category</code></li> <li><code>post-comment-by-app</code></li> <li><code>post-comment-by-author</code></li> <li><code>post-comment-by-category</code></li> <li><code>post-comment-reply-by-app</code></li> <li><code>post-comment-reply-by-author</code></li> <li><code>post-comment-reply-by-category</code></li> </ul> <p><strong>Countless other features and configuration instances, see Docs for more.</strong></p> <h2>How to install</h2> <ol> <li>Create empty DB, make sure MYSQL version is 5.7+ for <code>json</code> support</li> <li>Create <code>.env</code> file in root folder and enter DB details. See sample in <code>docs/sample.env</code></li> <li>Git clone <code>ssh:git@github.com:peerquery/app-stream.git</code> or <code>https://github.com/peerquery/app-stream.git</code></li> <li>Install dependencies: <code>npm install</code></li> <li>For custom setup, edit: <code>/config/config.js</code></li> <li>Run system through setup manager: <code>node setup</code></li> <li>Use MYSQL Workbeanch/PHPMyAdmin to explore data in DB or visit <code>api.localhost/api</code></li> </ol> <p><strong>Note:</strong></p> <p><strong>You do not need to create any tables for the DB. App Stream runs on:</strong></p> <ul> <li>2 tables with all kinds of fields: json, text, timestamp, varchar, auto-increment, ...</li> <li>1 view of the each of the two tables above</li> <li>3 complex conditional <em>db indexing</em> stored procedures each with 11 IN variables and 1 OUT variable</li> <li>10 <em>db api</em> stored procedures with IN and OUT variables</li> </ul> <p>Manual setup would be inefficient and difficult, and yet it has to be setup successfully before the main server is initialized.</p> <p>The <code>db_setup</code> module handles all this automatically for you, so you do not have to touch the DB at all. After all is done successfully it will automatically call the server.</p> <h2>Who can use App Stream?</h2> <h3>Steem clients</h3> <p>Curating by app was App Stream's primary purpose, Steem clients would benefit the most from App Stream as they can use it to curate all posts made from their clients.</p> <p>With the <code>app_match</code> option, you could curate data from only a specific version of an app, eg: <code>esteem/1.6.0</code>, <code>esteem/1.5.1</code>, or <code>esteem/whatever</code>.</p> <p>With a separate App Stream server, clients could server all content directly from their DB instead of relying on fetching content directly from RPC node endpoints.</p> <p>App/client owners now can index all posts, comments, replies as well as edits made to posts made from their client, no matter which thirdparty client the activity originated from.</p> <h3>Steem Curators</h3> <p>Curators would also greatly benefit from App Stream by using any of the category indexing engines:</p> <ul> <li><code>post-by-category</code></li> <li><code>post-comment-by-category</code></li> <li><code>post-comment-reply-by-category</code></li> </ul> <p>We're working on Curator, a revolutionary open source interface for curating content which perfectly integrates into App Stream. Stay tuned.</p> <h3>Steem blogs</h3> <p>I don't know if this is a thing yet, but with the post-comment-reply-by-author engine you can setup this system to curate all posts by an author, as well as the comments and replies by it.</p> <p>While this is not recommended because Steem API allow this function through <code>steem.api.getDiscussionsByAuthorBeforeDate()</code>, with App Stream's <code>source_app</code> you can get specialized curation such as curating the author's post only if they are from a specific client such as Steemit.com, Busy.org, ...</p> <h3>Steem BI</h3> <p>With App Stream, you can curate all posts, comments and replies from any Steem author, category or app.</p> <p>Such data would allow you to gain specialized data for specialized analysis.</p> <h2>Documentation</h2> <p>App Stream comes with a painfully long and detailed documentation. You do not need to read it all to get App Stream running, its only there to explain everything about App Stream with examples incase you need to tweak it or get lost getting something to work.</p> <p>See the documentation on the<a href="https://github.com/peerquery/app-stream"> Github repo</a> or via this link: <a href="https://github.com/peerquery/app-stream/blob/master/README.md">https://github.com/peerquery/app-stream/blob/master/README.md</a>.</p> <p>Hopefully the detailed <em>Table of Contents</em> would make it easier to navigate.</p> <h2>Cool addons</h2> <ul> <li>Depth determiner for each post, comment and reply - will accurately add depth to a reply whose dept is 37!</li> <li>API documentation on API endpoint bases</li> <li>Subdomain support</li> </ul> <p>See Docs for more info with examples.</p> <h2>Cool hacks</h2> <ul> <li>Jailbreak to stream all Steem posts, comments and relies regardless of the source</li> <li>Host App Stream as a service and serve content via API</li> <li>Integrate with Hivemind for richer data interface</li> <li>Add a notifications feature</li> </ul> <h2>What's next</h2> <p>Curating only for the purposes of indexing in not enough. For clients such as Peer Query, we will need a full curation functionality.</p> <p>I am already half way done with Curator, a powerful open source content curation interface for Steem. Curator will integrate with App Steam and allow a team(of multiple admins, moderator and curators) to curate content from Steem.</p> <p>Curator comes with a full bot support which means all you have to do is supply the bot's account and posting key - it will periodically upvote all contents approved by the curators.</p> <p>Like App Stream, Curator was initially being designed for Peer Query, however I realized that most of the content curators on Steem do so without a standalone app interface.</p> <p>Then came the need to design Curator as a standalone app so other content curators(by tag, app or author) can also use it.</p> <p>When Curator is done hopefully before this moth ends, Peer Query beta would be live; a complete move away from current query tag curation into a full platform with users, reputation, projects, curators and bots and more.</p> <h2>Acknowledgment</h2> <p>Thanks to <a href="https://steemit.com/@smooth">@smooth</a> and <a href="https://steemit.com/@howo">@howo</a> for their recommendations on how to structure the db indexing functionality. Templates for the two streamer apps are by @almost-digital and @howo.</p> <p>Thanks to you for reading, I hope you find <strong>App Stream</strong> of use.</p> <h2>Links</h2> <p>Github repo: <a href="https://github.com/peerquery/app-stream">https://github.com/peerquery/app-stream</a></p> <p>Docs: <a href="https://github.com/peerquery/app-stream/blob/master/README.md">https://github.com/peerquery/app-stream/blob/master/README.md</a></p> <h2>Author</h2> <p>https://github.com/Dzivenu</p> <p><br></p> </html>
author | dzivenu |
---|---|
permlink | introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category |
category | utopian-io |
json_metadata | {"tags":["utopian-io","documentation","app-stream","peerquery"],"users":["almost-digital","howo"],"image":["https://steemitimages.com/DQmZEnwyfgHaUfAQBKVo5AHfmjYsmE87exVrszfLqp59uiQ/app-stream.png"],"links":["https://steem.io","https://github.com/peerquery/app-stream","https://github.com/peerquery/app-stream/blob/master/README.md","https://steemit.com/@smooth","https://steemit.com/@howo","https://github.com/Dzivenu"],"app":"steemit/0.1","format":"html"} |
created | 2018-05-23 16:57:39 |
last_update | 2018-05-23 20:09:33 |
depth | 0 |
children | 20 |
last_payout | 2018-05-30 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 172.344 HBD |
curator_payout_value | 45.865 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,681 |
author_reputation | 35,080,388,713,175 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,299,741 |
net_rshares | 57,023,046,690,424 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 27,745,822,683,713 | 50% | ||
simba | 0 | 64,077,413,305 | 100% | ||
murh | 0 | 3,413,024,520 | 100% | ||
gniewomir-sotel | 0 | 2,684,544,295 | 100% | ||
karbonxx | 0 | 24,611,646,939 | 100% | ||
ausbitbank | 0 | 5,283,373,085,194 | 100% | ||
igster | 0 | 2,130,336,890 | 1% | ||
dimon14 | 0 | 13,587,891,455 | 89% | ||
rainbowdash | 0 | 1,533,392,268 | 100% | ||
timcliff | 0 | 604,666,370,823 | 84% | ||
dgarsan | 0 | 10,929,970,071 | 100% | ||
aaronsuncamacho | 0 | 3,136,344,885 | 100% | ||
stephenkendal | 0 | 742,565,961,556 | 100% | ||
makafuigdzivenu | 0 | 0 | 100% | ||
dylanhobalart | 0 | 1,406,079,036 | 14% | ||
blockrush | 0 | 367,435,984 | 100% | ||
da-dawn | 0 | 921,039,653 | 100% | ||
gclipse | 0 | 455,320,846 | 100% | ||
fredrikaa | 0 | 439,518,188,862 | 100% | ||
lulita | 0 | 13,356,379,617 | 100% | ||
mahdiyari | 0 | 21,880,526,665 | 20% | ||
pluse | 0 | 6,167,126,894 | 100% | ||
daiky69 | 0 | 6,640,991,123 | 7% | ||
planet-power | 0 | 428,316,965 | 100% | ||
astroboy | 0 | 2,217,563,183 | 100% | ||
tipu | 0 | 371,668,245,821 | 4.3% | ||
sbdraffle | 0 | 342,410,317 | 56% | ||
ran-a-banana | 0 | 8,848,230,906 | 50% | ||
utopian-io | 0 | 21,380,847,726,190 | 14.25% | ||
silar | 0 | 613,181,906 | 100% | ||
dzivenu | 0 | 8,313,158,255 | 100% | ||
arkhan | 0 | 590,164,048 | 100% | ||
steemitstats | 0 | 3,266,766,806 | 5% | ||
d-cloud | 0 | 172,570,206 | 100% | ||
conradsuperb | 0 | 13,995,067,481 | 45% | ||
steemgreen | 0 | 1,046,270,991 | 100% | ||
amosbastian | 0 | 5,299,638,721 | 14.25% | ||
r351574nc3 | 0 | 617,745,306 | 1% | ||
grzesiekb | 0 | 183,906,756,010 | 100% | ||
boggan | 0 | 244,167,463 | 46% | ||
lathata | 0 | 182,129,941 | 100% | ||
fth | 0 | 2,089,575,249 | 100% | ||
csharma | 0 | 13,665,834,270 | 100% | ||
ethanlee | 0 | 10,589,088,894 | 100% | ||
lost-tiger-films | 0 | 119,370,683 | 100% | ||
salty-mcgriddles | 0 | 770,397,516 | 0.9% | ||
oomcie85 | 0 | 497,846,826 | 100% | ||
abradjan | 0 | 2,628,628,701 | 100% | ||
datima112 | 0 | 363,101,125 | 100% | ||
exifr | 0 | 242,570,592 | 5% | ||
miki22628 | 0 | 611,853,006 | 100% | ||
lobbyx | 0 | 611,838,016 | 100% | ||
cellomusic91 | 0 | 555,362,405 | 100% | ||
jmartinz | 0 | 611,527,595 | 100% | ||
kaczmareke | 0 | 611,527,595 | 100% | ||
rubydetails | 0 | 611,279,113 | 100% | ||
widgeontasks | 0 | 611,258,372 | 100% | ||
gallopescabeche | 0 | 611,255,372 | 100% | ||
lippycruz | 0 | 472,976,795 | 100% | ||
kumillla | 0 | 412,086,336 | 100% | ||
intrusionpunish | 0 | 611,246,349 | 100% | ||
periodslack | 0 | 611,243,358 | 100% | ||
lenalidchyk63 | 0 | 611,225,766 | 100% | ||
lisicka | 0 | 611,222,847 | 100% | ||
lapin124 | 0 | 611,222,847 | 100% | ||
exifr0 | 0 | 134,232,608 | 5% | ||
arcanu | 0 | 149,607,409 | 100% | ||
semirovaalinka | 0 | 610,581,563 | 100% | ||
ystinovakatya | 0 | 610,572,864 | 100% | ||
stinkydescribe | 0 | 610,555,584 | 100% | ||
logosuperb | 0 | 610,555,584 | 100% | ||
clotsthou | 0 | 610,555,584 | 100% | ||
redirectunkind | 0 | 610,552,612 | 100% | ||
cityscapeleaf | 0 | 610,552,612 | 100% | ||
altitudetennis | 0 | 610,549,688 | 100% | ||
cryptocrates | 0 | 138,354,462 | 100% | ||
filletsslither | 0 | 610,546,871 | 100% | ||
wailibis | 0 | 610,541,030 | 100% | ||
digiibit.coin | 0 | 167,812,123 | 100% | ||
bboyash | 0 | 160,645,722 | 100% | ||
chomtana | 0 | 601,069,370 | 100% |
I agree with you apps are d best, but you know apps though can easily get deleted
author | apeximomen |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t220556478z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-23 22:06:06 |
last_update | 2018-05-23 22:06:06 |
depth | 1 |
children | 2 |
last_payout | 2018-05-30 22:06: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 | 81 |
author_reputation | 516,993,927,259 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,342,314 |
net_rshares | 0 |
who can delete the apps?
author | topnetworkeral |
---|---|
permlink | re-apeximomen-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180525t235121313z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-25 23:51:21 |
last_update | 2018-05-25 23:51:21 |
depth | 2 |
children | 1 |
last_payout | 2018-06-01 23:51: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 | 24 |
author_reputation | 345,020,556,245 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,720,085 |
net_rshares | 0 |
As in maybe a virus attack or something like a force factory set. Though I still agree with you, irrespective of any short coming APPS is still the best choice so far
author | apeximomen |
---|---|
permlink | re-topnetworkeral-re-apeximomen-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180527t182842238z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-27 18:28:48 |
last_update | 2018-05-27 18:28:48 |
depth | 3 |
children | 0 |
last_payout | 2018-06-03 18:28: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 | 166 |
author_reputation | 516,993,927,259 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,986,282 |
net_rshares | 0 |
Maybe this tool will help many people especially app owner save a lot of time.
author | chomtana |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t013802985z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-24 01:37:48 |
last_update | 2018-05-24 01:37:48 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 01:37:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 4,088,596,052 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,367,871 |
net_rshares | 8,313,158,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dzivenu | 0 | 8,313,158,255 | 100% |
Congratulation dzivenu! Your post has appeared on the hot page after 57min with 43 votes. Thanks to @souldelas.
author | cnaranha |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t175454413z |
category | utopian-io |
json_metadata | {"tags":["hotbot"],"app":"steemjs/hot"} |
created | 2018-05-23 17:54:54 |
last_update | 2018-05-23 17:54:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 17:54: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 | 112 |
author_reputation | 31,258,779,536 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,308,366 |
net_rshares | 0 |
Thats a good idea! Ill have to check it out looks cool
author | cyberblock |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t181039452z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-23 18:11:00 |
last_update | 2018-05-23 18:11:00 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 18:11:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.504 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 26,134,242,075,354 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,310,792 |
net_rshares | 138,552,551,138 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cyberblock | 0 | 120,840,649,464 | 100% | ||
yonny | 0 | 9,523,440,793 | 100% | ||
dzivenu | 0 | 8,188,460,881 | 100% |
app steem is a great idea.... in app system there will be no posibility to hacking.....
author | kumillla |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t202212109z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-23 20:22:18 |
last_update | 2018-05-23 20:22:18 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 20:22: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 | 88 |
author_reputation | 46,693,772,683 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,329,006 |
net_rshares | 0 |
I really loved the amount of work you have put into the contribution. I also liked the presentation of the post. I would love to recommend you to use JSDoc or some auto documentator to make a simple webpage which makes this documentation more presentable and attractive as devs prefer to read `README` but some prefer to see a simple webpage as a documentation. I have staff picked this contribution because I believe its really high quality. Thanks for providing such contributions. Keep contributing. Your contribution has been evaluated according to [Utopian rules and guidelines](https://utopian.io/rules), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post,[Click here](https://review.utopian.io/result/4/2111111) ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | ms10398 |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t191712413z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://utopian.io/rules","https://review.utopian.io/result/4/2111111","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-05-24 19:17:12 |
last_update | 2018-05-24 19:17:12 |
depth | 1 |
children | 1 |
last_payout | 2018-05-31 19:17:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 982 |
author_reputation | 27,572,487,973,390 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,509,156 |
net_rshares | 8,313,158,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dzivenu | 0 | 8,313,158,255 | 100% |
thank you
author | dzivenu |
---|---|
permlink | re-ms10398-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t214342641z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-24 21:43:51 |
last_update | 2018-05-24 21:43:51 |
depth | 2 |
children | 0 |
last_payout | 2018-05-31 21:43: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 | 9 |
author_reputation | 35,080,388,713,175 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,527,344 |
net_rshares | 0 |
Are you planning to unleash a web version? A local machine installation is too much of a bother for me and most other people, I reckon. Besides, not everyone can do it even provided the instructions, lol,
author | nameless-berk |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t033246524z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-24 03:32:51 |
last_update | 2018-05-24 03:32:51 |
depth | 1 |
children | 2 |
last_payout | 2018-05-31 03:32:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.474 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 204 |
author_reputation | 7,902,785,300,195 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,382,150 |
net_rshares | 126,704,134,465 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nameless-berk | 0 | 126,704,134,465 | 100% |
Thanks for asking - App Stream is a Node.js app that anyone can install anywhere: locally or on some cloud servers.
author | dzivenu |
---|---|
permlink | re-nameless-berk-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t100555938z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-24 10:06:03 |
last_update | 2018-05-24 10:06:03 |
depth | 2 |
children | 1 |
last_payout | 2018-05-31 10:06:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.097 HBD |
curator_payout_value | 0.030 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 115 |
author_reputation | 35,080,388,713,175 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,430,343 |
net_rshares | 34,293,387,352 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nameless-berk | 0 | 34,293,387,352 | 25% |
Let me put it this way, are you gonna host it somewhere? Like, make the official site for that?
author | nameless-berk |
---|---|
permlink | re-dzivenu-re-nameless-berk-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t135327546z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-24 13:53:27 |
last_update | 2018-05-24 13:53:27 |
depth | 3 |
children | 0 |
last_payout | 2018-05-31 13:53: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 | 95 |
author_reputation | 7,902,785,300,195 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,460,878 |
net_rshares | 0 |
wait for the readiness of the application, hopefully easier to help in interacting in steemit with this application, hopefully quickly resolved, so we will quickly use it
author | oomcie85 |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t191736470z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-23 19:17:42 |
last_update | 2018-05-23 19:17:42 |
depth | 1 |
children | 2 |
last_payout | 2018-05-30 19:17: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 | 170 |
author_reputation | 2,867,243,324,320 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,320,325 |
net_rshares | 0 |
thanks for your interest, its already ready and you can use it right away.
author | dzivenu |
---|---|
permlink | re-oomcie85-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t193446187z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-23 19:34:54 |
last_update | 2018-05-23 19:34:54 |
depth | 2 |
children | 1 |
last_payout | 2018-05-30 19:34: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 | 74 |
author_reputation | 35,080,388,713,175 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,322,618 |
net_rshares | 0 |
Well, hope it helps me
author | oomcie85 |
---|---|
permlink | re-dzivenu-re-oomcie85-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t214101517z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-23 21:41:06 |
last_update | 2018-05-23 21:41:06 |
depth | 3 |
children | 0 |
last_payout | 2018-05-30 21:41: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 | 22 |
author_reputation | 2,867,243,324,320 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,338,949 |
net_rshares | 0 |
Fanastic post friend
author | phillips93 |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t034326534z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-24 03:43:54 |
last_update | 2018-05-24 03:43:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 03:43: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 | 20 |
author_reputation | 190,210,226,774 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,383,586 |
net_rshares | 0 |
Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category has been resteemed by @resteemmuse http://www.christiansutter.com/wp-content/uploads/2018/05/ResteemMuse-300x300.jpg
author | resteemmuse |
---|---|
permlink | re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180526t002737562z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["resteemmuse"],"image":["http://www.christiansutter.com/wp-content/uploads/2018/05/ResteemMuse-300x300.jpg"],"app":"steemit/0.1"} |
created | 2018-05-26 00:27:36 |
last_update | 2018-05-26 00:27:36 |
depth | 1 |
children | 0 |
last_payout | 2018-06-02 00:27: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 | 211 |
author_reputation | 265,191,043,102 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,723,702 |
net_rshares | 149,261,187 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sutter | 0 | 149,261,187 | 100% |
<center><p><strong>Hi @dzivenu! You have received 1.8 SBD @tipU upvotehttps://i.imgur.com/JFq6JWX.png! from @cardboard !</strong></p><hr>https://i.imgur.com/CaQHBkN.gif<br><strong><p>Earn daily income on steem: <a href="https://steemit.com/steem/@tipu/tipu-is-looking-for-steem-power-delegators-pays-out-100-of-profit-50-of-curation-rewards-to-investors" rel="noopener">@tipU distributes 100% profit and additional 60% curation rewards to all investors</a> and allows to <a href="https://steemit.com/steemit/@tipu/introducing-tipu-auto-reinvest-option-for-investors-sp-delegators" rel="noopener">automatically reinvest selected part of your payout</a>.</p></strong></center>
author | tipu |
---|---|
permlink | re-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t202353 |
category | utopian-io |
json_metadata | "" |
created | 2018-05-23 20:24:03 |
last_update | 2018-05-23 20:24:03 |
depth | 1 |
children | 1 |
last_payout | 2018-05-30 20: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 | 674 |
author_reputation | 55,939,291,366,544 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,329,225 |
net_rshares | 0 |
thanks @cardboard
author | dzivenu |
---|---|
permlink | re-tipu-re-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t202353-20180523t204323751z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["cardboard"],"app":"steemit/0.1"} |
created | 2018-05-23 20:43:33 |
last_update | 2018-05-23 20:43:33 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 20:43: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 | 17 |
author_reputation | 35,080,388,713,175 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,331,744 |
net_rshares | 0 |
Hey @dzivenu **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Contributing on Utopian** Learn how to contribute on <a href='https://join.utopian.io'>our website</a> or by watching <a href='https://www.youtube.com/watch?v=8S1AtrzYY1Q'>this tutorial</a> on Youtube. **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180525t082008z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.29"}" |
created | 2018-05-25 08:20:09 |
last_update | 2018-05-25 08:20:09 |
depth | 1 |
children | 0 |
last_payout | 2018-06-01 08:20:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 504 |
author_reputation | 152,955,367,999,756 |
root_title | "Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,597,966 |
net_rshares | 8,313,158,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dzivenu | 0 | 8,313,158,255 | 100% |