 I'm going to try to help you, contributors of the development section, to get better rewards for your dedicaded work, your projects. Please note that all I'm going to say **is my point of view and other moderators may not agree with me.** I'll try to be as general as possible although I prefer reviewing javascript (Node and React) contributions so the examples I'll provide will mostly be for javascript. I sometimes review .NET and Java but not so much. # Utopian Guidelines # First let's take a look at the [utopian guidelines](https://join.utopian.io/guidelines/).  > Submissions should include a comprehensible commit history. Projects or updates submitted in a single commit will not be considered for potential reward. - Here the easiest way for us moderators (well for me at least) to review your code is if you **use Pull Requests.** 1 feature = 1 pull request = multiple organized commits. We can quickly see all the modifications that are in the contribution. It's also the way I'm used to develop. I was a mentor for a while at [OpenClassrooms](https://openclassrooms.com) and part of the course was to learn how to use a Pull Request. The use of PRs was mandatory in all the courses projects. > Inclusion of outdated or low quality code may lead to a lower score of your contribution, thus reducing your chances of receiving a reward. - Here this is quite simple, try to have updated packages and follow best practices of the language of your choosing. > Generated code or other results of automated processes will not be considered for potential reward. - **Try to separate the generated code from your PR, commits and contribution**. For example if you're using `vue-cli` create a Pull Request, init your project, commit and merge. But don't add this Pull Request to the contribution. It looks like you're trying to hide your real work and try to fish for a high reward by saying '*Oh look at all the code I have done*'. This puts me in a bad mood and I don't want to be nice anymore. > Submitted contributions should offer unique value. Redundant projects, trivial code snippets, example code or simple templates will not be considered for potential reward. - Don't create contribution that just fix bugs. They must **provide nice additions, features...** Don't reinvent the wheel too, if a project exist in blue don't create the same one in red ;) Projects can also not concern the Steem Blockchain. > To be considered for potential reward, Bug Fixes and New Features should be submitted via Pull Requests. The Pull Request should have been merged within the past 14 days. - Bug fixes are OK only if it's because of a 3rd party libraries. And **correcting 2 bugs isn't enough for a contribution.** You'll just end up with a 0. > Updates on Own Projects may be committed directly, without a Pull Request. To be considered for potential reward, commits should not be older than 14 days. - That's one of a guideline that I don't specially agree with. I'd rather have pull requests and it's a really good habit to have especially when you work in a team. Why code differently because you're a team of one? > Bug Fixes for contributor’s Own Projects will not be considered for potential reward, unless the Bugs were caused by third party dependencies. - We talked about this one already. # The questionnaire The source of absolute truth! This is the tool that will decide the score of your contribution. Let me explain how I choose the answers.  > How would you describe the formatting, language and overall presentation of the post? - For this one I like to **have pictures, code extracts, justification of technical choices. For each new feature it's nice to have a little gif demo when it's possible.** It's also nice to link the first post that present your project because it's not always the same moderator that will do the review. Keep in mind that you're **presenting your work of your open source project to the community not just to an utopian moderator** so you can get a reward. So each contribution should be presented as an article that's pleasant to read. Not just '*Hey I've done some code what is my utopian score?*' . [Read this contribution](https://steemit.com/utopian-io/@jakipatryk/steeditor-development-update-communities-new-core-and-new-editor-1532182937272). It's a good example of how to achieve the highest score for this question. > How would you rate the impact and significance of the contribution to the project and/or open source ecosystem in terms of uniqueness, usefulness and potential future applications? - This one is highly subjective. If it's a few fixes, cosmetic addons I won't give a high score. But if there are multiple **new core features** added to the project I'll give the highest score. > How would you rate the total volume of work invested into this contribution? - Your project is for the open source community, **it's not a daily paid job.** So in my opinion, I won't give a high score for something that could be done in a few hours. But how do I judge the amount of hours? Well I can only do it based on my experience. I've been a developer for 11 years now. I've worked with multiple languages (.NET, Java, PHP, JavaScript, ...) for multiple companies. So I guess the amount of work based on how much time it would take me and then add a little more hours because it wouldn't be fair to junior devs. So if it's one day it's going to be "*shows some work done*", if it's 3 or more I give the highest score. > How would you rate the quality of the code submitted? - Well now we have best practices and IDEs that can automate a few tasks for us. So I'm looking for **design patterns** like MVC, MVVM, ... I'm also looking to the overall aspect of the code. IDEs can now automatically format code when saving. We also have **tools to check our code** or modify it. I'm thinking about [eslint](https://eslint.org/) and [prettier](https://prettier.io/) for example. IDE can also suggest changes. If you're used to write java 1.4, you install java 1.8, IntelliJ will offer tips on how to write code with the new features (streams, ...). The last part are the algorithms, the developer work and here this is more the experience talking. Don't hesitate to take a look at well known, updated projects. There so many ways to write an algorithm and there isn't always a best way to do it. > How would you rate the proficiency and expertise necessary to fix the bug / implement the added feature(s)? - The more complicated a project is the more expertise it requires but if a contribution only concerns adding a lot of HTML templates well you don't need to be an expert to produce code of good quality. Let's take a JavaScript example. If you deal with ReactJS, Redux, RxjS and a database like PostgreSQL or MongoDB and then you add docker, etc. This begins to require a lot of basic knowledge on multiple tech. Or for Java if you have SpringMVC, Spring Security, Maven, Hibernate, you add a little AngularJS and unit tests with JUnit, again this is a wide range of stuff to know. So if your contribution **uses a bit of everything** then you'll get the high score! > How would you rate the accuracy and readability of the commit messages? - Here it's pretty easy to have a high score. Avoid commit messages like "*minor fix, add CSS, add stuffs, oups, adding a lot of features*". Instead don't hesitate to **split your commits into meaningful ones.** Let's say you're adding a whole CRUD feature, your commits could be divided like that: "*Add X packages", "Add API CRUD endpoints", "Add unit tests", "Fix bug for the issue X", "Add CRUD pages*", "*Add jest tests or E2E tests*", "*Fix CSS issue for XXX", "Add responsive to the CRUD pages*" And there you have it. The commit history helps us understand how the developer did his feature. We know what code to expect in each commit. So top score! Here I have a great example: [this contribution](https://steemit.com/utopian-io/@jaysermendez/knacksteem-api-more-security-and-features) and [this pull request](https://github.com/knacksteem/knacksteem-api/pull/11). You can see the clear commit history. > How do you rate the quality of the comments in the code? - This last question has raised a lot of issues. I've see a lot a useless comments. The aim of a comment is to **help to quickly understand a portion of code.** So when I see something like this I get angry. Some comments that I found not useful (sorry guys). [Example 1](https://busy.org/@happyberrysboy/steem-tool-1-1-9-change-design-and-add-user-shortcut-function#@gregory.latinier/re-happyberrysboy-steem-tool-1-1-9-change-design-and-add-user-shortcut-function-20180715t220918694z), [example 2](https://busy.org/@yoghurt/finding-the-most-profitable-users-to-reply-to-on-steemit#@gregory.latinier/re-yoghurt-finding-the-most-profitable-users-to-reply-to-on-steemit-20180715t230730319z) ``` // Get the user profile const profile = await Profile.findOne({ userId }); ``` You should comment the function declaration for example. Here is a random example. ``` /* Process the invoice received. If the invoice is paid ship the product otherwise send an email to the user and back-office @param user application client @param invoice product invoice */ function processInvoice(user, invoice) { } ``` or part of code that is complicated ``` // Explain the content of what it's done because if someone new (or the 6 month later you) read it, it will take a few minutes to understand if (somevar === somestuff) { complicated code } ``` And what if I don't comment anything because my project is easy? Well you'll probably have the lower score but that doesn't mean you won't be picked by the staff and have the maximum reward. # In short - Take your time to write your article, be a salesman and offer everyone (not only the utopian moderators) something nice to read. - Don't post multiple little contributions. The reward increases exponentially so one well written contribution will have a greater score than 3 average ones. - Try it be up to date in the languages you've chosen, read articles on best practices, design patterns, ... - Simplify your job and try to automate some tasks (code format, ...) I hope this little article will help get better rewards and I hope to see exceptional contributions in the future. May be we will have to fight between moderators for the staff picked contribution. Who knows? Good luck everyone!
author | gregory.latinier |
---|---|
permlink | how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions |
category | utopian-io |
json_metadata | {"tags":["utopian-io","tutorial","development"],"image":["https://cdn.steemitimages.com/DQmV81kzJ9kco8uVxo8GCDBG5Rq2M2PVoC1ABpw4tG1zRw4/utopian_better_rewards.jpg","https://cdn.steemitimages.com/DQmd9zWCoN62gHHwr7ZPN8ddh2HJ2Z3JniyiYty9m2upk4D/utopian-guidelines.jpg","https://cdn.steemitimages.com/DQmRRmuxpzxPTpBb3o98t2Gac2NuzoBVjsk6gmck4ZBLyg5/utopian-scroll-of-truth.jpg"],"links":["https://join.utopian.io/guidelines/","https://openclassrooms.com","https://steemit.com/utopian-io/@jakipatryk/steeditor-development-update-communities-new-core-and-new-editor-1532182937272","https://eslint.org/","https://prettier.io/","https://steemit.com/utopian-io/@jaysermendez/knacksteem-api-more-security-and-features","https://github.com/knacksteem/knacksteem-api/pull/11","https://busy.org/@happyberrysboy/steem-tool-1-1-9-change-design-and-add-user-shortcut-function#@gregory.latinier/re-happyberrysboy-steem-tool-1-1-9-change-design-and-add-user-shortcut-function-20180715t220918694z","https://busy.org/@yoghurt/finding-the-most-profitable-users-to-reply-to-on-steemit#@gregory.latinier/re-yoghurt-finding-the-most-profitable-users-to-reply-to-on-steemit-20180715t230730319z"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-07-26 21:46:18 |
last_update | 2018-07-29 11:42:30 |
depth | 0 |
children | 33 |
last_payout | 2018-08-02 21:46:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 251.687 HBD |
curator_payout_value | 74.587 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,857 |
author_reputation | 34,278,323,818,021 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 66,086,645 |
net_rshares | 175,131,782,719,371 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gekko | 0 | 4,365,507,119 | 100% | ||
cryptoctopus | 0 | 6,181,811,057,951 | 100% | ||
eric-boucher | 0 | 179,006,108,255 | 50% | ||
grandpere | 0 | 184,015,418,127 | 50% | ||
geoffrey | 0 | 1,808,371,242,838 | 100% | ||
good-karma | 0 | 108,901,622,303 | 1% | ||
fabien | 0 | 1,542,167,811,137 | 100% | ||
dks100 | 0 | 14,249,448,612 | 100% | ||
stevescriber | 0 | 157,548,190 | 50% | ||
anarcho-andrei | 0 | 14,600,299,516 | 30% | ||
cause-no-harm | 0 | 87,678,376 | 50% | ||
wildmanhowling | 0 | 298,440,274 | 50% | ||
the-naked-geek | 0 | 198,138,827 | 50% | ||
whoib | 0 | 2,913,268,163 | 80% | ||
techslut | 0 | 311,270,324,611 | 100% | ||
achiron | 0 | 24,917,306,488 | 100% | ||
hoboway | 0 | 684,970,013 | 50% | ||
pedrovillegas96 | 0 | 4,085,417,605 | 75% | ||
theghost1980 | 0 | 15,817,604,705 | 50% | ||
mendezand | 0 | 535,208,816 | 20% | ||
steemitboard | 0 | 441,746,478 | 1% | ||
ihsan19 | 0 | 961,709,794 | 100% | ||
pbock | 0 | 1,002,708,931 | 10% | ||
ljpaez | 0 | 419,555,971 | 10% | ||
michelios | 0 | 9,740,628,983 | 15% | ||
miniature-tiger | 0 | 95,934,739,006 | 100% | ||
getrichordie | 0 | 4,487,181,867 | 50% | ||
redpill | 0 | 6,720,848,027 | 100% | ||
jacalf | 0 | 837,942,969 | 100% | ||
bargolis | 0 | 758,681,682 | 5% | ||
suerisue | 0 | 84,741,059,830 | 50% | ||
upheaver | 0 | 6,964,938,798 | 50% | ||
mys | 0 | 5,339,031,130 | 5% | ||
jakipatryk | 0 | 56,967,296,248 | 100% | ||
mkt | 0 | 24,386,329,567 | 100% | ||
riteshstark | 0 | 231,405,087 | 50% | ||
malicered | 0 | 83,486,475,629 | 100% | ||
helo | 0 | 22,785,699,740 | 100% | ||
carolynseymour | 0 | 738,057,843 | 50% | ||
twistychips | 0 | 84,665,180 | 5% | ||
smartgeek | 0 | 480,370,053 | 100% | ||
mahdiyari | 0 | 98,394,143,581 | 70% | ||
friesennerz | 0 | 2,612,076,438 | 50% | ||
terz17 | 0 | 2,925,248,821 | 100% | ||
chrispy99 | 0 | 260,328,904 | 1% | ||
cobloc | 0 | 203,900,537 | 5% | ||
jayna | 0 | 5,172,816,468 | 15% | ||
faluthi01 | 0 | 141,471,632 | 10% | ||
knowledges | 0 | 12,171,529,892 | 100% | ||
netuoso | 0 | 216,430,811,841 | 100% | ||
ragepeanut | 0 | 34,314,571,774 | 100% | ||
jbfa | 0 | 111,879,894 | 10% | ||
davidmendel | 0 | 89,663,907,225 | 100% | ||
fandy | 0 | 584,180,952 | 100% | ||
nomad0712 | 0 | 469,857,752 | 100% | ||
codingdefined | 0 | 56,127,735,312 | 100% | ||
appreciator | 0 | 38,814,267,757,966 | 33.73% | ||
themarkymark | 0 | 92,475,521,023 | 100% | ||
hellosusu | 0 | 490,991,857 | 100% | ||
baladod | 0 | 134,370,138 | 22% | ||
tykee | 0 | 6,722,468,982 | 100% | ||
mhel | 0 | 852,226,142 | 20% | ||
stanhopeofficial | 0 | 44,697,234,689 | 100% | ||
jarendesta | 0 | 237,232,841,387 | 50% | ||
colmedwardsphoto | 0 | 5,497,532,537 | 100% | ||
sanderdieryck | 0 | 1,030,806,067 | 50% | ||
duekie | 0 | 2,652,107,219 | 100% | ||
ang14 | 0 | 586,974,706 | 100% | ||
cifer | 0 | 6,627,383,233 | 12% | ||
drewzshots | 0 | 326,423,653 | 100% | ||
odibezeking | 0 | 124,547,106 | 50% | ||
dream.trip | 0 | 176,607,454 | 3% | ||
danielakreher | 0 | 187,883,755 | 30% | ||
viralfever | 0 | 304,977,900 | 50% | ||
wuzupin | 0 | 305,723,576 | 50% | ||
budifatria | 0 | 101,724,458 | 50% | ||
nanwaiwaimyint | 0 | 226,605,348 | 50% | ||
plojslydia | 0 | 910,303,766 | 100% | ||
crokkon | 0 | 28,337,452,613 | 50% | ||
olayemzeecool | 0 | 306,112,010 | 50% | ||
safril21 | 0 | 304,501,275 | 50% | ||
sukro | 0 | 204,895,027 | 50% | ||
kittenpics | 0 | 84,223,821 | 25% | ||
hoxly | 0 | 11,618,436,555 | 30.09% | ||
oscardavid | 0 | 304,546,530 | 50% | ||
ace69 | 0 | 1,558,322,318 | 50% | ||
espoem | 0 | 97,590,525,720 | 100% | ||
iqbal84 | 0 | 278,905,309 | 50% | ||
thatterrioguy | 0 | 5,633,467,384 | 75% | ||
snowstorm231 | 0 | 332,130,663 | 75% | ||
collennes | 0 | 498,928,218 | 100% | ||
andesilesteem | 0 | 407,875,212 | 100% | ||
ygriffiny | 0 | 197,391,469 | 100% | ||
toreko | 0 | 8,469,536,489 | 100% | ||
cryptocommand | 0 | 7,548,850,154 | 50% | ||
ahmadnayan | 0 | 1,110,120,926 | 50% | ||
cmbugua | 0 | 234,748,542 | 50% | ||
pierlave | 0 | 4,093,971,633 | 100% | ||
jrawsthorne | 0 | 8,942,252,805 | 100% | ||
elear | 0 | 7,269,951,341 | 100% | ||
jesusj1 | 0 | 816,686,591 | 50% | ||
isaganicabrales | 0 | 402,252,231 | 50% | ||
zenc | 0 | 287,190,422 | 50% | ||
untaljames | 0 | 1,347,144,935 | 70% | ||
gauttam | 0 | 224,757,971 | 10% | ||
hasim5164 | 0 | 280,941,342 | 50% | ||
fakirafaruk | 0 | 545,282,891 | 100% | ||
normbond | 0 | 608,229,802 | 100% | ||
alcy | 0 | 2,679,105,087 | 50% | ||
bridgetdaniels | 0 | 346,050,537 | 100% | ||
edmundang | 0 | 321,062,917 | 20% | ||
utopian-io | 0 | 120,592,255,107,440 | 80% | ||
mdsaifultop | 0 | 304,793,616 | 50% | ||
favcau | 0 | 41,577,448,376 | 100% | ||
underworld24 | 0 | 298,207,451 | 50% | ||
sayed53 | 0 | 241,356,062 | 50% | ||
advsamadhan | 0 | 198,147,741 | 50% | ||
rvilov | 0 | 4,157,618,887 | 100% | ||
jm90mm | 0 | 5,676,096,638 | 100% | ||
parag | 0 | 240,245,674 | 50% | ||
ayasha | 0 | 1,852,718,045 | 50% | ||
tanialarios | 0 | 91,298,508 | 15% | ||
abrahman5 | 0 | 304,904,490 | 50% | ||
kupi | 0 | 69,748,653 | 100% | ||
zohaib715 | 0 | 427,602,885 | 50% | ||
klizo | 0 | 466,518,345 | 50% | ||
motivatorjoshua | 0 | 1,699,234,820 | 100% | ||
ajayyy | 0 | 5,045,800,285 | 100% | ||
greenorange | 0 | 602,390,219 | 100% | ||
mesafe | 0 | 68,625,352 | 1% | ||
xanderslee | 0 | 7,318,251,325 | 100% | ||
buti95 | 0 | 306,048,921 | 50% | ||
egotheist | 0 | 17,182,466,859 | 100% | ||
esaia.mystic | 0 | 4,854,211,994 | 100% | ||
chullbull | 0 | 302,318,356 | 50% | ||
fabiocola | 0 | 941,612,521 | 100% | ||
spark92 | 0 | 191,469,183 | 50% | ||
paulthebeloved | 0 | 727,775,647 | 50% | ||
hoothoot | 0 | 499,999,008 | 100% | ||
richeros | 0 | 77,844,549 | 2% | ||
handfree42 | 0 | 91,826,451 | 25% | ||
williams-owb | 0 | 975,490,482 | 100% | ||
olivaw | 0 | 10,861,351,445 | 100% | ||
bibekstha75 | 0 | 349,249,547 | 100% | ||
tolustx | 0 | 31,265,177,344 | 100% | ||
sachincool | 0 | 19,537,952,902 | 100% | ||
argentoescribe | 0 | 563,418,026 | 100% | ||
duranc | 0 | 273,501,680 | 100% | ||
senseibabs | 0 | 442,902,710 | 100% | ||
teatime418 | 0 | 563,667,450 | 100% | ||
matiasmenarguez | 0 | 3,349,368,824 | 100% | ||
nellita66 | 0 | 188,224,956 | 50% | ||
goalgetter | 0 | 240,992,317 | 50% | ||
ariffashraff | 0 | 123,230,011 | 50% | ||
amosbastian | 0 | 57,248,768,607 | 100% | ||
kingingodwin | 0 | 608,801,559 | 100% | ||
tijani | 0 | 503,572,078 | 100% | ||
bobsthinking | 0 | 2,299,856,991 | 100% | ||
atare | 0 | 69,494,597 | 10% | ||
thinkingmind | 0 | 3,638,510,212 | 100% | ||
biffybirdcam | 0 | 2,933,063,607 | 25% | ||
thescholarlyowl | 0 | 1,379,203,979 | 50% | ||
udochi | 0 | 431,473,047 | 100% | ||
leslierevales | 0 | 462,457,097 | 50% | ||
oups | 0 | 14,626,061,503 | 100% | ||
thecreatorx | 0 | 495,965,782 | 100% | ||
cathvanlael | 0 | 67,748,469 | 50% | ||
patricklancaster | 0 | 6,551,233,197 | 50% | ||
okekemmichael | 0 | 296,226,732 | 100% | ||
portugalcoin | 0 | 6,173,866,384 | 28% | ||
victoryudofia | 0 | 159,566,656 | 100% | ||
juanersatzman | 0 | 3,557,589,151 | 100% | ||
jayfamous | 0 | 429,869,492 | 100% | ||
pareshnakar | 0 | 448,325,631 | 100% | ||
haseebkhan13 | 0 | 304,190,448 | 50% | ||
gilnambatac | 0 | 863,127,288 | 100% | ||
strings | 0 | 1,060,928,997 | 50% | ||
fher | 0 | 504,794,364 | 100% | ||
bazooka | 0 | 183,052,176 | 30% | ||
theturk | 0 | 126,773,407 | 25% | ||
sargoon | 0 | 8,789,015,438 | 100% | ||
ali14 | 0 | 1,254,858,495 | 100% | ||
greenvago | 0 | 17,947,469,919 | 100% | ||
rionpistorius | 0 | 127,771,561 | 50% | ||
greenpower | 0 | 190,859,799 | 100% | ||
michealkey | 0 | 549,831,219 | 50% | ||
agyapong | 0 | 193,156,204 | 50% | ||
waku | 0 | 530,931,593 | 100% | ||
yadah04 | 0 | 3,077,450,203 | 50% | ||
crypto4euro | 0 | 831,636,167 | 50% | ||
holger80 | 0 | 306,277,926,401 | 88% | ||
rayday | 0 | 420,309,961 | 90% | ||
snowgoat | 0 | 530,551,704 | 100% | ||
saifannur-mzy | 0 | 305,796,895 | 50% | ||
cutemachine | 0 | 24,466,553,475 | 100% | ||
pelephotography | 0 | 716,530,970 | 100% | ||
kaking | 0 | 268,015,896 | 50% | ||
darltasie | 0 | 605,895,962 | 100% | ||
modernmclaire | 0 | 304,519,940 | 50% | ||
carol1990 | 0 | 500,993,307 | 100% | ||
ryl | 0 | 331,187,655 | 50% | ||
oduduokopide | 0 | 305,602,677 | 50% | ||
steemassistant | 0 | 578,458,281 | 100% | ||
squares | 0 | 2,501,765,110 | 100% | ||
gio6 | 0 | 796,858,333 | 50% | ||
used-lessboy | 0 | 225,924,200 | 50% | ||
nwjordan | 0 | 15,252,958,037 | 100% | ||
hmctrasher | 0 | 1,229,098,244 | 30% | ||
robertbira | 0 | 5,475,721,772 | 100% | ||
sheldrick5 | 0 | 2,126,410,996 | 50% | ||
yooerlyn | 0 | 417,322,595 | 80% | ||
freshenstine | 0 | 244,374,928 | 50% | ||
tdogvoid | 0 | 502,632,871 | 100% | ||
bernardalejandro | 0 | 492,353,457 | 100% | ||
kylorenjunior | 0 | 187,602,812 | 100% | ||
roj | 0 | 8,776,920,960 | 100% | ||
iamthenerd | 0 | 7,834,654,255 | 50% | ||
flugschwein | 0 | 21,343,779,023 | 100% | ||
benleemusic | 0 | 15,205,604,896 | 5% | ||
dreamryder007 | 0 | 10,946,278,148 | 5% | ||
fullabeans | 0 | 252,985,768 | 50% | ||
h0rn3t | 0 | 492,333,449 | 100% | ||
mariogiancini | 0 | 457,127,280 | 75% | ||
medical-hall | 0 | 409,761,999 | 70% | ||
metalhero | 0 | 305,576,957 | 50% | ||
sampath94 | 0 | 283,831,535 | 50% | ||
figuringoutsrn | 0 | 555,499,717 | 100% | ||
annamighty | 0 | 237,834,734 | 50% | ||
victorivera | 0 | 628,886,654 | 100% | ||
wrpx | 0 | 755,540,460 | 50% | ||
fai.zul | 0 | 306,037,195 | 50% | ||
frozia | 0 | 303,769,399 | 50% | ||
loolooasuna | 0 | 1,340,880,412 | 50% | ||
choku | 0 | 305,856,081 | 50% | ||
criptokingko | 0 | 164,212,740 | 50% | ||
anyes2013 | 0 | 1,773,117,920 | 50% | ||
steemdragon | 0 | 234,491,292 | 50% | ||
animeshack | 0 | 553,969,396 | 100% | ||
oadissin | 0 | 73,789,125 | 50% | ||
estherekanem | 0 | 502,945,714 | 100% | ||
carloseduardogil | 0 | 183,004,987 | 30% | ||
nickiechua | 0 | 304,169,341 | 50% | ||
luschn | 0 | 43,414,500,376 | 100% | ||
tranghuyen | 0 | 408,928,902 | 50% | ||
zombieslayer | 0 | 255,749,615 | 50% | ||
pejugold | 0 | 111,132,273 | 50% | ||
anam01 | 0 | 109,778,698 | 50% | ||
mchandra | 0 | 1,224,284,615 | 5% | ||
sunshinebear | 0 | 806,492,232 | 50% | ||
zeshanjaved | 0 | 256,155,451 | 50% | ||
gustanak | 0 | 304,310,899 | 50% | ||
azharmaulana | 0 | 232,024,352 | 50% | ||
toyosiartdiy | 0 | 280,201,612 | 50% | ||
dedesuryani | 0 | 145,434,107 | 50% | ||
har5h | 0 | 305,906,346 | 50% | ||
fruitarianism | 0 | 9,582,173,056 | 50% | ||
josecca | 0 | 322,461,056 | 50% | ||
chillingotter | 0 | 1,767,285,216 | 50% | ||
leviathan101 | 0 | 609,155,613 | 100% | ||
oguylmz | 0 | 305,799,006 | 50% | ||
hobish | 0 | 182,512,326 | 30% | ||
novabluegoji | 0 | 305,743,956 | 50% | ||
nonsqtr | 0 | 504,643,381 | 50% | ||
glorimar | 0 | 197,652,900 | 50% | ||
bittrex12 | 0 | 199,646,033 | 50% | ||
polarbeats | 0 | 62,818,299 | 5% | ||
crispycoinboys | 0 | 378,200,987 | 5% | ||
carloniere | 0 | 512,221,097 | 100% | ||
muzzlealem | 0 | 121,680,501 | 20% | ||
mujiarreza | 0 | 283,688,257 | 50% | ||
mrgranville | 0 | 584,336,383 | 100% | ||
khairulfahmi92 | 0 | 481,189,449 | 100% | ||
asqalan | 0 | 304,990,614 | 50% | ||
dixiesilverminer | 0 | 1,516,626,359 | 50% | ||
hendraman | 0 | 115,168,921 | 50% | ||
moenawar | 0 | 8,200,941,162 | 100% | ||
alftheboss | 0 | 350,112,460 | 100% | ||
nazars | 0 | 588,135,230 | 100% | ||
vik.anatolich | 0 | 512,010,699 | 100% | ||
devangbuch | 0 | 305,241,399 | 50% | ||
harris2017 | 0 | 305,177,443 | 50% | ||
effofex | 0 | 0 | 100% | ||
genoner | 0 | 1,844,690,016 | 95% | ||
muammarnst | 0 | 304,246,994 | 50% | ||
wirdayulahya | 0 | 219,014,792 | 50% | ||
neilrichmond | 0 | 261,594,229 | 50% | ||
genievot | 0 | 0 | 100% | ||
pushpo | 0 | 543,957,168 | 100% | ||
hepeng.chn | 0 | 73,686,188 | 50% | ||
chachikho123 | 0 | 284,024,192 | 50% | ||
ayoade96 | 0 | 178,859,279 | 50% | ||
lartist-zen | 0 | 231,442,391 | 10% | ||
gifty-e | 0 | 164,218,562 | 50% | ||
steemaniax | 0 | 189,111,548 | 50% | ||
barutundefteri | 0 | 305,915,619 | 50% | ||
capt.kili | 0 | 579,864,699 | 95% | ||
adamdo | 0 | 3,398,207,938 | 100% | ||
agrestic | 0 | 506,793,041 | 50% | ||
jarosalawszafran | 0 | 566,536,199 | 20% | ||
hoscker | 0 | 122,263,312 | 20% | ||
bgmuna | 0 | 240,867,363 | 50% | ||
bravofer | 0 | 304,751,520 | 50% | ||
ari16 | 0 | 1,227,710,013 | 50% | ||
josedelacruz | 0 | 2,794,242,381 | 100% | ||
bloghumberto | 0 | 304,553,445 | 50% | ||
eadghe | 0 | 590,078,865 | 100% | ||
basenrique | 0 | 598,686,511 | 100% | ||
sasyi32 | 0 | 418,280,124 | 100% | ||
liewps | 0 | 265,851,953 | 50% | ||
mbahtutorial | 0 | 304,577,806 | 50% | ||
julialee66 | 0 | 126,647,690 | 50% | ||
magatha | 0 | 504,042,274 | 100% | ||
kelvo | 0 | 182,866,571 | 30% | ||
trustyourpath | 0 | 304,923,047 | 50% | ||
moserich | 0 | 13,006,065,001 | 100% | ||
zay-arasi | 0 | 230,008,904 | 50% | ||
kevinwalton | 0 | 599,630,993 | 100% | ||
herdi.steemit | 0 | 304,545,535 | 50% | ||
wealth4good | 0 | 295,757,638 | 5% | ||
kaestel | 0 | 238,666,715 | 50% | ||
samantha16 | 0 | 305,615,788 | 50% | ||
jahidul74 | 0 | 305,958,212 | 50% | ||
mdeyasin | 0 | 304,100,797 | 50% | ||
thomaskatan | 0 | 1,244,812,932 | 70% | ||
rechellomataro | 0 | 283,761,930 | 50% | ||
alexverge | 0 | 610,996,572 | 100% | ||
blogyourlife | 0 | 305,022,547 | 50% | ||
k4v2n | 0 | 304,214,846 | 50% | ||
mellissamartz | 0 | 88,630,302 | 15% | ||
irelandscape | 0 | 12,011,514,454 | 100% | ||
anime.lovers | 0 | 304,325,196 | 50% | ||
jacobzeema | 0 | 270,853,431 | 50% | ||
realredimi2 | 0 | 304,227,756 | 50% | ||
youraverageguy | 0 | 683,576,776 | 50% | ||
insaallah99 | 0 | 247,175,736 | 50% | ||
ercu | 0 | 47,056,627,068 | 100% | ||
altcoinfantasy | 0 | 176,913,351 | 10% | ||
benkweller | 0 | 17,010,261,151 | 10% | ||
vampirgarfield | 0 | 68,581,411 | 100% | ||
geezyweezy | 0 | 587,527,312 | 100% | ||
oliens | 0 | 304,790,433 | 50% | ||
etaletai | 0 | 745,205,186 | 50% | ||
moncia90 | 0 | 17,629,838,297 | 100% | ||
egheprincez | 0 | 304,180,978 | 50% | ||
achrafo | 0 | 503,132,421 | 50% | ||
dubbio | 0 | 304,099,200 | 50% | ||
mdrost | 0 | 609,660,567 | 100% | ||
techsfair | 0 | 195,802,896 | 50% | ||
coingump | 0 | 305,273,435 | 50% | ||
bumut | 0 | 283,511,240 | 50% | ||
winkandwoo | 0 | 304,348,541 | 50% | ||
jsolon | 0 | 304,343,176 | 50% | ||
vigna | 0 | 1,752,073,147 | 5% | ||
marcuz | 0 | 2,916,932,373 | 50% | ||
bitmy | 0 | 89,160,029 | 30% | ||
abbyrich | 0 | 61,191,356 | 10% | ||
izzymiyake | 0 | 305,393,644 | 50% | ||
jhonastime | 0 | 498,030,948 | 100% | ||
sonidourbanobers | 0 | 304,684,079 | 50% | ||
omegakane | 0 | 317,723,104 | 50% | ||
gpwebers | 0 | 304,661,399 | 50% | ||
hakan1988 | 0 | 130,856,348 | 25% | ||
morin89 | 0 | 228,176,863 | 50% | ||
mingolete12 | 0 | 404,829,264 | 100% | ||
purelove | 0 | 152,749,176 | 35% | ||
ahsanabdullah | 0 | 286,164,658 | 50% | ||
djarumsuper | 0 | 474,839,799 | 100% | ||
syawalkoki | 0 | 189,906,850 | 50% | ||
halim08 | 0 | 304,096,110 | 50% | ||
spbid | 0 | 60,853,441 | 10% | ||
mittalamit284 | 0 | 280,259,746 | 50% | ||
alejandro99 | 0 | 261,460,945 | 50% | ||
milayosawa | 0 | 233,887,056 | 30% | ||
yisusmc | 0 | 91,418,378 | 15% | ||
marzuki-r | 0 | 305,889,582 | 50% | ||
vellotinna | 0 | 305,953,977 | 50% | ||
qaiserali | 0 | 304,166,417 | 50% | ||
loveisgood | 0 | 225,888,360 | 50% | ||
anomt | 0 | 1,046,677,919 | 100% | ||
easypay | 0 | 61,234,268 | 50% | ||
shukru | 0 | 101,873,786 | 50% | ||
gmstacy | 0 | 262,856,344 | 50% | ||
midesignature | 0 | 91,271,728 | 20% | ||
bdshelu | 0 | 713,584,121 | 100% | ||
femseen | 0 | 247,819,284 | 50% | ||
tysir | 0 | 304,775,920 | 50% | ||
nazmul79 | 0 | 231,220,488 | 50% | ||
richardgreen | 0 | 1,232,061,158 | 50% | ||
laura97 | 0 | 121,846,994 | 20% | ||
jacksondkk | 0 | 304,746,508 | 50% | ||
jonbrosly | 0 | 304,746,508 | 50% | ||
bestchancf | 0 | 304,746,508 | 50% | ||
honeymanto | 0 | 304,746,508 | 50% | ||
jamesmichel | 0 | 305,926,503 | 50% | ||
danialjacob | 0 | 305,926,503 | 50% | ||
kaylee45643 | 0 | 305,282,106 | 50% | ||
nevaeh45 | 0 | 304,746,508 | 50% | ||
xhevat | 0 | 235,375,378 | 50% | ||
imjonsmith | 0 | 304,746,508 | 50% | ||
josepwilliams | 0 | 304,746,508 | 50% | ||
layla77 | 0 | 305,415,604 | 50% | ||
mwamin7 | 0 | 305,943,374 | 50% | ||
geovanny1000 | 0 | 207,128,022 | 100% | ||
albertotang | 0 | 369,316,371 | 100% | ||
mahmudulhassan | 0 | 2,559,826,606 | 50% | ||
selinnball | 0 | 761,493,222 | 100% | ||
rosepac | 0 | 1,365,505,210 | 100% | ||
boyaceh | 0 | 305,125,317 | 50% | ||
femidada | 0 | 275,211,440 | 50% | ||
wakanda | 0 | 304,108,448 | 50% | ||
reungkhoem | 0 | 300,686,278 | 50% | ||
robioulsanny | 0 | 61,002,848 | 10% | ||
magdechef | 0 | 255,723,423 | 50% | ||
leviatan7 | 0 | 8,665,685,264 | 100% | ||
foxesal | 0 | 416,665,018 | 75% | ||
adelsz | 0 | 551,254,904 | 100% | ||
lexcreativz | 0 | 305,630,659 | 50% | ||
earnstech | 0 | 293,480,791 | 50% | ||
teknoteksogutma | 0 | 305,626,173 | 50% | ||
mechyz12 | 0 | 250,682,967 | 50% | ||
icoshooter | 0 | 305,623,174 | 50% | ||
luisoliveirav | 0 | 91,507,398 | 15% | ||
vezo | 0 | 422,756,323 | 100% | ||
chinwengozi | 0 | 289,040,202 | 50% | ||
alextone | 0 | 244,534,965 | 50% | ||
seventhsun | 0 | 366,883,029 | 50% | ||
jumpnrun | 0 | 188,640,442 | 33% | ||
anttn | 0 | 11,842,750,645 | 62.6% | ||
mypride | 0 | 265,406,730 | 50% | ||
ronasoliva | 0 | 454,839,435 | 100% | ||
samsonite18654 | 0 | 275,101,155 | 50% | ||
cerentryn | 0 | 609,013,697 | 100% | ||
utopian.tasks | 0 | 594,334,750 | 100% | ||
ipally | 0 | 305,306,723 | 50% | ||
elius2289 | 0 | 304,473,198 | 50% | ||
sharinglife | 0 | 0 | 100% | ||
sakil99 | 0 | 265,586,884 | 50% | ||
nielzon | 0 | 158,678,127 | 50% | ||
dong-a | 0 | 287,057,480 | 50% | ||
denkeicui | 0 | 295,327,765 | 50% | ||
rades | 0 | 157,396,195 | 25% | ||
sirharoldsimbo | 0 | 88,603,839 | 100% | ||
gredetinac | 0 | 610,882,216 | 100% | ||
naayren | 0 | 304,192,792 | 50% | ||
sensen13 | 0 | 447,304,229 | 100% | ||
whatspal | 0 | 72,552,543 | 50% | ||
bid.bot | 0 | 2,420,710,184,714 | 98.82% | ||
shepherd-stories | 0 | 395,942,761 | 50% | ||
wittyjov24 | 0 | 433,981,840 | 100% | ||
iauns | 0 | 10,135,473,424 | 100% | ||
samaz0r | 0 | 279,912,856 | 50% | ||
subha193 | 0 | 234,179,192 | 100% | ||
endbe | 0 | 60,923,744 | 10% | ||
ingpablojosue | 0 | 213,182,685 | 50% | ||
idiongo | 0 | 231,214,981 | 50% | ||
kamran62 | 0 | 188,620,247 | 50% | ||
evecenla | 0 | 203,754,739 | 100% | ||
spielekiste | 0 | 611,580,826 | 100% | ||
cryptoaussie | 0 | 304,559,767 | 50% | ||
mr-brings | 0 | 215,880,853,412 | 100% | ||
mamun1237 | 0 | 306,075,922 | 50% | ||
grizzz | 0 | 299,675,291 | 50% | ||
adigun12 | 0 | 244,110,948 | 50% | ||
jbautista74 | 0 | 241,992,834 | 100% | ||
rishi4662 | 0 | 87,379,454 | 50% | ||
jacekw.dev | 0 | 1,218,389,889 | 100% | ||
aleestra | 0 | 463,077,181 | 100% | ||
lepllach | 0 | 304,465,520 | 50% | ||
vinr | 0 | 448,117,708 | 50% | ||
faheem023 | 0 | 177,467,567 | 100% | ||
calciol | 0 | 600,123,567 | 100% | ||
aarush89 | 0 | 305,795,585 | 50% | ||
predict-crypto | 0 | 108,893,452,084 | 50% | ||
happywen | 0 | 2,818,202,421 | 100% | ||
ocan | 0 | 201,047,460 | 100% | ||
rajmolo | 0 | 304,493,485 | 50% | ||
jsdjack | 0 | 125,133,348 | 100% | ||
kallu1993 | 0 | 423,148,197 | 100% | ||
ingeniero-romulo | 0 | 411,237,339 | 100% | ||
ablink | 0 | 64,416,108 | 25% | ||
shaikfarru | 0 | 399,634,262 | 100% | ||
fireruner | 0 | 1,900,618,427 | 100% | ||
murathe | 0 | 115,717,941 | 100% | ||
munnacse | 0 | 167,117,658 | 50% | ||
thegtgarage | 0 | 121,659,822 | 100% | ||
hemelsunny | 0 | 538,252,871 | 100% | ||
absenior | 0 | 547,348,070 | 100% | ||
goldysinghsodhi | 0 | 465,245,859 | 100% | ||
techgurutoday | 0 | 586,878,764 | 100% | ||
mizan576787 | 0 | 374,021,181 | 100% | ||
jluzardocom | 0 | 386,184,471 | 100% | ||
saiduzzaman | 0 | 574,715,473 | 100% | ||
memeholic | 0 | 459,164,214 | 100% | ||
sultan8828 | 0 | 504,776,553 | 100% | ||
syedmohsin50 | 0 | 206,775,937 | 100% | ||
plabon | 0 | 507,817,376 | 100% | ||
sainiamit | 0 | 556,470,538 | 100% | ||
ilyes-mediouni | 0 | 510,858,198 | 100% | ||
shanif | 0 | 529,103,134 | 100% | ||
naveenkr574 | 0 | 450,041,746 | 100% | ||
titolorenzo | 0 | 480,449,972 | 100% | ||
dyvlog | 0 | 401,388,584 | 100% | ||
thegeorge | 0 | 337,531,309 | 100% | ||
kabasakal | 0 | 577,751,951 | 100% | ||
hammad97 | 0 | 100,346,391 | 100% | ||
rajeshvr | 0 | 541,266,425 | 100% | ||
argoth27 | 0 | 541,262,354 | 100% | ||
sbikramjitsingh | 0 | 553,425,553 | 100% | ||
godiyayak | 0 | 364,895,969 | 100% | ||
mitphoenix888 | 0 | 483,487,159 | 100% | ||
ayaz123 | 0 | 559,507,153 | 100% | ||
ahmedeagle | 0 | 337,528,771 | 100% | ||
paulchi1 | 0 | 540,622,602 | 100% | ||
doctorpelis | 0 | 474,364,760 | 100% | ||
fzabedin | 0 | 468,283,160 | 100% | ||
vietnamsexy | 0 | 428,752,764 | 100% | ||
kamalhossains | 0 | 537,533,319 | 100% | ||
heyitsraymond | 0 | 617,854,390 | 100% | ||
awaara | 0 | 549,890,403 | 100% | ||
haseebch | 0 | 549,890,403 | 100% | ||
sumit096 | 0 | 549,890,396 | 100% | ||
arshad66 | 0 | 571,515,299 | 100% | ||
mina95 | 0 | 91,223,386 | 100% | ||
a3cel | 0 | 562,540,928 | 100% | ||
nozomi | 0 | 515,908,390 | 100% | ||
l0chu | 0 | 389,248,246 | 100% | ||
tahmid999 | 0 | 605,497,226 | 100% | ||
thibossss | 0 | 475,747,774 | 100% | ||
sumink83 | 0 | 429,408,677 | 100% | ||
kiralaga | 0 | 124,665,981 | 100% | ||
nzarsaputra | 0 | 617,854,197 | 100% | ||
carljames.tla | 0 | 441,765,749 | 100% | ||
hellotomyfans | 0 | 0 | -100% |
Thanks for the article (someone linked me to this,) I was planning on writing another article on my project but reading this I'm not sure if it qualifies anymore (there isn't much change in code.) <center>I'll wait until I have something big to announce!</center>
author | ahmadmanga |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20181017t123029836z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-10-17 12:30:33 |
last_update | 2018-10-17 12:30:33 |
depth | 1 |
children | 0 |
last_payout | 2018-10-24 12:30: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 | 264 |
author_reputation | 285,433,178,139,062 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,477,121 |
net_rshares | 0 |
Thank you for this information.
author | ahmedeagle |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180730t044447232z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 04:48:03 |
last_update | 2018-07-30 04:48:03 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 04:48: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 | 31 |
author_reputation | 46,505,011 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,467,185 |
net_rshares | 0 |
Congratulations @gregory.latinier! Your post was mentioned in the [Steemit Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20180726) in the following category: * Pending payout - Ranked 8 with $ 328,93
author | arcange |
---|---|
permlink | re-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t180625000z |
category | utopian-io |
json_metadata | "" |
created | 2018-07-27 16:09:45 |
last_update | 2018-07-27 16:09:45 |
depth | 1 |
children | 0 |
last_payout | 2018-08-03 16:09: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 | 224 |
author_reputation | 1,146,606,601,469,178 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,177,654 |
net_rshares | 0 |
Awesome how-to, to add few things you should also not add all your code in one commit and try to improve your .gitignore file to not include unnecessary files. >Try to separate the generated code from your PR, commits and contribution. This is a very important point, you can actually and developers should always do it.
author | codingdefined |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t040929381z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-27 04:09:30 |
last_update | 2018-07-27 04:09:30 |
depth | 1 |
children | 1 |
last_payout | 2018-08-03 04:09: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 | 322 |
author_reputation | 524,793,966,442,845 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,113,554 |
net_rshares | 0 |
I talk about commits here: > Instead don't hesitate to split your commits into meaningful ones. And also about the generated code with the `vue-cli` example I agree that if the contributor doesn't do that our task is much more complicated.
author | gregory.latinier |
---|---|
permlink | re-codingdefined-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t070120576z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2018-07-27 07:01:24 |
last_update | 2018-07-27 07:01:24 |
depth | 2 |
children | 0 |
last_payout | 2018-08-03 07:01: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 | 241 |
author_reputation | 34,278,323,818,021 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,126,142 |
net_rshares | 367,254,038 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sou1iane | 0 | 203,095,172 | 2.5% | ||
penghuren | 0 | 164,158,866 | 2.5% |
Te felicito!
author | doctorpelis |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t184553407z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-27 18:45:54 |
last_update | 2018-07-27 18:45:54 |
depth | 1 |
children | 0 |
last_payout | 2018-08-03 18:45: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 | 12 |
author_reputation | 7,135,939,624 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,193,253 |
net_rshares | 0 |
Thanks for sharing.. it's really help "how to" get more valuable curation from utopian.io
author | dwiitavita |
---|---|
permlink | dwiitavita-re-gregory-latinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t003114423z |
category | utopian-io |
json_metadata | {"app":"partiko"} |
created | 2018-07-27 00:31:15 |
last_update | 2018-07-27 00:31:36 |
depth | 1 |
children | 0 |
last_payout | 2018-08-03 00:31:15 |
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 | 91 |
author_reputation | 86,664,468,910,829 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,098,263 |
net_rshares | 0 |
Amazing howto!
author | elear |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t222554378z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-26 22:25:57 |
last_update | 2018-07-26 22:25:57 |
depth | 1 |
children | 0 |
last_payout | 2018-08-02 22:25: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 | 14 |
author_reputation | 59,749,428,580,040 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,089,509 |
net_rshares | 4,943,347,488 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ajayyy | 0 | 4,943,347,488 | 100% |
Great post just in time for me. You didn't talk about the 14 days limit as it was my only problem for now. I have been planning to publish my first development contribution for last 2 months, but every time I want to do that, some commits/PRs past the time limit:) Then I add more feature commits as the rewards now exponentially given (as the contribution needs to be more valuable), then again older commits get timeout. Could you change this time limit to be like 3 weeks? Thank you. My repository: https://github.com/Hede-io/hede.io/commits/master
author | ercu |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t230319736z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1","links":["https://github.com/Hede-io/hede.io/commits/master"]} |
created | 2018-07-26 23:03:18 |
last_update | 2018-07-26 23:15:48 |
depth | 1 |
children | 3 |
last_payout | 2018-08-02 23:03:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.045 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 551 |
author_reputation | 60,285,564,437 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,091,874 |
net_rshares | 29,765,683,046 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mys | 0 | 1,077,156,758 | 1% | ||
ajayyy | 0 | 4,917,734,288 | 100% | ||
oups | 0 | 14,924,552,555 | 100% | ||
pars11 | 0 | 8,846,239,445 | 100% |
You can regroup your commits in a Pull Request. The time of the Pull Request will be taken into account and not the commits. That's why it's also better to use PR instead of commits on the master branch
author | gregory.latinier |
---|---|
permlink | re-ercu-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180730t071355942z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak"} |
created | 2018-07-30 07:13:57 |
last_update | 2018-07-30 07:13:57 |
depth | 2 |
children | 2 |
last_payout | 2018-08-06 07:13: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 | 202 |
author_reputation | 34,278,323,818,021 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,479,526 |
net_rshares | 153,680,770 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheneats | 0 | 153,680,770 | 1% |
Oh, I did not realise that. That's awesome
author | ajayyy |
---|---|
permlink | re-gregorylatinier-re-ercu-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180731t150934874z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2018-07-31 15:09:39 |
last_update | 2018-07-31 15:09:39 |
depth | 3 |
children | 0 |
last_payout | 2018-08-07 15:09: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 | 42 |
author_reputation | 29,025,741,762,621 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,648,735 |
net_rshares | 6,232,611,662 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ajayyy | 0 | 6,232,611,662 | 100% |
Thank you for the answer. I actually use PRs most of the time. By the "commits", I meant the time of the PRs gets over 14 days. When I have several commits, I make the PR in the meantime so mostly commit time and PR are same.
author | ercu |
---|---|
permlink | re-gregorylatinier-re-ercu-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180730t203318001z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 20:33:18 |
last_update | 2018-07-30 20:33:18 |
depth | 3 |
children | 0 |
last_payout | 2018-08-06 20:33:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 60,285,564,437 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,557,988 |
net_rshares | 0 |
I gave you an upvote on your post! Please give me a upvote(to this link https://steemit.com/@hammad97) & follow. I will give you a follow in return and possible future votes!
author | hammad97 |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t144431951z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/@hammad97"],"app":"steemit/0.1"} |
created | 2018-07-28 14:45:24 |
last_update | 2018-07-28 14:45:24 |
depth | 1 |
children | 0 |
last_payout | 2018-08-04 14:45: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 | 174 |
author_reputation | 92,722,956 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,285,888 |
net_rshares | 0 |
I feel honored hahahahha.
author | jaysermendez |
---|---|
permlink | re-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180731t214957871z |
category | utopian-io |
json_metadata | {"community":"steemia","app":"steemia/0.0.1"} |
created | 2018-07-31 21:49:57 |
last_update | 2018-07-31 21:49:57 |
depth | 1 |
children | 0 |
last_payout | 2018-08-07 21:49:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 20,790,862,502,465 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,684,560 |
net_rshares | 12,895,450,025 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
knowledges | 0 | 12,895,450,025 | 100% |
Great article, i will definitely read it again before i submit my next contribution :)
author | luschn |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t220321343z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-26 22:03:21 |
last_update | 2018-07-26 22:03:21 |
depth | 1 |
children | 0 |
last_payout | 2018-08-02 22:03:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.092 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 19,362,064,963,957 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,087,942 |
net_rshares | 66,531,191,610 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
limesoda | 0 | 58,860,242,249 | 21% | ||
retroboy | 0 | 6,574,701,395 | 100% | ||
gamebot | 0 | 554,796,536 | 100% | ||
needforsteem | 0 | 541,451,430 | 100% |
Does anyone know how to register with utopian? I have tried to log in several times, but only end up being directed to my steemit or busy home page.
author | mariusclaassen |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t075558134z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-28 07:55:57 |
last_update | 2018-07-28 07:55:57 |
depth | 1 |
children | 2 |
last_payout | 2018-08-04 07:55: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 | 150 |
author_reputation | 70,111,102,157 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,250,833 |
net_rshares | 0 |
You dont need to register, just go start your contribution using one of STEEM front-end like steemit.com, busy.org or eSteem. Read the guidelines here: https://join.utopian.io/guidelines/
author | naufal |
---|---|
permlink | re-mariusclaassen-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180729t233541796z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":["https://join.utopian.io/guidelines/"],"image":[]} |
created | 2018-07-29 23:35:45 |
last_update | 2018-07-29 23:35:45 |
depth | 2 |
children | 1 |
last_payout | 2018-08-05 23:35: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 | 188 |
author_reputation | 14,312,940,549,282 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,443,634 |
net_rshares | 0 |
@naufal, Thank you for the information
author | mariusclaassen |
---|---|
permlink | re-naufal-re-mariusclaassen-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180730t140146715z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["utopian-io"],"users":["naufal"],"links":["/@naufal"],"image":[]} |
created | 2018-07-30 14:02:15 |
last_update | 2018-07-30 14:02:15 |
depth | 3 |
children | 0 |
last_payout | 2018-08-06 14:02:15 |
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 | 38 |
author_reputation | 70,111,102,157 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,517,842 |
net_rshares | 0 |
friend's i am new here.. please follow me and upvote me..i will do same .
author | nzarsaputra |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t154615352z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-28 15:46:18 |
last_update | 2018-07-28 15:46:18 |
depth | 1 |
children | 0 |
last_payout | 2018-08-04 15:46:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | -2,308,398,055 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,292,039 |
net_rshares | 608,586,384 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nzarsaputra | 0 | 608,586,384 | 100% |
Thanks for writing down your logic for scoring contributions. I'll try to apply as many of those tips as possible for my next Utopian posts. Sadly won't be able to for the one coming tomorrow though (my commits are quite fucked, will start using PR's). The only point I don't agree with is the "formatting, language and overall presentation of the post" since the example you gave, while being an awesome post, doesn't feel like it would be understood by the general public. Anyway, thanks for all those informations, I'll try to make the best out of them!
author | ragepeanut |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t223837580z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2018-07-26 22:38:33 |
last_update | 2018-07-26 22:39:39 |
depth | 1 |
children | 2 |
last_payout | 2018-08-02 22:38: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 | 556 |
author_reputation | 15,252,863,488,454 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,090,328 |
net_rshares | 0 |
The post can be intended only for the dev community. What I meant is that the post shouldn't be written only for the utopian moderators
author | gregory.latinier |
---|---|
permlink | re-ragepeanut-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t224254678z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2018-07-26 22:42:57 |
last_update | 2018-07-26 22:43:15 |
depth | 2 |
children | 1 |
last_payout | 2018-08-02 22:42: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 | 135 |
author_reputation | 34,278,323,818,021 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,090,612 |
net_rshares | 408,088,999 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sou1iane | 0 | 203,056,654 | 2.5% | ||
penghuren | 0 | 205,032,345 | 2.5% |
Oh alright, didn't understand that that way. My bad!
author | ragepeanut |
---|---|
permlink | re-gregorylatinier-re-ragepeanut-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t224708539z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2018-07-26 22:47:06 |
last_update | 2018-07-26 22:47:06 |
depth | 3 |
children | 0 |
last_payout | 2018-08-02 22:47: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 | 52 |
author_reputation | 15,252,863,488,454 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,090,865 |
net_rshares | 0 |
Congratulations @gregory.latinier! You have completed the following achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@gregory.latinier) Award for the number of upvotes received <sub>_Click on the badge to view your Board of Honor._</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! > Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-gregorylatinier-20180727t013356000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-07-27 01:33:54 |
last_update | 2018-07-27 01:33:54 |
depth | 1 |
children | 0 |
last_payout | 2018-08-03 01:33: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 | 744 |
author_reputation | 38,975,615,169,260 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,102,553 |
net_rshares | -4,629,817,590 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ajayyy | 0 | -4,629,817,590 | -100% |
Congratulations @gregory.latinier! You have received a personal award! [](http://steemitboard.com/@gregory.latinier) SteemFest 3 Attendee <sub>_Click on the badge to view your Board of Honor._</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/uk1parhd"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmSz7NTFn1sazJvocuqkN7uZFHxAUTJrVYz7zqYEEExXfY/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/uk1parhd">SteemFest³ - SteemitBoard Contest Teaser</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-award-is-ready"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeEYkuDHNp3c9dC6Q5s8Wysi8DrXR89FHAFiu5XoQW8Vr/SteemitBoard_header_Krakow2018.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-award-is-ready">The new Steemfest³ Award is ready!</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-gregorylatinier-20181107t162911000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-07 16:29:12 |
last_update | 2018-11-07 16:29:12 |
depth | 1 |
children | 0 |
last_payout | 2018-11-14 16:29: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 | 1,308 |
author_reputation | 38,975,615,169,260 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,863,084 |
net_rshares | 0 |
friend's i am new here.. please follow me and upvote me..i will do same .
author | subornaa |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t060202596z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-28 06:02:09 |
last_update | 2018-07-28 06:02:09 |
depth | 1 |
children | 0 |
last_payout | 2018-08-04 06:02: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 | -266,183,540 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,242,210 |
net_rshares | 538,225,602 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
minhquang3869 | 0 | 538,225,602 | 100% |
I followed you ...You follow me back. I up vote your post...Up vote mine... I am new support me ....?!! Thanks !!
author | techgurutoday | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gregorylatinier-2018727t202244576z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-07-27 14:52:48 | ||||||
last_update | 2018-07-27 14:52:48 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-08-03 14:52:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 114 | ||||||
author_reputation | -952,267,688 | ||||||
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 66,168,717 | ||||||
net_rshares | -18,294,515,315 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elear | 0 | -7,859,406,855 | -100% | ||
roj | 0 | -10,435,108,460 | -100% |
I followed you ...You follow me back. I up vote your post...Up vote mine... I am new support me ....?!! Thanks !!
author | techgurutoday | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gregorylatinier-2018727t20238114z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-07-27 14:53:12 | ||||||
last_update | 2018-07-27 14:53:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-08-03 14:53: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 | 114 | ||||||
author_reputation | -952,267,688 | ||||||
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 66,168,757 | ||||||
net_rshares | -18,075,209,335 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elear | 0 | -7,427,139,478 | -100% | ||
roj | 0 | -10,648,069,857 | -100% |
author | techgurutoday | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gregorylatinier-2018727t202421559z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-07-27 14:54:24 | ||||||
last_update | 2018-07-27 14:54:24 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-08-03 14:54: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 | 69 | ||||||
author_reputation | -952,267,688 | ||||||
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 66,168,898 | ||||||
net_rshares | -17,859,715,027 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elear | 0 | -7,584,327,615 | -100% | ||
roj | 0 | -10,275,387,412 | -100% |
author | techgurutoday | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gregorylatinier-2018727t202451986z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-07-27 14:54:57 | ||||||
last_update | 2018-07-27 14:54:57 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-08-03 14:54: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 | 69 | ||||||
author_reputation | -952,267,688 | ||||||
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 66,168,967 | ||||||
net_rshares | -17,764,644,733 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elear | 0 | -7,702,218,718 | -100% | ||
roj | 0 | -10,062,426,015 | -100% |
author | techgurutoday | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gregorylatinier-2018727t202529883z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-07-27 14:55:33 | ||||||
last_update | 2018-07-27 14:55:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-08-03 14: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 | 69 | ||||||
author_reputation | -952,267,688 | ||||||
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 66,169,033 | ||||||
net_rshares | -17,119,415,959 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elear | 0 | -7,269,951,341 | -100% | ||
roj | 0 | -9,849,464,618 | -100% |
good!
author | thegeorge |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t182225899z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-27 17:52:33 |
last_update | 2018-07-27 17:52:33 |
depth | 1 |
children | 0 |
last_payout | 2018-08-03 17:52: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 | 5 |
author_reputation | 2,496,851,504 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,188,225 |
net_rshares | 0 |
I just submitted my first Utopian post around a week ago. This post is a huge help as I really didn’t understand much about it.
author | themarkymark |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t233446904z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-27 23:34:45 |
last_update | 2018-07-27 23:34:45 |
depth | 1 |
children | 0 |
last_payout | 2018-08-03 23:34: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 | 128 |
author_reputation | 1,772,888,056,194,800 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,215,705 |
net_rshares | 0 |
Sehr guter und sorgfältig recherchierter Beitrag, weiter so
author | vampirgarfield |
---|---|
permlink | re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t095510638z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-28 09:55:12 |
last_update | 2018-07-28 09:55:12 |
depth | 1 |
children | 0 |
last_payout | 2018-08-04 09:55: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 | 59 |
author_reputation | 108,716,803,759 |
root_title | "How to achieve the highest score for a better Utopian reward for development contributions" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,259,878 |
net_rshares | 0 |