### Introduction Steemia is a social network app running over the Steem Blockchain. This app will provide the users an enriched user experience plus features commonly encountered in a casually used social media. The goal of this project is to give the community a mobile app where they can do their daily activity in the blockchain. ### Bug Fixes ##### Fix edit comments in depth nested pages In depth nested pages the edit comment page was not working due to a bad parameter being passed. This error was fixed by tracking the the origin of the page to determine the correct parameter. ##### Fix unvote button After unvote, it was dispatched correctly but there was a weird issue because even if your vote is 0% is still shows as vote. To avoid this behavior, I modified the server side logic to remove voters with 0 weight from the "is voted" post checker. Also, to compensate this modification, the voters list was filter out to remove 0 weight votes as well. ### Visual Changes ##### Say hello to the dark UI After seeing the comments of various users in our introduction post, we determined that a dark UI was a must according to them. Hence, I decide to start working in the dark UI and here are the results: ###### Main Page  ###### Wallet Page  ###### Notifications Page  ###### Post Single Page  ###### Settings Page  ###### Comments Modal  This UI can be activated through settings page. ##### Add message when the user does not have not bookmarks Before, the bookmarks page was empty when there were not bookmarks. This can lead to confusion of the page not being loaded or a bug in the app. The following message was added to avoid any confusion:  ### New Features ##### Elastic textarea for comments After seeing the comment of one of our users, I noticed that an elastic textarea was a must. Before, this user made a suggestion because it was so hard to edit a long post in an static textarea. Hence, I decide to implement the elastic one to allocate height dynamically based on the text.  ##### Upload images from comments There were not possibility of uploading a picture in comment box. However, thanks to one of our users, this is now possible.  ##### Allow tags to be separated by space Some users were confused on how to insert tags in our application. It clearly says that it should be separated by comma. However, most of the users are already accustomed to separate them by space like in Steemit and other Steem frontends. So, I decide to keep both ways so users that are accustomed to put the comma can still keep doing it in the same way.  ##### Open profile from followers/following list Some users though that it was a bug in our application. However, it was not implemented yet. Now, you can easily access your followers/following profiles within the list.  ##### Remove save button in settings page The save button in the settings page was making an extra step to the user. This data can be saved automatically on changes. Hence, I decide to eliminate this button and allow data to save automatically.  ### Other changes ##### Move image upload logic to a provider Since we were writing the same code across page, I saw a good case for reusability of code. Thus, all the logic to capture photos, take photos from gallery, and upload image to server side were moving to a separated provider which can be called from any page. The usability of the provider is easy since all the methods return a promise with the url of the uploaded image. https://github.com/Steemia/Steemia/commit/ef00086c56709ecf1f0b3a7b4fec5d4c868108b1#diff-2a978f805b17da9b0bd7ef7c409ca4d2 ##### Show toast instead of alert for bookmarks When you save a bookmark, an alert was shown (which is annoying). What I did was replace this alert with a toast to avoid user action to dismiss the alert. ##### Auth guard for follow/unfollow actions In the users search feature, we didn't have an auth guard to prevent dispatching actions if the user is not logged in. By default, we show the follow button for the results. When an user is not logged in, the button is still shown there. When you press this button, it changes to unfollow meaning that the action can be dispatched (even though it was not dispatched). To avoid this behavior, an alert is now shown to tell the user that this action requires you to be logged in. ### What is next? - Fix the way we are showing comments to give a better user experience. - Fix the markdown parser to be par to Steemit. - Start working on iOS candidate. ### Contributions Steemia is open source and it will always be π. If you would like to contribute to this project, feel free to fork the [Steemia repo](https://github.com/Steemia/Steemia) and send us a Pull Request. <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@jaysermendez/steemia-bug-fixes-features-added-suggestions-added">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | jaysermendez | ||||||
---|---|---|---|---|---|---|---|
permlink | steemia-bug-fixes-features-added-suggestions-added | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":116088994,"name":"Steemia","full_name":"Steemia/Steemia","html_url":"https://github.com/Steemia/Steemia","fork":false,"owner":{"login":"Steemia"}},"pullRequests":[{"url":"https://api.github.com/repos/Steemia/Steemia/pulls/64","id":183212778,"html_url":"https://github.com/Steemia/Steemia/pull/64","diff_url":"https://github.com/Steemia/Steemia/pull/64.diff","patch_url":"https://github.com/Steemia/Steemia/pull/64.patch","issue_url":"https://api.github.com/repos/Steemia/Steemia/issues/64","number":64,"state":"closed","locked":false,"title":"Bug fixes, features added, suggestions added","user":{"login":"jayserdny","id":19354816,"avatar_url":"https://avatars2.githubusercontent.com/u/19354816?v=4","gravatar_id":"","url":"https://api.github.com/users/jayserdny","html_url":"https://github.com/jayserdny","followers_url":"https://api.github.com/users/jayserdny/followers","following_url":"https://api.github.com/users/jayserdny/following{/other_user}","gists_url":"https://api.github.com/users/jayserdny/gists{/gist_id}","starred_url":"https://api.github.com/users/jayserdny/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jayserdny/subscriptions","organizations_url":"https://api.github.com/users/jayserdny/orgs","repos_url":"https://api.github.com/users/jayserdny/repos","events_url":"https://api.github.com/users/jayserdny/events{/privacy}","received_events_url":"https://api.github.com/users/jayserdny/received_events","type":"User","site_admin":false},"body":"Changes made:\r\n\r\n- Move the logic to upload images to a separated provider to allow reusability and hence, can upload images for comments as well.\r\n\r\n- Remove alerts in edit post page\r\n\r\n- Elastic Comment Box\r\n\r\n- Show toast instead of alert to bookmark state\r\n\r\n- Add following text to bookmarks if there is no bookmarks: \"There is no bookmarked post yet\"\r\n\r\n- Fix edit comment throwing errors due to bad parameters\r\n\r\n- Upload images from comments\r\n\r\n- Partially solve markdown issue with posts\r\n\r\n- Allow tags to be separated by space also. If any error, display an alert.\r\n\r\n- Open profile from followers/following list.\r\n\r\n- Fix voting button after unvote\r\n\r\n- Filter out votes with a percent of <= 0 from voters list\r\n\r\n- Insert image to comment from post single page\r\n\r\n- On logout, set theme back to blue\r\n\r\n- Remove save button from settings (data should save automatically; less steps)","created_at":"2018-04-21T08:25:19Z","updated_at":"2018-04-21T08:28:34Z","closed_at":"2018-04-21T08:28:34Z","merged_at":"2018-04-21T08:28:34Z","merge_commit_sha":"51fe654d9aae17b29e797bb4394f30370c1c1741","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/Steemia/Steemia/pulls/64/commits","review_comments_url":"https://api.github.com/repos/Steemia/Steemia/pulls/64/comments","review_comment_url":"https://api.github.com/repos/Steemia/Steemia/pulls/comments{/number}","comments_url":"https://api.github.com/repos/Steemia/Steemia/issues/64/comments","statuses_url":"https://api.github.com/repos/Steemia/Steemia/statuses/f13dbda03d826f6cf9c148a066afafd9187bde9b","head":{"label":"Steemia:jayser-updates","ref":"jayser-updates","sha":"f13dbda03d826f6cf9c148a066afafd9187bde9b","user":{"login":"Steemia","id":35668607,"avatar_url":"https://avatars0.githubusercontent.com/u/35668607?v=4","gravatar_id":"","url":"https://api.github.com/users/Steemia","html_url":"https://github.com/Steemia","followers_url":"https://api.github.com/users/Steemia/followers","following_url":"https://api.github.com/users/Steemia/following{/other_user}","gists_url":"https://api.github.com/users/Steemia/gists{/gist_id}","starred_url":"https://api.github.com/users/Steemia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Steemia/subscriptions","organizations_url":"https://api.github.com/users/Steemia/orgs","repos_url":"https://api.github.com/users/Steemia/repos","events_url":"https://api.github.com/users/Steemia/events{/privacy}","received_events_url":"https://api.github.com/users/Steemia/received_events","type":"Organization","site_admin":false},"repo":{"id":116088994,"name":"Steemia","full_name":"Steemia/Steemia","owner":{"login":"Steemia","id":35668607,"avatar_url":"https://avatars0.githubusercontent.com/u/35668607?v=4","gravatar_id":"","url":"https://api.github.com/users/Steemia","html_url":"https://github.com/Steemia","followers_url":"https://api.github.com/users/Steemia/followers","following_url":"https://api.github.com/users/Steemia/following{/other_user}","gists_url":"https://api.github.com/users/Steemia/gists{/gist_id}","starred_url":"https://api.github.com/users/Steemia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Steemia/subscriptions","organizations_url":"https://api.github.com/users/Steemia/orgs","repos_url":"https://api.github.com/users/Steemia/repos","events_url":"https://api.github.com/users/Steemia/events{/privacy}","received_events_url":"https://api.github.com/users/Steemia/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Steemia/Steemia","description":"A mobile app on Steem blockchain!","fork":false,"url":"https://api.github.com/repos/Steemia/Steemia","forks_url":"https://api.github.com/repos/Steemia/Steemia/forks","keys_url":"https://api.github.com/repos/Steemia/Steemia/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Steemia/Steemia/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Steemia/Steemia/teams","hooks_url":"https://api.github.com/repos/Steemia/Steemia/hooks","issue_events_url":"https://api.github.com/repos/Steemia/Steemia/issues/events{/number}","events_url":"https://api.github.com/repos/Steemia/Steemia/events","assignees_url":"https://api.github.com/repos/Steemia/Steemia/assignees{/user}","branches_url":"https://api.github.com/repos/Steemia/Steemia/branches{/branch}","tags_url":"https://api.github.com/repos/Steemia/Steemia/tags","blobs_url":"https://api.github.com/repos/Steemia/Steemia/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Steemia/Steemia/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Steemia/Steemia/git/refs{/sha}","trees_url":"https://api.github.com/repos/Steemia/Steemia/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Steemia/Steemia/statuses/{sha}","languages_url":"https://api.github.com/repos/Steemia/Steemia/languages","stargazers_url":"https://api.github.com/repos/Steemia/Steemia/stargazers","contributors_url":"https://api.github.com/repos/Steemia/Steemia/contributors","subscribers_url":"https://api.github.com/repos/Steemia/Steemia/subscribers","subscription_url":"https://api.github.com/repos/Steemia/Steemia/subscription","commits_url":"https://api.github.com/repos/Steemia/Steemia/commits{/sha}","git_commits_url":"https://api.github.com/repos/Steemia/Steemia/git/commits{/sha}","comments_url":"https://api.github.com/repos/Steemia/Steemia/comments{/number}","issue_comment_url":"https://api.github.com/repos/Steemia/Steemia/issues/comments{/number}","contents_url":"https://api.github.com/repos/Steemia/Steemia/contents/{+path}","compare_url":"https://api.github.com/repos/Steemia/Steemia/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Steemia/Steemia/merges","archive_url":"https://api.github.com/repos/Steemia/Steemia/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Steemia/Steemia/downloads","issues_url":"https://api.github.com/repos/Steemia/Steemia/issues{/number}","pulls_url":"https://api.github.com/repos/Steemia/Steemia/pulls{/number}","milestones_url":"https://api.github.com/repos/Steemia/Steemia/milestones{/number}","notifications_url":"https://api.github.com/repos/Steemia/Steemia/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Steemia/Steemia/labels{/name}","releases_url":"https://api.github.com/repos/Steemia/Steemia/releases{/id}","deployments_url":"https://api.github.com/repos/Steemia/Steemia/deployments","created_at":"2018-01-03T03:55:27Z","updated_at":"2018-04-21T08:28:37Z","pushed_at":"2018-04-21T08:29:01Z","git_url":"git://github.com/Steemia/Steemia.git","ssh_url":"git@github.com:Steemia/Steemia.git","clone_url":"https://github.com/Steemia/Steemia.git","svn_url":"https://github.com/Steemia/Steemia","homepage":"http://steemia.io","size":23855,"stargazers_count":24,"watchers_count":24,"language":"TypeScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":9,"mirror_url":null,"archived":false,"open_issues_count":1,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":9,"open_issues":1,"watchers":24,"default_branch":"master"}},"base":{"label":"Steemia:master","ref":"master","sha":"a625cc6d92c3031b6b6c4348179000a2230d38d6","user":{"login":"Steemia","id":35668607,"avatar_url":"https://avatars0.githubusercontent.com/u/35668607?v=4","gravatar_id":"","url":"https://api.github.com/users/Steemia","html_url":"https://github.com/Steemia","followers_url":"https://api.github.com/users/Steemia/followers","following_url":"https://api.github.com/users/Steemia/following{/other_user}","gists_url":"https://api.github.com/users/Steemia/gists{/gist_id}","starred_url":"https://api.github.com/users/Steemia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Steemia/subscriptions","organizations_url":"https://api.github.com/users/Steemia/orgs","repos_url":"https://api.github.com/users/Steemia/repos","events_url":"https://api.github.com/users/Steemia/events{/privacy}","received_events_url":"https://api.github.com/users/Steemia/received_events","type":"Organization","site_admin":false},"repo":{"id":116088994,"name":"Steemia","full_name":"Steemia/Steemia","owner":{"login":"Steemia","id":35668607,"avatar_url":"https://avatars0.githubusercontent.com/u/35668607?v=4","gravatar_id":"","url":"https://api.github.com/users/Steemia","html_url":"https://github.com/Steemia","followers_url":"https://api.github.com/users/Steemia/followers","following_url":"https://api.github.com/users/Steemia/following{/other_user}","gists_url":"https://api.github.com/users/Steemia/gists{/gist_id}","starred_url":"https://api.github.com/users/Steemia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Steemia/subscriptions","organizations_url":"https://api.github.com/users/Steemia/orgs","repos_url":"https://api.github.com/users/Steemia/repos","events_url":"https://api.github.com/users/Steemia/events{/privacy}","received_events_url":"https://api.github.com/users/Steemia/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Steemia/Steemia","description":"A mobile app on Steem blockchain!","fork":false,"url":"https://api.github.com/repos/Steemia/Steemia","forks_url":"https://api.github.com/repos/Steemia/Steemia/forks","keys_url":"https://api.github.com/repos/Steemia/Steemia/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Steemia/Steemia/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Steemia/Steemia/teams","hooks_url":"https://api.github.com/repos/Steemia/Steemia/hooks","issue_events_url":"https://api.github.com/repos/Steemia/Steemia/issues/events{/number}","events_url":"https://api.github.com/repos/Steemia/Steemia/events","assignees_url":"https://api.github.com/repos/Steemia/Steemia/assignees{/user}","branches_url":"https://api.github.com/repos/Steemia/Steemia/branches{/branch}","tags_url":"https://api.github.com/repos/Steemia/Steemia/tags","blobs_url":"https://api.github.com/repos/Steemia/Steemia/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Steemia/Steemia/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Steemia/Steemia/git/refs{/sha}","trees_url":"https://api.github.com/repos/Steemia/Steemia/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Steemia/Steemia/statuses/{sha}","languages_url":"https://api.github.com/repos/Steemia/Steemia/languages","stargazers_url":"https://api.github.com/repos/Steemia/Steemia/stargazers","contributors_url":"https://api.github.com/repos/Steemia/Steemia/contributors","subscribers_url":"https://api.github.com/repos/Steemia/Steemia/subscribers","subscription_url":"https://api.github.com/repos/Steemia/Steemia/subscription","commits_url":"https://api.github.com/repos/Steemia/Steemia/commits{/sha}","git_commits_url":"https://api.github.com/repos/Steemia/Steemia/git/commits{/sha}","comments_url":"https://api.github.com/repos/Steemia/Steemia/comments{/number}","issue_comment_url":"https://api.github.com/repos/Steemia/Steemia/issues/comments{/number}","contents_url":"https://api.github.com/repos/Steemia/Steemia/contents/{+path}","compare_url":"https://api.github.com/repos/Steemia/Steemia/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Steemia/Steemia/merges","archive_url":"https://api.github.com/repos/Steemia/Steemia/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Steemia/Steemia/downloads","issues_url":"https://api.github.com/repos/Steemia/Steemia/issues{/number}","pulls_url":"https://api.github.com/repos/Steemia/Steemia/pulls{/number}","milestones_url":"https://api.github.com/repos/Steemia/Steemia/milestones{/number}","notifications_url":"https://api.github.com/repos/Steemia/Steemia/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Steemia/Steemia/labels{/name}","releases_url":"https://api.github.com/repos/Steemia/Steemia/releases{/id}","deployments_url":"https://api.github.com/repos/Steemia/Steemia/deployments","created_at":"2018-01-03T03:55:27Z","updated_at":"2018-04-21T08:28:37Z","pushed_at":"2018-04-21T08:29:01Z","git_url":"git://github.com/Steemia/Steemia.git","ssh_url":"git@github.com:Steemia/Steemia.git","clone_url":"https://github.com/Steemia/Steemia.git","svn_url":"https://github.com/Steemia/Steemia","homepage":"http://steemia.io","size":23855,"stargazers_count":24,"watchers_count":24,"language":"TypeScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":9,"mirror_url":null,"archived":false,"open_issues_count":1,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":9,"open_issues":1,"watchers":24,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Steemia/Steemia/pulls/64"},"html":{"href":"https://github.com/Steemia/Steemia/pull/64"},"issue":{"href":"https://api.github.com/repos/Steemia/Steemia/issues/64"},"comments":{"href":"https://api.github.com/repos/Steemia/Steemia/issues/64/comments"},"review_comments":{"href":"https://api.github.com/repos/Steemia/Steemia/pulls/64/comments"},"review_comment":{"href":"https://api.github.com/repos/Steemia/Steemia/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/Steemia/Steemia/pulls/64/commits"},"statuses":{"href":"https://api.github.com/repos/Steemia/Steemia/statuses/f13dbda03d826f6cf9c148a066afafd9187bde9b"}},"author_association":"OWNER"}],"platform":"github","type":"development","tags":["utopian-io","steemia","steemdev","steemit","blockchain"],"links":["https://cdn.utopian.io/posts/897b606b16d9e2ea615e38e2777c5afcd20dScreen_Shot_2018-04-21_at_4.08.33_PM.png","https://cdn.utopian.io/posts/b4b4034bd347024d261d0dab09d4787ca047Screen_Shot_2018-04-21_at_4.09.05_PM.png","https://cdn.utopian.io/posts/ac9678485d40cfaf9219b62eb50e6d8adddaScreen_Shot_2018-04-21_at_4.09.37_PM.png","https://steemitimages.com/DQmXNKgdTQGAyDqfRbakuPdHnkLeFeoStdiVCghRjFFqYuu/Screen%20Shot%202018-04-21%20at%204.10.29%20PM.png","https://cdn.utopian.io/posts/e0a97c09cba89cdd0b5f0a6757571008d0d1Screen_Shot_2018-04-21_at_4.10.57_PM.png","https://steemitimages.com/DQmSvErbnFvTr3UmYntMbJiRojYbBNXgoHXujxVmRK19Gy3/Screen%20Shot%202018-04-21%20at%204.13.13%20PM.png","https://cdn.utopian.io/posts/7145601a742a3e174885407c03bf005a06a5Screen_Shot_2018-04-21_at_4.43.46_PM.png","https://cdn.utopian.io/posts/08bebe0e13b8fe07101bbcf796fcffe17bb4Screen_Shot_2018-04-21_at_4.27.31_PM.png","https://cdn.utopian.io/posts/acda96fd69fc4d99c10916df5c93d9835f98Screen_Shot_2018-04-21_at_4.29.30_PM.png","https://cdn.utopian.io/posts/0c181476ae60a666a1fa0e572f5c48227ca0Screen_Shot_2018-04-21_at_4.31.29_PM.png","https://cdn.utopian.io/posts/21285310cd5251eca4d853fb8b38ab323f5cScreen_Shot_2018-04-21_at_4.33.09_PM.png","https://cdn.utopian.io/posts/1051bfd09236e329525939129cdf897a761aScreen_Shot_2018-04-21_at_4.34.47_PM.png","https://github.com/Steemia/Steemia"],"image":["https://cdn.utopian.io/posts/897b606b16d9e2ea615e38e2777c5afcd20dScreen_Shot_2018-04-21_at_4.08.33_PM.png","https://cdn.utopian.io/posts/b4b4034bd347024d261d0dab09d4787ca047Screen_Shot_2018-04-21_at_4.09.05_PM.png","https://cdn.utopian.io/posts/ac9678485d40cfaf9219b62eb50e6d8adddaScreen_Shot_2018-04-21_at_4.09.37_PM.png","https://steemitimages.com/DQmXNKgdTQGAyDqfRbakuPdHnkLeFeoStdiVCghRjFFqYuu/Screen%20Shot%202018-04-21%20at%204.10.29%20PM.png","https://cdn.utopian.io/posts/e0a97c09cba89cdd0b5f0a6757571008d0d1Screen_Shot_2018-04-21_at_4.10.57_PM.png","https://steemitimages.com/DQmSvErbnFvTr3UmYntMbJiRojYbBNXgoHXujxVmRK19Gy3/Screen%20Shot%202018-04-21%20at%204.13.13%20PM.png","https://cdn.utopian.io/posts/7145601a742a3e174885407c03bf005a06a5Screen_Shot_2018-04-21_at_4.43.46_PM.png","https://cdn.utopian.io/posts/08bebe0e13b8fe07101bbcf796fcffe17bb4Screen_Shot_2018-04-21_at_4.27.31_PM.png","https://cdn.utopian.io/posts/acda96fd69fc4d99c10916df5c93d9835f98Screen_Shot_2018-04-21_at_4.29.30_PM.png","https://cdn.utopian.io/posts/0c181476ae60a666a1fa0e572f5c48227ca0Screen_Shot_2018-04-21_at_4.31.29_PM.png","https://cdn.utopian.io/posts/21285310cd5251eca4d853fb8b38ab323f5cScreen_Shot_2018-04-21_at_4.33.09_PM.png","https://cdn.utopian.io/posts/1051bfd09236e329525939129cdf897a761aScreen_Shot_2018-04-21_at_4.34.47_PM.png"],"moderator":{"account":"amosbastian","time":"2018-04-21T21:39:27.874Z","pending":false,"reviewed":true,"flagged":false},"questions":null,"score":null,"total_influence":null,"staff_pick":null,"config":{"questions":[{"question":"How would you rate the impact of the fixed bugs / new features on the project?","question_id":"dev-1","answers":[{"answer":"Very high - the amount of work is very high.","answer_id":1,"value":20},{"answer":"High - the amount of work is high","answer_id":2,"value":15},{"answer":"Average - the amount of work is average","answer_id":3,"value":10},{"answer":"Low - the amount of work is low.","answer_id":4,"value":5},{"answer":"Very Low - the amount of work is very little.","answer_id":5,"value":0}]},{"question":"How would you rate the quality of the provided code?","question_id":"dev-2","answers":[{"answer":"Very high - the code follows all the best practices and/or is the opposite of trivial.","answer_id":1,"value":20},{"answer":"High - the code follows nearly all the best practices and/or is not trivial at all. ","answer_id":2,"value":15},{"answer":"Average - the code follows most the best practices and/or some parts of it are trivial.","answer_id":3,"value":10},{"answer":"Low - the code doesn't really follow the best practices and/or a lot of it is trivial.","answer_id":4,"value":5},{"answer":"Very low - the code doesn't follow the best practices and is completely trivial.","answer_id":5,"value":0}]},{"question":"How do you rate the target project overall?","question_id":"dev-3","answers":[{"answer":"Very high - the project has a unique value, will (potentially) also be useful to a lot of people and has the potential to keep growing.","answer_id":1,"value":10},{"answer":"High - the project isn't really unique but it is well maintained.","answer_id":2,"value":8},{"answer":"Average - the project is limited or not very well maintained.","answer_id":3,"value":4},{"answer":"Low - quality of the project overall is low.","answer_id":4,"value":2},{"answer":"Very low - quality of the project overall is very low and not well maintained.","answer_id":5,"value":0}]},{"question":"Does the writing style meet the Utopian standard considering formalness, informativeness and clarity of the content?","question_id":"c-1","answers":[{"answer":"It is formal, informative and well written with clear content.","answer_id":1,"value":10},{"answer":"It is informative with clear content but not formal enough.","answer_id":2,"value":5},{"answer":"The contribution could be more informative or contains unrelated information, formality and clarity of the content are good enough.","answer_id":3,"value":4},{"answer":"Not all sections were clear enough but overall holds value for the project.","answer_id":4,"value":2},{"answer":"Not at all.","answer_id":5,"value":0}]},{"question":"Was the provided category template for the editor followed?","question_id":"c-2","answers":[{"answer":"All points of the template were included with additional points as well.","answer_id":1,"value":5},{"answer":"The template was followed without additions.","answer_id":2,"value":4},{"answer":"The template was edited but the points were covered in different way.","answer_id":3,"value":3},{"answer":"Not all points of the template were covered in the contribution but the structure is clear enough.","answer_id":4,"value":3},{"answer":"The template was not followed but the structure is clear enough.","answer_id":5,"value":2},{"answer":"The contents are not clearly structured at all.","answer_id":6,"value":0}]},{"question":"Did the contributor tag other users?","question_id":"c-3","answers":[{"answer":"No other users were tagged by the contributor.","answer_id":1,"value":5},{"answer":"Used tags are reasonable and all tagged people are connected to the project and/or the contribution.","answer_id":2,"value":5},{"answer":"The contribution contains mentions of other users that are not directly related to the contribution but related in other ways.","answer_id":3,"value":2},{"answer":"The contributor misuses tagging of other users.","answer_id":4,"value":0}]},{"question":"Did the contributor ask for upvotes, resteems, follows or witness vote?","question_id":"c-4","answers":[{"answer":"No","answer_id":1,"value":5},{"answer":"Yes, but not in a way that disturbs readability. ","answer_id":2,"value":5},{"answer":"Yes.","answer_id":3,"value":0}]},{"question":"Was a graphical content like images, charts, videos or screenshots included?","question_id":"c-5","answers":[{"answer":"Yes, the graphical content is included and adds more value to the contribution.","answer_id":1,"value":5},{"answer":"No but the contribution works well without graphical content well.","answer_id":2,"value":4},{"answer":"Yes, but most of the graphical contentβs purpose is just for presentational matters.","answer_id":3,"value":3},{"answer":"No relevant or useful graphical content is included in the contribution.","answer_id":4,"value":0}]},{"question":"How would you rate the overall added value?","question_id":"c-6","answers":[{"answer":"Extraordinary value to both the project and the open source community overall.","answer_id":1,"value":20},{"answer":"Significant value to the project or open source community.","answer_id":2,"value":15},{"answer":"Some value to the project or open source community.","answer_id":3,"value":10},{"answer":"Little value to the project or open source community.","answer_id":4,"value":5},{"answer":"No obvious value to project or open source community.","answer_id":5,"value":0}]}]}}" | ||||||
created | 2018-04-21 20:51:48 | ||||||
last_update | 2018-04-21 21:39:30 | ||||||
depth | 0 | ||||||
children | 26 | ||||||
last_payout | 2018-04-28 20:51:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 166.540 HBD | ||||||
curator_payout_value | 63.354 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 6,769 | ||||||
author_reputation | 20,790,862,502,465 | ||||||
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,371,817 | ||||||
net_rshares | 40,783,936,902,561 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bustillo | 0 | 0 | 100% | ||
yuxi | 0 | 3,879,571,141 | 20% | ||
thatmemeguy | 0 | 4,790,547,522 | 50% | ||
tranquilpen | 0 | 0 | 100% | ||
dyancuex | 0 | 970,859,765 | 50% | ||
cryptophunk | 0 | 274,154,601 | 50% | ||
detlev | 0 | 4,792,329,446 | 8% | ||
miniature-tiger | 0 | 84,032,476,276 | 100% | ||
toninux | 0 | 558,445,635 | 50% | ||
jdc | 0 | 1,041,406,995 | 20% | ||
bargolis | 0 | 715,531,769 | 5% | ||
mys | 0 | 42,072,637,925 | 48.08% | ||
jakipatryk | 0 | 48,915,201,563 | 100% | ||
jga | 0 | 1,335,197,316 | 8.5% | ||
helo | 0 | 26,749,941,973 | 100% | ||
ilyastarar | 0 | 24,265,432,757 | 50% | ||
alphacore | 0 | 2,919,037,507 | 5% | ||
mahdiyari | 0 | 9,829,502,892 | 10% | ||
ronimm | 0 | 9,704,523,214 | 100% | ||
mufasatoldyou | 0 | 7,715,119,220 | 100% | ||
saksham | 0 | 508,074,097 | 37% | ||
chaostheory | 0 | 791,032,172 | 100% | ||
butterfly-effect | 0 | 798,953,049 | 100% | ||
jomeszaros | 0 | 29,243,530,047 | 100% | ||
thegrandestine | 0 | 1,569,824,821 | 100% | ||
makrotheblack | 0 | 2,710,976,942 | 50% | ||
mirrorforce | 0 | 613,584,032 | 100% | ||
lilith | 0 | 220,738,662 | 100% | ||
mysticalword | 0 | 701,040,799 | 100% | ||
simonluisi | 0 | 2,708,975,673 | 100% | ||
doughtaker | 0 | 34,408,548,392 | 100% | ||
thinkkniht | 0 | 99,841,501 | 75% | ||
desteemy | 0 | 1,521,387,775 | 100% | ||
ewuoso | 0 | 4,138,974,151 | 20% | ||
inquiringtimes | 0 | 108,818,554,144 | 50% | ||
elbleess | 0 | 407,652,490 | 50% | ||
jfuenmayor96 | 0 | 2,442,575,217 | 50% | ||
paradoxofchoice | 0 | 1,164,256,892 | 100% | ||
phogyan | 0 | 2,169,596,385 | 50% | ||
instantania.cat | 0 | 1,532,073,422 | 50% | ||
betacore | 0 | 707,732,118 | 100% | ||
harshallele | 0 | 4,909,919,749 | 50% | ||
leyla5 | 0 | 1,456,066,714 | 50% | ||
love-me | 0 | 1,039,222,951 | 100% | ||
omegacore | 0 | 1,489,858,419 | 100% | ||
cifer | 0 | 5,939,978,427 | 80% | ||
jesdn16 | 0 | 2,426,936,849 | 100% | ||
xtramedium | 0 | 321,235,294 | 50% | ||
leir | 0 | 672,357,200 | 20% | ||
filina | 0 | 58,981,372 | 100% | ||
stoodkev | 0 | 18,518,282,771 | 10% | ||
aneukpineung78 | 0 | 3,258,357,080 | 100% | ||
dakeshi | 0 | 3,238,966,737 | 50% | ||
luisrod | 0 | 116,014,491 | 15% | ||
ansonoxy | 0 | 1,724,551,697 | 100% | ||
eastmael | 0 | 49,488,459,018 | 100% | ||
kittenpics | 0 | 62,318,113 | 25% | ||
espoem | 0 | 70,606,862,308 | 100% | ||
maneki-neko | 0 | 678,228,473 | 1% | ||
navskiy | 0 | 60,918,242 | 100% | ||
loshcat | 0 | 2,882,840,089 | 100% | ||
rozalia | 0 | 130,950,951 | 100% | ||
isaganicabrales | 0 | 394,207,187 | 50% | ||
hsynterkr | 0 | 3,370,634,975 | 100% | ||
idlebright | 0 | 3,147,952,749 | 50% | ||
odebgaming | 0 | 437,543,099 | 100% | ||
utopian-io | 0 | 39,355,835,405,320 | 26.4% | ||
ihtiht | 0 | 8,116,555,153 | 100% | ||
steaknsteem | 0 | 2,009,979,046 | 50% | ||
sayed53 | 0 | 180,313,314 | 50% | ||
jm90mm | 0 | 12,081,354,431 | 17% | ||
moorkedi | 0 | 1,660,227,551 | 100% | ||
zouxx | 0 | 55,397,612 | 0.01% | ||
kimaben | 0 | 480,325,652 | 25% | ||
kslo | 0 | 2,431,685,065 | 50% | ||
mrmaracucho | 0 | 552,536,685 | 100% | ||
not-a-bird | 0 | 4,842,560,607 | 50% | ||
adhew | 0 | 61,124,335 | 10% | ||
bitopia | 0 | 1,455,110,501 | 100% | ||
eleonardo | 0 | 161,616,238 | 10% | ||
zohaib715 | 0 | 318,270,745 | 50% | ||
murad06 | 0 | 312,003,091 | 50% | ||
evilest-fiend | 0 | 2,429,520,925 | 100% | ||
shenoy | 0 | 9,632,668,217 | 10% | ||
richardbmx | 0 | 5,123,034,656 | 100% | ||
studytext | 0 | 143,877,443 | 25% | ||
greenorange | 0 | 606,408,447 | 100% | ||
senyarazin | 0 | 71,252,685 | 100% | ||
fabiocola | 0 | 696,964,621 | 100% | ||
iqbaladan | 0 | 14,228,867,631 | 100% | ||
bromius | 0 | 1,136,570,911 | 100% | ||
checkthisout | 0 | 822,373,978 | 50% | ||
navx | 0 | 1,983,816,472 | 70% | ||
handfree42 | 0 | 97,909,091 | 50% | ||
ilovekrys | 0 | 223,362,545 | 50% | ||
zalandir | 0 | 8,894,664,806 | 50% | ||
family.app | 0 | 90,356,955 | 100% | ||
not-a-cat | 0 | 1,101,310,764 | 100% | ||
antikesdenken | 0 | 643,782,485 | 17% | ||
varja | 0 | 93,031,117 | 50% | ||
maphics | 0 | 105,241,312 | 100% | ||
rosemarynoble | 0 | 465,707,113 | 50% | ||
sebastiengllmt | 0 | 307,095,054 | 50% | ||
utopian-1up | 0 | 5,088,675,302 | 100% | ||
odesanya | 0 | 52,057,413 | 10% | ||
arcjen02 | 0 | 4,030,515,118 | 100% | ||
barut | 0 | 675,422,376 | 50% | ||
phgnomo | 0 | 958,106,532 | 15% | ||
carsonroscoe | 0 | 15,299,748,794 | 80% | ||
camillius | 0 | 72,347,408 | 6% | ||
zlatkamrs | 0 | 385,202,275 | 70% | ||
salahudeen | 0 | 128,822,855 | 35% | ||
amosbastian | 0 | 27,475,457,208 | 100% | ||
acrywhif | 0 | 3,336,118,363 | 80% | ||
mikefromtheuk | 0 | 1,072,330,281 | 100% | ||
xplore | 0 | 736,364,149 | 50% | ||
proffgodswill | 0 | 58,242,026 | 10% | ||
grzesiekb | 0 | 189,599,090,757 | 100% | ||
roundbeargames | 0 | 10,077,757,864 | 10% | ||
sweeverdev | 0 | 1,052,002,634 | 50% | ||
shairalaleska | 0 | 615,295,943 | 100% | ||
kodeblacc | 0 | 3,152,109,405 | 50% | ||
isacastillor | 0 | 1,079,013,647 | 95% | ||
devilonwheels | 0 | 1,994,551,871 | 10% | ||
new-sings | 0 | 416,127,482 | 100% | ||
fabiolapestana | 0 | 473,280,287 | 100% | ||
gwys | 0 | 454,135,673 | 50% | ||
oups | 0 | 11,202,492,756 | 100% | ||
rhotimee | 0 | 368,127,742 | 50% | ||
brusd | 0 | 82,874,569 | 13% | ||
kekegist | 0 | 1,089,296,644 | 100% | ||
jrmiller87 | 0 | 2,467,066,081 | 100% | ||
audiosiren | 0 | 360,042,401 | 100% | ||
solomon507 | 0 | 316,291,338 | 50% | ||
patatesyiyen | 0 | 65,377,983 | 12.5% | ||
deejee | 0 | 122,966,840 | 20% | ||
rsteem | 0 | 342,032,977 | 50% | ||
ahmetterkir | 0 | 0 | 100% | ||
ycct | 0 | 2,367,245,313 | 100% | ||
onin91 | 0 | 438,226,885 | 50% | ||
isabella394 | 0 | 2,603,181,513 | 100% | ||
emailbox19149 | 0 | 171,722,951 | 50% | ||
videosteemit | 0 | 1,543,190,366 | 25% | ||
the-reaper | 0 | 470,591,059 | 100% | ||
romances | 0 | 416,127,482 | 100% | ||
tobias-g | 0 | 46,196,770,834 | 100% | ||
holger80 | 0 | 210,039,339,588 | 100% | ||
skybreaker | 0 | 1,444,291,298 | 100% | ||
lemony-cricket | 0 | 9,813,387,101 | 20% | ||
hashas120 | 0 | 301,285,675 | 50% | ||
jaysermendez | 0 | 8,321,611,313 | 100% | ||
saifannur-mzy | 0 | 263,878,602 | 50% | ||
yeswanth | 0 | 611,307,262 | 100% | ||
kaking | 0 | 229,301,411 | 50% | ||
mdnazmulhasan | 0 | 481,836,322 | 100% | ||
exploreand | 0 | 1,178,382,815 | 25% | ||
petvalbra | 0 | 614,974,088 | 100% | ||
steemassistant | 0 | 463,818,459 | 100% | ||
hmctrasher | 0 | 406,999,381 | 10% | ||
photohunter1 | 0 | 4,032,530,314 | 100% | ||
photohunter3 | 0 | 3,184,934,733 | 100% | ||
photohunter4 | 0 | 3,173,090,982 | 100% | ||
photohunter5 | 0 | 3,165,819,573 | 100% | ||
howtosteem | 0 | 3,396,079,946 | 100% | ||
cha0s0000 | 0 | 8,547,696,659 | 100% | ||
sylinda | 0 | 217,104,956 | 50% | ||
kingsman2 | 0 | 305,976,090 | 50% | ||
lorennys | 0 | 648,516,780 | 100% | ||
livsky | 0 | 101,920,633 | 50% | ||
tailslide | 0 | 208,119,190 | 50% | ||
roj | 0 | 2,591,260,468 | 100% | ||
raoul.poenar | 0 | 3,531,974,855 | 50% | ||
aderemi01 | 0 | 1,774,721,456 | 50% | ||
sampath94 | 0 | 270,371,388 | 50% | ||
supreme-verdict | 0 | 18,814,707,926 | 100% | ||
retrocausality | 0 | 870,914,383 | 100% | ||
killbill73 | 0 | 168,127,183 | 50% | ||
amirdesaingrafis | 0 | 538,395,996 | 50% | ||
fai.zul | 0 | 290,677,285 | 50% | ||
nightdragon | 0 | 215,088,778 | 50% | ||
aliyu-s | 0 | 478,765,963 | 50% | ||
estherekanem | 0 | 88,932,646 | 20% | ||
chukuibijenny | 0 | 211,560,670 | 50% | ||
simplymike | 0 | 12,778,641,573 | 25% | ||
muratti | 0 | 58,072,639 | 10% | ||
hakancelik | 0 | 10,348,640,870 | 100% | ||
opulence | 0 | 1,806,546,246 | 50% | ||
phasma | 0 | 122,612,788 | 20% | ||
ibez | 0 | 82,769,138 | 20% | ||
pixelproperty | 0 | 1,555,640,254 | 50% | ||
donjyde | 0 | 214,240,350 | 50% | ||
monster-reborn | 0 | 1,595,950,241 | 100% | ||
crispycoinboys | 0 | 2,124,922,363 | 30% | ||
gwapoaller | 0 | 307,097,758 | 50% | ||
carloniere | 0 | 111,337,179 | 50% | ||
bluestorm | 0 | 460,899,167 | 75% | ||
genoner | 0 | 1,577,923,076 | 95% | ||
jayo | 0 | 180,848,185 | 50% | ||
pepememes | 0 | 165,113,878 | 50% | ||
chain-reaction | 0 | 91,037,251 | 100% | ||
ayoade96 | 0 | 73,349,921 | 50% | ||
k9disc | 0 | 3,298,258,487 | 100% | ||
ahmad097 | 0 | 221,350,686 | 50% | ||
hendragunawan | 0 | 218,346,994 | 50% | ||
animesukidesu | 0 | 141,150,055 | 50% | ||
wealth4good | 0 | 295,444,205 | 5% | ||
esme-svh | 0 | 251,029,839 | 50% | ||
lsanek | 0 | 306,103,556 | 50% | ||
ejimevwo | 0 | 54,261,696 | 10% | ||
trufflepig | 0 | 6,361,030,558 | 34% | ||
lykia | 0 | 297,226,978 | 50% | ||
realness | 0 | 306,394,150 | 50% | ||
musicbot | 0 | 100,776,450 | 100% | ||
flugbot | 0 | 122,683,991 | 100% | ||
lemcriq | 0 | 54,364,903 | 20% | ||
ernoldlvb | 0 | 106,536,723 | 50% | ||
vampirgarfield | 0 | 116,431,427 | 50% | ||
beebeeisnoheebee | 0 | 0 | -100% | ||
gydronium | 0 | 140,598,253 | 30% | ||
qanon1111 | 0 | 70,407,889 | 100% | ||
alimirza0416 | 0 | 205,365,808 | 50% | ||
abbyrich | 0 | 52,113,719 | 10% | ||
clayjohn | 0 | 6,988,985,428 | 100% | ||
niouton | 0 | 9,032,726,083 | 40% | ||
zuhrafriska | 0 | 575,641,584 | 100% | ||
editorspicks | 0 | 61,230,367 | 50% | ||
syahrin | 0 | 213,927,996 | 50% | ||
cryptocopy | 0 | 305,623,174 | 50% | ||
dotman-art | 0 | 201,784,440 | 50% | ||
artsyunicorn | 0 | 245,776,310 | 50% | ||
cowboyup | 0 | 0 | 100% | ||
steemfunder | 0 | 282,043,317 | 50% | ||
solpaman | 0 | 247,541,695 | 50% | ||
oezixxx | 0 | 470,141,706 | 100% | ||
swaze | 0 | 302,586,162 | 50% | ||
ikibaru-san | 0 | 452,331,195 | 100% | ||
soykare95 | 0 | 553,172,468 | 100% | ||
anggajai1419 | 0 | 0 | 100% |
Thanks for the contribution. It has been approved. You did an amazing job on this contribution, it was a pleasure reviewing it! Keep up the good work! ---------------------------------------------------------------------- Need help? Write a ticket on https://support.utopian.io. Chat with us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | amosbastian | ||||||
---|---|---|---|---|---|---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180421t214556607z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-21 21:45:57 | ||||||
last_update | 2018-04-21 21:45:57 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-04-28 21:45:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.034 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 393 | ||||||
author_reputation | 174,473,586,900,705 | ||||||
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,377,436 | ||||||
net_rshares | 8,214,923,989 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jaysermendez | 0 | 8,214,923,989 | 100% |
Thank you so much for your feedback :D :D You are always encouraging contributors to keep doing a good job :D
author | jaysermendez |
---|---|
permlink | re-amosbastian-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180421t215031677z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-21 21:50:30 |
last_update | 2018-04-21 21:50:30 |
depth | 2 |
children | 0 |
last_payout | 2018-04-28 21:50:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 20,790,862,502,465 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,377,941 |
net_rshares | 0 |
Can't login, no support. Asked for help over a month ago and nothing. App asks for password that's a mile long and doesn't accept it thanks for your help ππΏππΎππ½πππ»ππΌ
author | beebeeisnoheebee |
---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180520t233342767z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-20 23:33:45 |
last_update | 2018-05-20 23:33:45 |
depth | 1 |
children | 7 |
last_payout | 2018-05-27 23:33:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | -1,436,647,125 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,787,552 |
net_rshares | -11,861,556,371 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemia-io | 0 | -11,861,556,371 | -49% |
First of all, keep this finger into your ass MF. Secondly, where tf did you asked for support? I dont see your username into our Discord channel. Thirdly, fuck off, I dont care if you use our app or not. You were disrespectful, take it back piece of shit.
author | jaysermendez |
---|---|
permlink | re-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180521t003342999z |
category | utopian-io |
json_metadata | {"community":"steemia","app":"steemia/0.0.1"} |
created | 2018-05-21 00:33:42 |
last_update | 2018-05-21 00:33:42 |
depth | 2 |
children | 6 |
last_payout | 2018-05-28 00:33: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 | 255 |
author_reputation | 20,790,862,502,465 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,793,861 |
net_rshares | -12,447,031,110 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemia-io | 0 | -11,877,041,986 | -45% | ||
beebeeisnoheebee | 0 | -569,989,124 | -100% |
Ok sorry. Now I see you can reply to swear at me, but for support I have to create another account on another app, makes total sense
author | beebeeisnoheebee |
---|---|
permlink | re-jaysermendez-re-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180521t021439264z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-21 02:14:42 |
last_update | 2018-05-21 02:14:42 |
depth | 3 |
children | 0 |
last_payout | 2018-05-28 02:14: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 | 132 |
author_reputation | -1,436,647,125 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,804,176 |
net_rshares | -11,861,556,371 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemia-io | 0 | -11,861,556,371 | -49% |
Your app sucks, you suck, your mom sucks ππΌππ»πππ½ππΎππΏ whenever a dick is not going in your mouth, shit is coming out of it. Fuck you, your app, and your whole family bitch ass faggot
author | beebeeisnoheebee |
---|---|
permlink | re-jaysermendez-re-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180522t002917751z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-22 00:29:21 |
last_update | 2018-05-22 00:29:21 |
depth | 3 |
children | 4 |
last_payout | 2018-05-29 00:29: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 | 182 |
author_reputation | -1,436,647,125 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,981,313 |
net_rshares | -14,018,202,984 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemia-io | 0 | -14,018,202,984 | -45% |
excellent work! I am always looking forward to the IOS version . Also it is good to learn through your Steemia to promote my MicroSteemit! :D
author | cha0s0000 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180422t025751680z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-22 02:57:51 | ||||||
last_update | 2018-04-22 02:57:51 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2018-04-29 02:57: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 | 144 | ||||||
author_reputation | 30,983,518,016,225 | ||||||
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,408,735 | ||||||
net_rshares | 0 |
:D I wish I can test yours but I can't hehehe. Btw, thank you so much. I also see that u constantly post about yours which is great! I will be texting you tomorrow to ask how did you implemented the comments in a correct way because I am still trying to figure this out heheeh
author | jaysermendez |
---|---|
permlink | re-cha0s0000-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180422t101656840z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-22 10:16:57 |
last_update | 2018-04-22 10:16:57 |
depth | 2 |
children | 1 |
last_payout | 2018-04-29 10:16:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 276 |
author_reputation | 20,790,862,502,465 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,460,375 |
net_rshares | 0 |
actually you can test mine by downloading the wechat firstly. the part of showing comments has taken lots of my time .tbh i have thought several ways but the current way is the fittest for my app because of the wechat restriction.
author | cha0s0000 |
---|---|
permlink | re-jaysermendez-re-cha0s0000-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180422t103004258z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-22 10:30:06 |
last_update | 2018-04-22 10:30:06 |
depth | 3 |
children | 0 |
last_payout | 2018-04-29 10:30: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 | 233 |
author_reputation | 30,983,518,016,225 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,461,839 |
net_rshares | 0 |
Really cool π looking app. Love to see the iOS soon. Do you need tester? Let me know.
author | detlev |
---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180425t150628158z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-25 15:06:30 |
last_update | 2018-04-25 15:06:30 |
depth | 1 |
children | 1 |
last_payout | 2018-05-02 15:06:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 1,709,643,022,571,308 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,082,328 |
net_rshares | 0 |
For sure :D Feel free to go around our channel :D https://discord.gg/webyZPB
author | jaysermendez |
---|---|
permlink | re-detlev-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180426t024500757z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://discord.gg/webyZPB"],"app":"steemit/0.1"} |
created | 2018-04-26 02:45:00 |
last_update | 2018-04-26 02:45:00 |
depth | 2 |
children | 0 |
last_payout | 2018-05-03 02:45:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 20,790,862,502,465 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,173,952 |
net_rshares | 0 |
looks good!
author | jm90mm |
---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180424t202600924z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-24 20:26:00 |
last_update | 2018-04-24 20:26:00 |
depth | 1 |
children | 1 |
last_payout | 2018-05-01 20:26:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 6,703,389,694,751 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,931,649 |
net_rshares | 0 |
thanks man!
author | jaysermendez |
---|---|
permlink | re-jm90mm-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180424t203100894z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-24 20:31:00 |
last_update | 2018-04-24 20:31:00 |
depth | 2 |
children | 0 |
last_payout | 2018-05-01 20:31:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 20,790,862,502,465 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,932,323 |
net_rshares | 0 |
The voting value slider needs to include how much the upvote is worth.
author | mikefromtheuk |
---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180421t210553218z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-21 21:05:54 |
last_update | 2018-04-21 21:05:54 |
depth | 1 |
children | 1 |
last_payout | 2018-04-28 21:05: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 | 71 |
author_reputation | 3,291,559,603,803 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,373,262 |
net_rshares | 846,893,209 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hsynterkr | 0 | 846,893,209 | 25% |
I will take this in mind for my other iteration of modifications in the app :D Thank you.
author | jaysermendez |
---|---|
permlink | re-mikefromtheuk-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180421t210855589z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-21 21:08:57 |
last_update | 2018-04-21 21:08:57 |
depth | 2 |
children | 0 |
last_payout | 2018-04-28 21:08:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 20,790,862,502,465 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,373,552 |
net_rshares | 1,050,445,990 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mikefromtheuk | 0 | 1,050,445,990 | 100% |
a very useful post, this is very necessary for me, thanks for the conversation
author | rungkhom |
---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180421t235525474z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-21 23:55:33 |
last_update | 2018-04-21 23:55:33 |
depth | 1 |
children | 2 |
last_payout | 2018-04-28 23:55: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 | 78 |
author_reputation | 51,681,028,566 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,390,213 |
net_rshares | 0 |
a very useful comment, this is very necessary for me, thanks for the comment hahahaha >Can you explain that why this post is very necessary for you? :D
author | hsynterkr |
---|---|
permlink | re-rungkhom-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180422t005324781z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-22 00:53:24 |
last_update | 2018-04-22 00:53:24 |
depth | 2 |
children | 1 |
last_payout | 2018-04-29 00:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 152 |
author_reputation | 12,645,130,948,582 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,395,890 |
net_rshares | 1,780,495,052 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
avnigenc | 0 | 1,780,495,052 | 100% |
hahahahah I wanted to flag him but I don't want to waste my VP hahahahahah
author | jaysermendez |
---|---|
permlink | re-hsynterkr-re-rungkhom-re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180422t013138189z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-22 01:31:39 |
last_update | 2018-04-22 01:31:39 |
depth | 3 |
children | 0 |
last_payout | 2018-04-29 01:31:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 20,790,862,502,465 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,399,552 |
net_rshares | 0 |
excellent post friend. I follow you
author | soykare95 |
---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180424t130050172z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-24 13:05:30 |
last_update | 2018-04-24 13:05:30 |
depth | 1 |
children | 0 |
last_payout | 2018-05-01 13:05:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 67,881,998,733 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,865,571 |
net_rshares | 0 |
<center>https://steemitimages.com/200x200/https://s-media-cache-ak0.pinimg.com/originals/81/28/3c/81283c6aed7bdb5b9f8ad73b8ce62c2f.jpg</center> --- <center>Hello @jaysermendez , Congratulations β . Your content began to appear in the hot section. I am the information account of "SteemBotTracker" site. </center> --- <center> Your Informations Total SBD: 0 Total STEEM: 499.955 </center> --- <center> I recommend to increase this; You can make "Resteem" and advertise to the followers of the whale accounts. "Resteem Bot" for you; β The most profitable Resteem Whale @byresteem has 25.500 Followers + 7000 Sp + Upvote with min +55 accounts. </center> --- <center> You can purchase "upvote" by bid bots. "Upvote Bot" β The most profitable whale in the last round. @rocky1 </center> --- <center> I'm taking this message once. You need to use the #steembottrackerr tag for more information. Those who "upvote" this interpretation will be awarded a "UpVote" prize of 100 Sbd per week per person. I am a bot, I can not answer the comment. I hope I could help. Good luck. Sorry if I disturbed you. </center>
author | steembottrackerr |
---|---|
permlink | 20180426t205942499z |
category | utopian-io |
json_metadata | {"tags":["advice"],"app":"steemjs/test"} |
created | 2018-04-26 20:59:45 |
last_update | 2018-04-26 20:59:45 |
depth | 1 |
children | 0 |
last_payout | 2018-05-03 20:59:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,132 |
author_reputation | -1,493,369,324,060 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,328,540 |
net_rshares | 0 |
**Congratulations!** Your post has been selected as a daily Steemit truffle! It is listed on **rank 22** of all contributions awarded today. You can find the [TOP DAILY TRUFFLE PICKS HERE.](https://steemit.com/@trufflepig/daily-truffle-picks-2018-04-22) I upvoted your contribution because to my mind your post is at least **23 SBD** worth and should receive **55 votes**. It's now up to the lovely Steemit community to make this come true. I am `TrufflePig`, an Artificial Intelligence Bot that helps minnows and content curators using Machine Learning. If you are curious how I select content, [you can find an explanation here!](https://steemit.com/steemit/@trufflepig/weekly-truffle-updates-2018-16) Have a nice day and sincerely yours,  *`TrufflePig`*
author | trufflepig |
---|---|
permlink | re-steemia-bug-fixes-features-added-suggestions-added-20180422t181503 |
category | utopian-io |
json_metadata | "" |
created | 2018-04-22 18:15:12 |
last_update | 2018-04-22 18:15:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-29 18:15:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 884 |
author_reputation | 21,266,577,867,113 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,529,874 |
net_rshares | 0 |
### Hey @jaysermendez! Thank you for the great work you've done! We're already looking forward to your next contribution! #### Fully Decentralized Rewards We hope you will take the time to share your expertise and knowledge by rating contributions made by others on Utopian.io to help us reward the best contributions together. #### Utopian Witness! <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a> We are made of developers, system administrators, entrepreneurs, artists, content creators, thinkers. We embrace every nationality, mindset and belief. **Want to chat? Join us on Discord https://discord.me/utopian-io**
author | utopian-io |
---|---|
permlink | re-jaysermendez-steemia-bug-fixes-features-added-suggestions-added-20180423t210112396z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-04-23 21:01:12 |
last_update | 2018-04-23 21:01:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-30 21:01:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 692 |
author_reputation | 152,955,367,999,756 |
root_title | "[Steemia] - Bug fixes, features added, suggestions added π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,746,345 |
net_rshares | 6,299,829,186 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jaysermendez | 0 | 6,299,829,186 | 100% |