create account

KURE Development Update 4 - Browsing Content and Adding to Communities! by krnel

View this thread on: hive.blogpeakd.comecency.com
· @krnel · (edited)
$64.34
KURE Development Update 4 - Browsing Content and Adding to Communities!
[//]: # (https://github.com/KrNel/kure)

This weekend was an intensive round of developing. The much needed ability to browse content from Steem has arrived! And what's more, is that those posts can be added to groups! This is a big step forward to a public release. I can see the light at the end of the tunnel :p

Other improvement were also made, such as verifying the permissions at the server-level for an action a user is trying to perform (not just client side). I also extracted the fetches and validation code from the a few components to make them reusable through out the app. If a post is added manually through the URL on the Manage page, now the real proper title is shown, and not the permlink ;)

<center><img src="https://i.imgur.com/GyrhICy.png" /></center>

---
# Repository
https://github.com/KrNel/kure

---
# Index
1. What is KURE?
2. New Features
	2.1 Browsing for Steem Content to Curate
	2.2 Adding Browsed Posts to Communities
3. Other Changes/Improvements
	3.1 Extracted validation into separate file for reuse
	3.2	Extracted the server fetches into separate file for reuse
	3.3 Permission verification added to server-side processing
	3.4 Adding a post manually via URL grabs the proper title
4. Pull Request / Latest Commits
5. Roadmap
6. Contact

---
# 1. What is Kure?

### Kindred United to Reward Everyone.

#### A Community Platform and Curation Network Remedy for Steem

Do you want to find content that other people really value? How?

Upvotes don't do it, because so many upvotes come from autovoting, autobots, or curation trails. You don't know if a vote for content is done by a real person, or some automation. The content isn't being evaluated when it's automated.

Imagine a curation network where people are interacted through community groups to share and value content, and you can really see what they value globally through various communities that people organize and collaborate together to build.

KURE provides a network hub for people to create their own community groups for evaluating content to curate. It will also develop into communities to create posts within.

Create your own communities and have others join to contribute. Make up your own criteria. Manage who can add curation links to your community group. Anyone else can follow your community and engage.

My goal is to make content easier for everyone to find by all of us sharing the content we like trough communities. Others can find communities they are interested in and see what is being curated within that community to also support it with upvotes, resteems and comments.

Maybe you want to share what you value, and get others to see it or support it, but don't want to resteem it, or want more people to see it. On KURE, the community you create and those who are involve din it will popularize content you value and allow others to see it. Another way of thinking about it, is it's kind of like having a custom community feed, based on a community that engages in creating it, rather than just one person.

---
# 2. New Features

## Video Demonstration

https://vimeo.com/316667581

---
## 2.1 Browsing for Steem Content to Curate

The ability to view post summaries from the Steem blockchain has finally been implemented. When you go to the Kurate page, the newest posts will load.

#### *Visualized*

<center><img src="https://i.imgur.com/9GfohY3.png" /></center>

There is a lot of code to get this done, but the main part that shows the post is divided into `Author`, `Thumbnail`, a `PostActions` components. The `Author` section displays the author name, reputation, category, posted time and payout value. The thumbnail will show the first image from a post. And the `PostActions` component will show all the actions you can do, such as likes, votes, comments, dislikes, flags and adding a post to a community. They don't work yet other than the plus button of adding a post.

#### *[Code snippet](https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/client/src/components/pages/Kurate/PostsSummary.js)*

<center><img src="https://i.imgur.com/fZnGLYo.png" /></center>

---
<div class="pull-right"><center><img src="https://i.imgur.com/U8YOty4.png" /></center></div>

## 2.2 Adding Browsed Posts to Communities

Browsing posts was required for this all-important step: ADDING BROWSED POSTS TO COMMUNITIES! Wo0ot!

This is done via the plus circle icon. Click on that for any post, and you get a modal popup window that asks you to `Select the community you want to add the post to:`. You can then choose one of the groups you either own, or that you have joined, and add it. 

#### *Visualized*

<center><img src="https://i.imgur.com/uaDfLma.png" /></center>

Boom! Done! That easy. No need to manually add URLs anymore (although you still can) if you want to add a post you found outside of the site. But in the future, there will be a full front-end so you won't need to go anywhere else, and everything you view on Steem can be added to a community easily ;)

Clicking on the button sends data to be saves in state, then a the modal opens and you get to add it to a community, then all the data is sent to the server. 

#### *[Code snippet](https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/client/src/components/Modal/ModalGroup.js)*

<center><img src="https://i.imgur.com/TcTtzQ9.png" /></center>
<center><img src="https://i.imgur.com/JhVfpgz.png" /></center>
<center><img src="https://i.imgur.com/6fxIijJ.png" /></center>

A lot more happens, like validation and fetching which is part of some improvements detailed below ;)

---
# 3. Other Changes/Improvements

---
## 3.1 Extracted validation into separate file for reuse in app

The validation all still works like before (as I've previously shown), but after separating the functionality out into it's own file, I was able to bring it into the new Kurate section and validate the posts to add.

If you are submitting a post that already exists in a community group, you get a error telling you: `Post already in group`.

#### *Visualized*

<center><img src="https://i.imgur.com/ejRRE4K.png" /></center>

When the post is submitted, the server check to see if you or someone else already added it. If you, the processing stops and a response is sent back telling you that the `postExists`.

#### *[Code snippet](https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/server/routes/manage/groups.js)*

<center><img src="https://i.imgur.com/UlY26e4.png" /></center>

---
## 3.2	Extracted the server fetches into separate file for reuse in app

I improved how the fetches and calls to the server are made by extracting the functions, and refactoring the code to remove duplication of code. It's a lot more streamlined now making for cleaner code ;)

This is what it looks like without comments:

#### *[Code snippet](https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/client/src/components/pages/Manage/fetchFunctions.js)*

<center><img src="https://i.imgur.com/R4hakJw.png" /></center>

---
## 3.3 Permission verification added to server-side processing

I had previously added verification of access to the client-side, but if someone who owned a group changed another user's permissions, they would still have the same permissions as before as long as they didn't reload the app, since this is a SPA (Single Page Application).

I had to implement server-side verification of permissions as well. This was easier to implement than on the client side. One function does all the checking for the adding or deleting or groups, posts or users. Very simple and elegant if I do say so myself ;)

#### *[Code snippet](https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/server/utils/verifyAccess.js)*

<center><img src="https://i.imgur.com/awknu36.png" /></center>

---
## 3.4 Adding a post manually via URL grabs the proper title

Before, when a post was manually added via URL, the permlink was used as the title, because I wasn't yet hooking into the blockchain to get the title. Now I am, so I fixed the title displayed when manually adding a post ;)

If adding a post like `https://steemit.com/philosophy/@krnel/reduced-to-ashes`, the title used to be shown as `reduced-to-ashes`. Now, it shows the real title as `Reduced to ashes...`.

#### *Visualized*

<center><img src="https://i.imgur.com/uwebHbl.png" /></center>
<center><img src="https://i.imgur.com/vsKvmga.png" /></center>

When the URL is submitted to be added, a call is made to the Steem blockchain to get the post details, and the `author`, `category`, `permlink` and `title` are kept, being sent back to the client view and server backend.

#### *[Code snippet](https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/client/src/components/pages/Manage/validationFunctions.js)*

<center><img src="https://i.imgur.com/qvVFnZ3.png" /></center>

---
# 4. Pull Request / Latest Commits

- [Pull Request](https://github.com/KrNel/kure/pull/2)
- Commit: [feature: Browse posts, Add to community](https://github.com/KrNel/kure/pull/2/commits/423dc137fe4a6ff223cda67d0f891d2fbe5f8639)

---
# 5. Roadmap

Coming up:
- Browse Steem content by hot and trending if desired
- Browse by tags
- Infinite scroll
- Viewing content details in full

You can see the [longer roadmap](https://steemit.com/utopian-io/@krnel/kure-development-update-2-managing-users) in a previous post.

---
# 6. Contact

If you want to contact me, you can reach me on Discord at https://discord.gg/ApUp4jJ, or email at `krnel@protonmail.com`. I'm not really on steem.chat, but I think I get emails if you send me a message.

- [Discord](https://discord.gg/ApUp4jJ)
- Email: `krnel@protonmail.com`

---
Thank you for your time, attention and support! I appreciate it!

Peace.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 441 others
properties (23)
authorkrnel
permlinkkure-development-update-4-browsing-content-and-adding-to-communities
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io","development","steem","kure","busy"],"users":["krnel","protonmail.com"],"links":["https://github.com/KrNel/kure","https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/client/src/components/pages/Kurate/PostsSummary.js","https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/client/src/components/Modal/ModalGroup.js","https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/server/routes/manage/groups.js","https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/client/src/components/pages/Manage/fetchFunctions.js","https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/server/utils/verifyAccess.js","https://github.com/KrNel/kure/blob/423dc137fe4a6ff223cda67d0f891d2fbe5f8639/client/src/components/pages/Manage/validationFunctions.js","https://github.com/KrNel/kure/pull/2","https://github.com/KrNel/kure/pull/2/commits/423dc137fe4a6ff223cda67d0f891d2fbe5f8639","https://steemit.com/utopian-io/@krnel/kure-development-update-2-managing-users"],"image":["https://i.imgur.com/GyrhICy.png","https://i.imgur.com/9GfohY3.png","https://i.imgur.com/fZnGLYo.png","https://i.imgur.com/U8YOty4.png","https://i.imgur.com/uaDfLma.png","https://i.imgur.com/TcTtzQ9.png","https://i.imgur.com/JhVfpgz.png","https://i.imgur.com/6fxIijJ.png","https://i.imgur.com/ejRRE4K.png","https://i.imgur.com/UlY26e4.png","https://i.imgur.com/R4hakJw.png","https://i.imgur.com/awknu36.png","https://i.imgur.com/uwebHbl.png","https://i.imgur.com/vsKvmga.png","https://i.imgur.com/qvVFnZ3.png"]}
created2019-02-11 23:58:45
last_update2019-02-16 01:03:06
depth0
children18
last_payout2019-02-18 23:58:45
cashout_time1969-12-31 23:59:59
total_payout_value48.840 HBD
curator_payout_value15.497 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,829
author_reputation1,343,547,270,297,082
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,737,238
net_rshares129,234,162,736,328
author_curate_reward""
vote details (505)
@cmplxty · (edited)
$0.04
Looking good man, the pics of the work are great, shows open source and decentralization when you share it instead of keeping to yourself. Will this be available on chrome or Firefox?

The picture also looks awesome lol

Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
πŸ‘  
properties (23)
authorcmplxty
permlinkcmplxty-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t020719194z
categoryutopian-io
json_metadata{"app":"partiko","client":"ios"}
created2019-02-12 02:07:21
last_update2019-02-12 02:07:54
depth1
children1
last_payout2019-02-19 02:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length281
author_reputation779,284,217,047,830
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,742,727
net_rshares85,211,671,968
author_curate_reward""
vote details (1)
@krnel ·
Thanks! It's a website, so it'll be available on any browser ;)
properties (22)
authorkrnel
permlinkre-cmplxty-cmplxty-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t025959549z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-12 03:00:00
last_update2019-02-12 03:00:00
depth2
children0
last_payout2019-02-19 03:00:00
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_length63
author_reputation1,343,547,270,297,082
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,745,089
net_rshares0
@denmarkguy ·
I'm excited about what you're doing here... particularly because I know you have a great understanding of what this ecosystem *could* be, if only we had the right tools. 

I've been asking for the ability to somehow "group" people I follow by their predominant type of content, or frequency of posting, or whether they are active curators and so forth... so it's exciting to see aspects of this become part of what you're developing!
properties (22)
authordenmarkguy
permlinkre-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190214t220224477z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-14 22:02:27
last_update2019-02-14 22:02:27
depth1
children0
last_payout2019-02-21 22:02: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_length433
author_reputation1,152,662,174,038,439
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,877,795
net_rshares0
@helo ·
$11.40
- Great post with structure, images, code samples and a video.
- Think about making smaller commits to help with separation of concerns. (Then grouping them in a pull request for good practice)
- You may want to get rid of dead code, it's in git anyway if you need it back.
![](https://cdn.steemitimages.com/DQmc1U1x5qaiRDZV9K2XgLHeKmy7YC4J5Q3tpS71KRdTxdX/image.png)

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), 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/3/1-2-1-1-1-3-1-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , , , , , ,
properties (23)
authorhelo
permlinkre-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t023717985z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https://cdn.steemitimages.com/DQmc1U1x5qaiRDZV9K2XgLHeKmy7YC4J5Q3tpS71KRdTxdX/image.png"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1-2-1-1-1-3-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-02-12 02:37:18
last_update2019-02-12 02:37:18
depth1
children2
last_payout2019-02-19 02:37:18
cashout_time1969-12-31 23:59:59
total_payout_value8.627 HBD
curator_payout_value2.771 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length816
author_reputation121,547,934,535,311
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,744,086
net_rshares22,855,320,354,408
author_curate_reward""
vote details (19)
@krnel ·
$0.03
Ah, I thought you wanted one commit, but I guess that was for the one pull request. I'll try to do some periodic commits as I go along, even if something isn't completed ;)

The commented code is for what I'm still working on, but I should have deleted it, saved the file, pushed to github, then just did an undo and it would have been back and not be in github ;) I'll try to keep it cleaner next time. Or you just mean more commits, and then delete it on later commits, and I can always go find it later, gotcha.

I see you want more description in commits. I'll make sure not to forget that next time.

Thanks for the tips once again!
πŸ‘  
properties (23)
authorkrnel
permlinkre-helo-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t025139911z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-12 02:51:39
last_update2019-02-12 02:51:39
depth2
children0
last_payout2019-02-19 02:51:39
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length637
author_reputation1,343,547,270,297,082
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,744,687
net_rshares69,935,898,792
author_curate_reward""
vote details (1)
@utopian-io ·
Thank you for your review, @helo! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t023717985z-20190214t052815z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-02-14 05:28:18
last_update2019-02-14 05:28:18
depth2
children0
last_payout2019-02-21 05:28: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_length56
author_reputation152,955,367,999,756
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,845,672
net_rshares0
@pennsif ·
This post has been included in the latest edition of  [**SoS Daily News**](https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-11-february-2019) - a digest of all you need to know about the State of Steem.
properties (22)
authorpennsif
permlinkre-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t225010077z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-11-february-2019"],"app":"steemit/0.1"}
created2019-02-12 22:50:09
last_update2019-02-12 22:50:09
depth1
children0
last_payout2019-02-19 22:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length233
author_reputation636,410,097,572,565
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,789,198
net_rshares0
@practicalthought ·
$0.07
Any ETA on when it will be on-boarding users? I am curious how it will work and looking forward to reading users praise and complaints on it. I recently began toying with the idea of a second account and it occurred to me I could use it for testing things I am wary of like Steemconnect. I wouldn't mind testing your site out as well, although not sure if any communities would accept me as I will be keeping the other account separate from this one.

You have a knack for this stuff. I remember tinkering on a very basic level with my WordPress sites, and looking at your screen shots brings back memories of me destroying code I shouldn't have and having to reset my entire site to how it looked initially. The stuff of nightmares.
πŸ‘  ,
properties (23)
authorpracticalthought
permlinkre-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t002258541z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-12 00:22:57
last_update2019-02-12 00:22:57
depth1
children3
last_payout2019-02-19 00:22:57
cashout_time1969-12-31 23:59:59
total_payout_value0.053 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length733
author_reputation49,876,004,966,704
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,738,148
net_rshares142,541,040,786
author_curate_reward""
vote details (2)
@krnel ·
$0.03
Well tonight I spent 2 hours making vegan general tso/tao, but I was hoping to maybe get a release out by the weekend, except on Saturday I have a family thing to do to... So maybe I can still get it live for Sunday, or else next week...

Yeah, a second account is a good idea with your trust issues :P

Yeah, with wordpress if you make a mistake in your db or code and don't know how to undo it... well you have to use a backup hehe. Even upgrades of WP in the past have messed up my site, and I had to restore from a backup.
πŸ‘  
properties (23)
authorkrnel
permlinkre-practicalthought-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t024409566z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-12 02:44:09
last_update2019-02-12 02:44:09
depth2
children0
last_payout2019-02-19 02:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length526
author_reputation1,343,547,270,297,082
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,744,370
net_rshares54,228,451,086
author_curate_reward""
vote details (1)
@krnel ·
$0.03
I can make u an account. @practicalthought2 ? What u want?
πŸ‘  
properties (23)
authorkrnel
permlinkre-practicalthought-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t174117025z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-12 17:41:18
last_update2019-02-12 17:41:18
depth2
children1
last_payout2019-02-19 17:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation1,343,547,270,297,082
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,778,594
net_rshares55,403,533,865
author_curate_reward""
vote details (1)
@practicalthought ·
That's kind of you to offer. I am wanting to keep it separate from this account (as in no one will know) because I am considering using Steem monsters  to get the second account using fiat as my entry. It seems like it is much easier than hassling with the exchanges, but I don't want to out myself, which using fiat would do. Without saying to much, I notice some weird things going on in my personal life that I assume might be tied to the things I write about. It has made me wary to say the least. 

I figured though when I get the account in the near future it would be perfect for testing out many of the things I steer away from like Steemconnect. If they jack that account it won't sting as much, lol.
πŸ‘  
properties (23)
authorpracticalthought
permlinkre-krnel-re-practicalthought-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t225507561z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-12 22:55:06
last_update2019-02-12 22:55:06
depth3
children0
last_payout2019-02-19 22:55: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_length709
author_reputation49,876,004,966,704
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,789,354
net_rshares564,890,730
author_curate_reward""
vote details (1)
@steem-ua ·
#### Hi @krnel!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t050604z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-02-12 05:06:06
last_update2019-02-12 05:06:06
depth1
children0
last_payout2019-02-19 05: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_length284
author_reputation23,214,230,978,060
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,750,646
net_rshares0
@timothyb ·
$0.07
I can hardly wait for this.  Love how you show some of the code.  This will be one of the best Steemit apps yet.

Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
πŸ‘  
properties (23)
authortimothyb
permlinktimothyb-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t005914533z
categoryutopian-io
json_metadata"{\"app\":\"partiko\",\"client\":\"ios\"}"
created2019-02-12 00:59:15
last_update2019-02-12 00:59:15
depth1
children1
last_payout2019-02-19 00:59:15
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation17,030,778,429,187
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,739,596
net_rshares139,115,996,220
author_curate_reward""
vote details (1)
@krnel ·
I'm glad you value the project already! Thanks! I hope it becomes great indeed.
properties (22)
authorkrnel
permlinkre-timothyb-timothyb-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t025348169z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-12 02:53:48
last_update2019-02-12 02:53:48
depth2
children0
last_payout2019-02-19 02:53: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_length79
author_reputation1,343,547,270,297,082
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,744,801
net_rshares0
@tonygreene113 ·
Good luck with that.

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authortonygreene113
permlinktonygreene113-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t002031600z
categoryutopian-io
json_metadata"{\"app\":\"partiko\",\"client\":\"android\"}"
created2019-02-12 00:20:33
last_update2019-02-12 00:20:33
depth1
children0
last_payout2019-02-19 00:20: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_length90
author_reputation24,142,397,026,061
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,738,042
net_rshares0
@utopian-io ·
Hey, @krnel!

**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>
properties (22)
authorutopian-io
permlinkre-kure-development-update-4-browsing-content-and-adding-to-communities-20190215t072820z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-02-15 07:28:21
last_update2019-02-15 07:28:21
depth1
children0
last_payout2019-02-22 07:28: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_length587
author_reputation152,955,367,999,756
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,892,821
net_rshares0
@valued-customer ·
$0.03
This is looking great!  

Thanks!
πŸ‘  
properties (23)
authorvalued-customer
permlinkre-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t005609762z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.7.2b"}
created2019-02-12 00:56:57
last_update2019-02-12 00:56:57
depth1
children1
last_payout2019-02-19 00:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation356,475,541,691,908
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,739,503
net_rshares56,489,617,791
author_curate_reward""
vote details (1)
@krnel ·
Thanks :)
properties (22)
authorkrnel
permlinkre-valued-customer-re-krnel-kure-development-update-4-browsing-content-and-adding-to-communities-20190212t024449912z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-12 02:44:51
last_update2019-02-12 02:44:51
depth2
children0
last_payout2019-02-19 02:44: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_reputation1,343,547,270,297,082
root_title"KURE Development Update 4 - Browsing Content and Adding to Communities!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,744,400
net_rshares0