create account

Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category by dzivenu

View this thread on: hive.blogpeakd.comecency.com
· @dzivenu · (edited)
$218.21
Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category
<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: &nbsp;&nbsp;<code>esteem/1.6.0</code>, &nbsp;<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 &nbsp;<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>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 17 others
properties (23)
authordzivenu
permlinkintroducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category
categoryutopian-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"}
created2018-05-23 16:57:39
last_update2018-05-23 20:09:33
depth0
children20
last_payout2018-05-30 16:57:39
cashout_time1969-12-31 23:59:59
total_payout_value172.344 HBD
curator_payout_value45.865 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,681
author_reputation35,080,388,713,175
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,299,741
net_rshares57,023,046,690,424
author_curate_reward""
vote details (81)
@apeximomen ·
I agree with you apps are d best, but you know apps though can easily get deleted
properties (22)
authorapeximomen
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t220556478z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-23 22:06:06
last_update2018-05-23 22:06:06
depth1
children2
last_payout2018-05-30 22:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation516,993,927,259
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,342,314
net_rshares0
@topnetworkeral ·
who can delete the apps?
properties (22)
authortopnetworkeral
permlinkre-apeximomen-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180525t235121313z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 23:51:21
last_update2018-05-25 23:51:21
depth2
children1
last_payout2018-06-01 23:51:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation345,020,556,245
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,720,085
net_rshares0
@apeximomen ·
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
properties (22)
authorapeximomen
permlinkre-topnetworkeral-re-apeximomen-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180527t182842238z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-27 18:28:48
last_update2018-05-27 18:28:48
depth3
children0
last_payout2018-06-03 18:28:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation516,993,927,259
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,986,282
net_rshares0
@chomtana ·
$0.03
Maybe this tool will help many people especially app owner save a lot of time.
πŸ‘  
properties (23)
authorchomtana
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t013802985z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 01:37:48
last_update2018-05-24 01:37:48
depth1
children0
last_payout2018-05-31 01:37:48
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation4,088,596,052
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,367,871
net_rshares8,313,158,255
author_curate_reward""
vote details (1)
@cnaranha ·
hotlist
Congratulation dzivenu! Your post has appeared on the hot page after 57min with 43 votes.
 Thanks to @souldelas.
properties (22)
authorcnaranha
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t175454413z
categoryutopian-io
json_metadata{"tags":["hotbot"],"app":"steemjs/hot"}
created2018-05-23 17:54:54
last_update2018-05-23 17:54:54
depth1
children0
last_payout2018-05-30 17:54:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation31,258,779,536
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,308,366
net_rshares0
@cyberblock ·
$0.53
Thats a good idea! Ill have to check it out looks cool
πŸ‘  , ,
properties (23)
authorcyberblock
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t181039452z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-23 18:11:00
last_update2018-05-23 18:11:00
depth1
children0
last_payout2018-05-30 18:11:00
cashout_time1969-12-31 23:59:59
total_payout_value0.504 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation26,134,242,075,354
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,310,792
net_rshares138,552,551,138
author_curate_reward""
vote details (3)
@kumillla ·
app steem is a great idea....  in app system there will be no posibility to hacking.....
properties (22)
authorkumillla
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t202212109z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-23 20:22:18
last_update2018-05-23 20:22:18
depth1
children0
last_payout2018-05-30 20:22:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation46,693,772,683
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,329,006
net_rshares0
@ms10398 ·
$0.03
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/)
πŸ‘  
properties (23)
authorms10398
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t191712413z
categoryutopian-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"}
created2018-05-24 19:17:12
last_update2018-05-24 19:17:12
depth1
children1
last_payout2018-05-31 19:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length982
author_reputation27,572,487,973,390
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,509,156
net_rshares8,313,158,255
author_curate_reward""
vote details (1)
@dzivenu ·
thank you
properties (22)
authordzivenu
permlinkre-ms10398-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t214342641z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 21:43:51
last_update2018-05-24 21:43:51
depth2
children0
last_payout2018-05-31 21:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation35,080,388,713,175
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,527,344
net_rshares0
@nameless-berk ·
$0.47
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,
πŸ‘  
properties (23)
authornameless-berk
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t033246524z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-05-24 03:32:51
last_update2018-05-24 03:32:51
depth1
children2
last_payout2018-05-31 03:32:51
cashout_time1969-12-31 23:59:59
total_payout_value0.474 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation7,902,785,300,195
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,382,150
net_rshares126,704,134,465
author_curate_reward""
vote details (1)
@dzivenu ·
$0.13
Thanks for asking - App Stream is a Node.js app that anyone can install anywhere: locally or on some cloud servers.
πŸ‘  
properties (23)
authordzivenu
permlinkre-nameless-berk-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t100555938z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 10:06:03
last_update2018-05-24 10:06:03
depth2
children1
last_payout2018-05-31 10:06:03
cashout_time1969-12-31 23:59:59
total_payout_value0.097 HBD
curator_payout_value0.030 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation35,080,388,713,175
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,430,343
net_rshares34,293,387,352
author_curate_reward""
vote details (1)
@nameless-berk ·
Let me put it this way, are you gonna host it somewhere? Like, make the official site for that?
properties (22)
authornameless-berk
permlinkre-dzivenu-re-nameless-berk-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t135327546z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-05-24 13:53:27
last_update2018-05-24 13:53:27
depth3
children0
last_payout2018-05-31 13:53:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation7,902,785,300,195
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,460,878
net_rshares0
@oomcie85 ·
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
properties (22)
authoroomcie85
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t191736470z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-23 19:17:42
last_update2018-05-23 19:17:42
depth1
children2
last_payout2018-05-30 19:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation2,867,243,324,320
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,320,325
net_rshares0
@dzivenu ·
thanks for your interest, its already ready and you can use it right away.
properties (22)
authordzivenu
permlinkre-oomcie85-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t193446187z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-23 19:34:54
last_update2018-05-23 19:34:54
depth2
children1
last_payout2018-05-30 19:34:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation35,080,388,713,175
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,322,618
net_rshares0
@oomcie85 ·
Well, hope it helps me
properties (22)
authoroomcie85
permlinkre-dzivenu-re-oomcie85-re-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t214101517z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-23 21:41:06
last_update2018-05-23 21:41:06
depth3
children0
last_payout2018-05-30 21:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation2,867,243,324,320
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,338,949
net_rshares0
@phillips93 ·
Fanastic post friend
properties (22)
authorphillips93
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180524t034326534z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 03:43:54
last_update2018-05-24 03:43:54
depth1
children0
last_payout2018-05-31 03:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation190,210,226,774
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,383,586
net_rshares0
@resteemmuse ·
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
πŸ‘  
properties (23)
authorresteemmuse
permlinkre-dzivenu-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180526t002737562z
categoryutopian-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"}
created2018-05-26 00:27:36
last_update2018-05-26 00:27:36
depth1
children0
last_payout2018-06-02 00:27:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length211
author_reputation265,191,043,102
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,723,702
net_rshares149,261,187
author_curate_reward""
vote details (1)
@tipu ·
<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>
properties (22)
authortipu
permlinkre-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t202353
categoryutopian-io
json_metadata""
created2018-05-23 20:24:03
last_update2018-05-23 20:24:03
depth1
children1
last_payout2018-05-30 20:24:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length674
author_reputation55,939,291,366,544
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,329,225
net_rshares0
@dzivenu ·
thanks @cardboard
properties (22)
authordzivenu
permlinkre-tipu-re-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180523t202353-20180523t204323751z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["cardboard"],"app":"steemit/0.1"}
created2018-05-23 20:43:33
last_update2018-05-23 20:43:33
depth2
children0
last_payout2018-05-30 20:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation35,080,388,713,175
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,331,744
net_rshares0
@utopian-io ·
$0.03
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>
πŸ‘  
properties (23)
authorutopian-io
permlinkre-introducing-app-stream-curate-and-serve-steem-posts-comments-replies-by-app-author-category-20180525t082008z
categoryutopian-io
json_metadata"{"app": "beem/0.19.29"}"
created2018-05-25 08:20:09
last_update2018-05-25 08:20:09
depth1
children0
last_payout2018-06-01 08:20:09
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length504
author_reputation152,955,367,999,756
root_title"Introducing "App Stream": Curate and serve Steem posts/comments/replies by app/author/category"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,597,966
net_rshares8,313,158,255
author_curate_reward""
vote details (1)