<div class="pull-right"> <img src="https://cdn.utopian.io/posts/b126aabf885b25580aefc32b21d192add0c5image.png" alt="the-magic-frog-src-cc-0-from-pixabay-remixed)" /> </div> #### Project Background [The Magic Story Machine](https://github.com/mktcode/the-magic-story-machine) is an open source bot for the Steem blockchain which enables collaborative storytelling. Prospective contributors suggest additions to the story by commenting on a daily post. According to the mechanics of the storytelling game, which creator @mkt describes more fully [in this post](https://steemit.com/utopian-io/@mkt/the-magic-frog-collaborative-storytelling-bot-and-website), additions to the story are determined by community upvotes (i.e curation). Contributions that are chosen for inclusion in the story are rewarded with a share from a 'pot' of cryptocurrency generated by the game's daily posts. Of course, all story suggestions โ whether daily winner or not โ can earn Steem for the poster. #### Components This suggestion expands the validation and user feedback experience of the bot. This would involve modifying mainly: `https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js` #### Proposal By design users propose each addition to the running story by making a comment to the main daily post. This comment must begin with a blockquote (denoted in Markdown by the character `>` followed by a space): ``` > Write here what you want to append to the story, in one line. Leave a space after the > and use no more than 250 characters. ``` As noted in the template above there is currently a limit of 250 characters for each submission. If the user submits his suggestion via [a website specifically designed for the contest](http://the-magic-frog.com/) it will be checked to enforce this limit. In contrast submissions made by another Steem blockchain platform โ Steemit, for example โ are not validated this way. It is easy for a new or very enthusiastic contributor to run over the limit. Indeed this author did so on his own first submission. After determining if a comment begins with a blockquote it can be further validated as to whether it is shorter than 250 characters. If the submission is too long the bot can post feedback stating so, as well as recommending use of the game website to avoid the mistake in the future. #### Mockups / Examples Here is a sample implementation to illustrate the validation in pseudocode, assuming an events framework similar to [SteemBot](https://github.com/tdreid/steem-bot) and a utility library like [Lodash](https://lodash.com/docs/4.17.10#startsWith): ```javascript bot.onComment((comment, responder) => { if (_.startsWith(comment.body, '> ') && comment.body.length > 250) { responder.comment( 'You exceeded the character limit of 250.' + 'Please use http://the-magic-frog.com/' + 'to avoid this common mistake.' ); } }); ``` Here is how the process might appear to the user:  *** > Image [src](https://pixabay.com/en/amphibian-animal-1298147/) CC-0 from Pixabay (remixed) <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@tdre/the-magic-story-machine-automatically-check-and-warn-about-submission-length">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | tdre | ||||||
---|---|---|---|---|---|---|---|
permlink | the-magic-story-machine-automatically-check-and-warn-about-submission-length | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":129508834,"name":"the-magic-frog","full_name":"mktcode/the-magic-frog","html_url":"https://github.com/mktcode/the-magic-frog","fork":false,"owner":{"login":"mktcode"}},"pullRequests":[],"platform":"github","type":"ideas","tags":["utopian-io","story","funny","crypto","new"],"users":["mkt","tdre"],"links":["https://github.com/mktcode/the-magic-story-machine","https://steemit.com/utopian-io/@mkt/the-magic-frog-collaborative-storytelling-bot-and-website","http://the-magic-frog.com/","https://github.com/tdreid/steem-bot","https://lodash.com/docs/4.17.10#startsWith","https://cdn.utopian.io/posts/964ae5befad800c5786b09f8f8030bab1d6bimage.png","https://pixabay.com/en/amphibian-animal-1298147/"],"image":["https://cdn.utopian.io/posts/964ae5befad800c5786b09f8f8030bab1d6bimage.png"],"moderator":{"account":"syedumair","time":"2018-04-28T07:21:52.762Z","pending":false,"reviewed":true,"flagged":false},"questions":null,"score":null,"total_influence":null,"staff_pick":null,"staff_pick_by":null,"config":{"questions":[{"question":"Is the suggested feature commonly seen in other similar projects?","question_id":"ideas-1","answers":[{"answer":"No, itโs unique or very rare.","answer_id":"ideas-1-a-1","value":10},{"answer":"Yes, but itโs a feature of high importance for this kind of project.","answer_id":"ideas-1-a-2","value":9},{"answer":"It's common, but it will have some measurable positive impact on the user experience.","answer_id":"ideas-1-a-3","value":3},{"answer":"Itโs extremely common and not majorly impactful.","answer_id":"ideas-1-a-4","value":0}]},{"question":"Does this suggestion match the goals and/or roadmap of the project?","question_id":"ideas-2","answers":[{"answer":"Yes, itโs closely related to the main goals of the project.","answer_id":"ideas-2-a-1","value":15},{"answer":"It is related, but does not match the main goal and purpose of the project.","answer_id":"ideas-2-a-2","value":10.5},{"answer":"It is loosely related to one of the goals of the project.","answer_id":"ideas-2-a-3","value":6},{"answer":"It is not related to the project goals at all.","answer_id":"ideas-2-a-4","value":0}]},{"question":"Is the proposal realistic?","question_id":"ideas-3","answers":[{"answer":"Yes, it can definitely be achieved and is important enough to warrant the developers attention and time.","answer_id":"ideas-3-a-1","value":10},{"answer":"Yes, it can definitely be achieved, but is not likely to get noticed by the development team immediately.","answer_id":"ideas-3-a-2","value":8},{"answer":"It can be achieved theoretically, but no open source solutions to this problem have been suggested previously.","answer_id":"ideas-3-a-3","value":4},{"answer":"No, itโs impossible to achieve.","answer_id":"ideas-3-a-4","value":0}]},{"question":"What is the potential impact of the change proposed on the usability of the project?","question_id":"ideas-4","answers":[{"answer":"It will have a major positive impact on the project for both the project owner and end user.","answer_id":"ideas-4-a-1","value":15},{"answer":"It will have a significant impact on the project for end users.","answer_id":"ideas-4-a-2","value":12},{"answer":"It will change how users utilize the project by a minor margin.","answer_id":"ideas-4-a-3","value":6},{"answer":"It will bring little to no change","answer_id":"ideas-4-a-4","value":0}]},{"question":"Has the contributor proposed a possible solution to implement the suggestion?","question_id":"ideas-5","answers":[{"answer":"Yes, the possible solution is described in great detail and makes a lot of sense.","answer_id":"ideas-5-a-1","value":5},{"answer":"Yes, but the possible solution was not described in sufficient detail.","answer_id":"ideas-5-a-2","value":4},{"answer":"No, but the implementation is self explanatory.","answer_id":"ideas-5-a-3","value":4},{"answer":"No, thereโs no proposed solution though one is clearly necessary.","answer_id":"ideas-5-a-4","value":0}]},{"question":"Is the suggestion original in nature, or were similar suggestions submitted to Utopian in the past?","question_id":"ideas-6","answers":[{"answer":"The suggestion is original and obviously unique.","answer_id":"ideas-6-a-1","value":10},{"answer":"This kind of suggestion is fairly uncommon on Utopian.","answer_id":"ideas-6-a-2","value":8},{"answer":"This is a common suggestion for other projects.","answer_id":"ideas-6-a-3","value":2},{"answer":"The suggestion is clearly not well thought-out and holds no actual value.","answer_id":"ideas-6-a-4","value":0}]},{"question":"Has the user provided any mockups (illustrations) of potential suggestion implementation appearance?","question_id":"ideas-7","answers":[{"answer":"Yes, and theyโre of excellent quality.","answer_id":"ideas-7-a-1","value":5},{"answer":"No, but the mockups are inapplicable for this suggestion.","answer_id":"ideas-7-a-2","value":5},{"answer":"Yes, but the quality of the mockups is poor.","answer_id":"ideas-7-a-3","value":2},{"answer":"No, there are no mockups included even though they are needed.","answer_id":"ideas-7-a-4","value":0}]},{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"c-1","answers":[{"answer":"The post is of very high quality.","answer_id":"c-1-a-1","value":10},{"answer":"The post is of decent quality, but not spectacular in any way.","answer_id":"c-1-a-2","value":7},{"answer":"The post is poorly written and/or formatted, but readable.","answer_id":"c-1-a-3","value":3},{"answer":"The post is really hard to read and the content is barely understandable.","answer_id":"c-1-a-4","value":0}]},{"question":"How would you rate the overall value of this contribution on the open source community and ecosystem?","question_id":"c-2","answers":[{"answer":"This contribution brings great and impactful value, and can be used for applications outside the specific project.","answer_id":"c-2-a-1","value":20},{"answer":"This contribution adds significant value to the open source community and ecosystem, or is of critical importance to the specific project.","answer_id":"c-2-a-2","value":16},{"answer":"This contribution adds some value to the open source community and ecosystem or is only valuable to the specific project.","answer_id":"c-2-a-3","value":8},{"answer":"This contribution adds no value to the open source community and ecosystem or the specific project.","answer_id":"c-2-a-4","value":0}]}]}}" | ||||||
created | 2018-04-28 01:06:18 | ||||||
last_update | 2018-04-28 07:21:51 | ||||||
depth | 0 | ||||||
children | 9 | ||||||
last_payout | 2018-05-05 01:06:18 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 26.570 HBD | ||||||
curator_payout_value | 10.029 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 3,380 | ||||||
author_reputation | 28,296,055,808,693 | ||||||
root_title | "The Magic Story Machine: Automatically check and warn about submission length" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 52,549,292 | ||||||
net_rshares | 6,557,058,883,085 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ebargains | 0 | 384,856,414,595 | 19.24% | ||
anomaly | 0 | 231,218,753 | 1% | ||
viktork | 0 | 84,973,240 | 100% | ||
mkt | 0 | 32,080,934,721 | 100% | ||
minnowsupport | 0 | 24,770,717,553 | 0.5% | ||
cifer | 0 | 4,918,233,536 | 80% | ||
utopian-io | 0 | 5,939,540,506,730 | 3.65% | ||
greenorange | 0 | 609,471,115 | 100% | ||
bloolg | 0 | 70,631,560 | 100% | ||
tdre | 0 | 45,414,054,121 | 100% | ||
thinkingmind | 0 | 3,495,579,737 | 100% | ||
jjay | 0 | 681,546,765 | 100% | ||
thetroublenotes | 0 | 57,694,304 | 0.2% | ||
lanzjoseg | 0 | 3,387,586,219 | 25% | ||
holger80 | 0 | 106,458,805,077 | 50% | ||
josephace135 | 0 | 10,155,631,314 | 100% | ||
ryuna.siege | 0 | 244,883,745 | 100% |
You got a 19.24% Upvote and Resteem from @ebargains, as well as upvotes from our curation trail followers! If you are looking to earn a passive no hassle return on your Steem Power, delegate your SP to @ebargains by clicking on one of the ready to delegate links: [50SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=50%20SP) | [100SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=100%20SP) | [250SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=250%20SP) | [500SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=500%20SP) | [1000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=1000%20SP) | [5000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=5000%20SP) | [Custom Amount](https://steembottracker.com/delegation.html?delegatee=ebargains) You will earn 80% of the voting service's earnings based on your delegated SP's prorated share of the service's SP pool daily! That is up to 38.5% APR! You can also undelegate at anytime. We are also a very profitable curation trail leader on https://steemauto.com/. Follow @ebargains today and earn more on curation rewards!
author | ebargains |
---|---|
permlink | re-tdre-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180428t135845308z |
category | utopian-io |
json_metadata | {"app":"auto-voter/1.0.0"} |
created | 2018-04-28 13:58:45 |
last_update | 2018-04-28 13:58:45 |
depth | 1 |
children | 0 |
last_payout | 2018-05-05 13:58:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.518 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,385 |
author_reputation | 46,529,372,336,823 |
root_title | "The Magic Story Machine: Automatically check and warn about submission length" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,648,103 |
net_rshares | 238,649,262,193 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mdosev | 0 | 2,638,336,485 | 34% | ||
mariostucablog | 0 | 14,036,024,919 | 71% | ||
bhoa | 0 | 6,068,586,002 | 100% | ||
steem.services | 0 | 212,716,469,618 | 15% | ||
mrshev | 0 | 3,189,845,169 | 17% |
Wow, this would be great to do in Spanish. It hurts that my English is limited to the translator, but being able to do it in Spanish will be super great.
author | lanzjoseg |
---|---|
permlink | re-tdre-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180428t191958687z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-28 18:46:54 |
last_update | 2018-04-28 18:46:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-05 18:46:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 864,910,178,548,486 |
root_title | "The Magic Story Machine: Automatically check and warn about submission length" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,692,887 |
net_rshares | 4,635,195,187 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tdre | 0 | 4,635,195,187 | 10% |
<p>Congratulations! This post has been upvoted from the communal account, @minnowsupport, by tdre from the Minnow Support Project. It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, someguy123, neoxian, followbtcnews, and netuoso. The goal is to help Steemit grow by supporting Minnows. Please find us at the <a href="https://discord.gg/HYj4yvw"> Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>. It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p> <p>If you would like to delegate to the Minnow Support Project you can do so by clicking on the following links: <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=102530.639667%20VESTS">50SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=205303.639667%20VESTS">100SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=514303.639667%20VESTS">250SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=1025303.639667%20VESTS">500SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=2053030.639667%20VESTS">1000SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=10253030.639667%20VESTS">5000SP</a>. <br><strong>Be sure to leave at least 50SP undelegated on your account.</strong></p>
author | minnowsupport |
---|---|
permlink | re-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180428t035250z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.23"}" |
created | 2018-04-28 03:52:51 |
last_update | 2018-04-28 03:52:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-05 03:52: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 | 1,700 |
author_reputation | 148,902,805,319,183 |
root_title | "The Magic Story Machine: Automatically check and warn about submission length" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,569,145 |
net_rshares | 0 |
Thanks for the suggestion! This (and more) is absolutely planned! I'm just a lazy programmer... so it will take some time! ;)
author | mkt |
---|---|
permlink | re-tdre-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180428t142258230z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-28 14:23:00 |
last_update | 2018-04-28 14:23:00 |
depth | 1 |
children | 2 |
last_payout | 2018-05-05 14:23:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.212 HBD |
curator_payout_value | 0.071 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 125 |
author_reputation | 45,513,283,519,678 |
root_title | "The Magic Story Machine: Automatically check and warn about submission length" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,652,175 |
net_rshares | 44,961,393,319 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tdre | 0 | 44,961,393,319 | 100% |
Once upon a time there was a lazy programmer... ;D
author | tdre |
---|---|
permlink | re-mkt-re-tdre-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180428t174602233z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-28 17:46:03 |
last_update | 2018-04-28 17:46:03 |
depth | 2 |
children | 1 |
last_payout | 2018-05-05 17:46:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 28,296,055,808,693 |
root_title | "The Magic Story Machine: Automatically check and warn about submission length" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,684,472 |
net_rshares | 0 |
That's a whole different story.... but yeah... it starts with that sentence! xD
author | mkt |
---|---|
permlink | re-tdre-re-mkt-re-tdre-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180428t224231890z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-28 22:42:33 |
last_update | 2018-04-28 22:42:33 |
depth | 3 |
children | 0 |
last_payout | 2018-05-05 22:42: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 | 79 |
author_reputation | 45,513,283,519,678 |
root_title | "The Magic Story Machine: Automatically check and warn about submission length" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,720,539 |
net_rshares | 0 |
Thank you. Your contribution has been approved. ---------------------------------------------------------------------- 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 | syedumair | ||||||
---|---|---|---|---|---|---|---|
permlink | re-tdre-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180428t072835679z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-28 07:28:39 | ||||||
last_update | 2018-04-28 07:28:39 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-05-05 07:28:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.180 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 290 | ||||||
author_reputation | 217,827,463,642,367 | ||||||
root_title | "The Magic Story Machine: Automatically check and warn about submission length" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 52,595,685 | ||||||
net_rshares | 43,570,834,763 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tdre | 0 | 43,570,834,763 | 97% |
Cool, I appreciate you taking the time to moderate and comment @syedumair
author | tdre |
---|---|
permlink | re-syedumair-re-tdre-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180428t105507989z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["syedumair"],"app":"steemit/0.1"} |
created | 2018-04-28 10:55:09 |
last_update | 2018-04-28 10:55:09 |
depth | 2 |
children | 0 |
last_payout | 2018-05-05 10:55:09 |
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 | 73 |
author_reputation | 28,296,055,808,693 |
root_title | "The Magic Story Machine: Automatically check and warn about submission length" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,622,152 |
net_rshares | 0 |
### Hey @tdre! 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-tdre-the-magic-story-machine-automatically-check-and-warn-about-submission-length-20180430t020146194z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-04-30 02:01:48 |
last_update | 2018-04-30 02:01:48 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 02:01:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.208 HBD |
curator_payout_value | 0.069 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 684 |
author_reputation | 152,955,367,999,756 |
root_title | "The Magic Story Machine: Automatically check and warn about submission length" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,937,288 |
net_rshares | 45,017,300,281 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tdre | 0 | 45,017,300,281 | 100% |