create account

How to achieve the highest score for a better Utopian reward for development contributions by gregory.latinier

View this thread on: hive.blogpeakd.comecency.com
· @gregory.latinier · (edited)
$326.27
How to achieve the highest score for a better Utopian reward for development contributions
![utopian_better_rewards.jpg](https://cdn.steemitimages.com/DQmV81kzJ9kco8uVxo8GCDBG5Rq2M2PVoC1ABpw4tG1zRw4/utopian_better_rewards.jpg)

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/).

![utopian-guidelines.jpg](https://cdn.steemitimages.com/DQmd9zWCoN62gHHwr7ZPN8ddh2HJ2Z3JniyiYty9m2upk4D/utopian-guidelines.jpg)

> 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.

![utopian-scroll-of-truth.jpg](https://cdn.steemitimages.com/DQmRRmuxpzxPTpBb3o98t2Gac2NuzoBVjsk6gmck4ZBLyg5/utopian-scroll-of-truth.jpg)

> 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!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 468 others
👎  
properties (23)
authorgregory.latinier
permlinkhow-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions
categoryutopian-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"}
created2018-07-26 21:46:18
last_update2018-07-29 11:42:30
depth0
children33
last_payout2018-08-02 21:46:18
cashout_time1969-12-31 23:59:59
total_payout_value251.687 HBD
curator_payout_value74.587 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,857
author_reputation34,278,323,818,021
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id66,086,645
net_rshares175,131,782,719,371
author_curate_reward""
vote details (533)
@ahmadmanga ·
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>
properties (22)
authorahmadmanga
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20181017t123029836z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-10-17 12:30:33
last_update2018-10-17 12:30:33
depth1
children0
last_payout2018-10-24 12:30:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation285,433,178,139,062
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,477,121
net_rshares0
@ahmedeagle ·
Thank you for this information.
properties (22)
authorahmedeagle
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180730t044447232z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 04:48:03
last_update2018-07-30 04:48:03
depth1
children0
last_payout2018-08-06 04:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation46,505,011
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,467,185
net_rshares0
@arcange ·
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
properties (22)
authorarcange
permlinkre-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t180625000z
categoryutopian-io
json_metadata""
created2018-07-27 16:09:45
last_update2018-07-27 16:09:45
depth1
children0
last_payout2018-08-03 16:09:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation1,146,606,601,469,178
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,177,654
net_rshares0
@codingdefined ·
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.
properties (22)
authorcodingdefined
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t040929381z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-27 04:09:30
last_update2018-07-27 04:09:30
depth1
children1
last_payout2018-08-03 04:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length322
author_reputation524,793,966,442,845
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,113,554
net_rshares0
@gregory.latinier ·
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.
👍  ,
properties (23)
authorgregory.latinier
permlinkre-codingdefined-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t070120576z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-07-27 07:01:24
last_update2018-07-27 07:01:24
depth2
children0
last_payout2018-08-03 07:01:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length241
author_reputation34,278,323,818,021
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,126,142
net_rshares367,254,038
author_curate_reward""
vote details (2)
@doctorpelis ·
Te felicito!
properties (22)
authordoctorpelis
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t184553407z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-27 18:45:54
last_update2018-07-27 18:45:54
depth1
children0
last_payout2018-08-03 18:45:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation7,135,939,624
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,193,253
net_rshares0
@dwiitavita · (edited)
Thanks for sharing.. it's really help "how to" get more valuable curation from utopian.io

properties (22)
authordwiitavita
permlinkdwiitavita-re-gregory-latinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t003114423z
categoryutopian-io
json_metadata{"app":"partiko"}
created2018-07-27 00:31:15
last_update2018-07-27 00:31:36
depth1
children0
last_payout2018-08-03 00:31:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation86,664,468,910,829
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,098,263
net_rshares0
@elear ·
Amazing howto!
👍  
properties (23)
authorelear
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t222554378z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-26 22:25:57
last_update2018-07-26 22:25:57
depth1
children0
last_payout2018-08-02 22:25:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation59,749,428,580,040
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,089,509
net_rshares4,943,347,488
author_curate_reward""
vote details (1)
@ercu · (edited)
$0.05
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
👍  , , ,
properties (23)
authorercu
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t230319736z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1","links":["https://github.com/Hede-io/hede.io/commits/master"]}
created2018-07-26 23:03:18
last_update2018-07-26 23:15:48
depth1
children3
last_payout2018-08-02 23:03:18
cashout_time1969-12-31 23:59:59
total_payout_value0.045 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length551
author_reputation60,285,564,437
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,091,874
net_rshares29,765,683,046
author_curate_reward""
vote details (4)
@gregory.latinier ·
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
👍  
properties (23)
authorgregory.latinier
permlinkre-ercu-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180730t071355942z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak"}
created2018-07-30 07:13:57
last_update2018-07-30 07:13:57
depth2
children2
last_payout2018-08-06 07:13:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation34,278,323,818,021
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,479,526
net_rshares153,680,770
author_curate_reward""
vote details (1)
@ajayyy ·
Oh, I did not realise that. That's awesome
👍  
properties (23)
authorajayyy
permlinkre-gregorylatinier-re-ercu-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180731t150934874z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-07-31 15:09:39
last_update2018-07-31 15:09:39
depth3
children0
last_payout2018-08-07 15:09:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation29,025,741,762,621
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,648,735
net_rshares6,232,611,662
author_curate_reward""
vote details (1)
@ercu ·
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.
properties (22)
authorercu
permlinkre-gregorylatinier-re-ercu-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180730t203318001z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 20:33:18
last_update2018-07-30 20:33:18
depth3
children0
last_payout2018-08-06 20:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation60,285,564,437
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,557,988
net_rshares0
@hammad97 ·
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!
properties (22)
authorhammad97
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t144431951z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/@hammad97"],"app":"steemit/0.1"}
created2018-07-28 14:45:24
last_update2018-07-28 14:45:24
depth1
children0
last_payout2018-08-04 14:45:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation92,722,956
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,285,888
net_rshares0
@jaysermendez ·
$0.02
I feel honored hahahahha.
👍  
properties (23)
authorjaysermendez
permlinkre-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180731t214957871z
categoryutopian-io
json_metadata{"community":"steemia","app":"steemia/0.0.1"}
created2018-07-31 21:49:57
last_update2018-07-31 21:49:57
depth1
children0
last_payout2018-08-07 21:49:57
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation20,790,862,502,465
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,684,560
net_rshares12,895,450,025
author_curate_reward""
vote details (1)
@luschn ·
$0.12
Great article, i will definitely read it again before i submit my next contribution :)
👍  , , ,
properties (23)
authorluschn
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t220321343z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-26 22:03:21
last_update2018-07-26 22:03:21
depth1
children0
last_payout2018-08-02 22:03:21
cashout_time1969-12-31 23:59:59
total_payout_value0.092 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation19,362,064,963,957
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,087,942
net_rshares66,531,191,610
author_curate_reward""
vote details (4)
@mariusclaassen ·
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.
properties (22)
authormariusclaassen
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t075558134z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-28 07:55:57
last_update2018-07-28 07:55:57
depth1
children2
last_payout2018-08-04 07:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation70,111,102,157
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,250,833
net_rshares0
@naufal ·
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/
properties (22)
authornaufal
permlinkre-mariusclaassen-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180729t233541796z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":["https://join.utopian.io/guidelines/"],"image":[]}
created2018-07-29 23:35:45
last_update2018-07-29 23:35:45
depth2
children1
last_payout2018-08-05 23:35:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length188
author_reputation14,312,940,549,282
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,443,634
net_rshares0
@mariusclaassen ·
@naufal, Thank you for the information
properties (22)
authormariusclaassen
permlinkre-naufal-re-mariusclaassen-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180730t140146715z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["utopian-io"],"users":["naufal"],"links":["/@naufal"],"image":[]}
created2018-07-30 14:02:15
last_update2018-07-30 14:02:15
depth3
children0
last_payout2018-08-06 14:02:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation70,111,102,157
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,517,842
net_rshares0
@nzarsaputra ·
friend's i am new here.. please follow me and upvote me..i will do same .
👍  
properties (23)
authornzarsaputra
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t154615352z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-28 15:46:18
last_update2018-07-28 15:46:18
depth1
children0
last_payout2018-08-04 15:46:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,292,039
net_rshares608,586,384
author_curate_reward""
vote details (1)
@ragepeanut · (edited)
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!
properties (22)
authorragepeanut
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t223837580z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-07-26 22:38:33
last_update2018-07-26 22:39:39
depth1
children2
last_payout2018-08-02 22:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length556
author_reputation15,252,863,488,454
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,090,328
net_rshares0
@gregory.latinier · (edited)
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
👍  ,
properties (23)
authorgregory.latinier
permlinkre-ragepeanut-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t224254678z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-07-26 22:42:57
last_update2018-07-26 22:43:15
depth2
children1
last_payout2018-08-02 22:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation34,278,323,818,021
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,090,612
net_rshares408,088,999
author_curate_reward""
vote details (2)
@ragepeanut ·
Oh alright, didn't understand that that way. My bad!
properties (22)
authorragepeanut
permlinkre-gregorylatinier-re-ragepeanut-re-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180726t224708539z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-07-26 22:47:06
last_update2018-07-26 22:47:06
depth3
children0
last_payout2018-08-02 22:47:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation15,252,863,488,454
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,090,865
net_rshares0
@steemitboard ·
Congratulations @gregory.latinier! You have completed the following achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](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**!
👎  
properties (23)
authorsteemitboard
permlinksteemitboard-notify-gregorylatinier-20180727t013356000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-07-27 01:33:54
last_update2018-07-27 01:33:54
depth1
children0
last_payout2018-08-03 01:33:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length744
author_reputation38,975,615,169,260
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,102,553
net_rshares-4,629,817,590
author_curate_reward""
vote details (1)
@steemitboard ·
Congratulations @gregory.latinier! You have received a personal award!

[![](https://steemitimages.com/70x70/http://steemitboard.com/@gregory.latinier/steemfest31.png)](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**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-gregorylatinier-20181107t162911000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-11-07 16:29:12
last_update2018-11-07 16:29:12
depth1
children0
last_payout2018-11-14 16:29:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,308
author_reputation38,975,615,169,260
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,863,084
net_rshares0
@subornaa ·
friend's i am new here.. please follow me and upvote me..i will do same .
👍  
properties (23)
authorsubornaa
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t060202596z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-28 06:02:09
last_update2018-07-28 06:02:09
depth1
children0
last_payout2018-08-04 06:02:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation-266,183,540
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,242,210
net_rshares538,225,602
author_curate_reward""
vote details (1)
@techgurutoday ·
I followed you ...You follow me back.
I up vote your post...Up vote mine...

I am new support me ....?!!
Thanks !!
👎  ,
properties (23)
authortechgurutoday
permlinkre-gregorylatinier-2018727t202244576z
categoryutopian-io
json_metadata{"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-07-27 14:52:48
last_update2018-07-27 14:52:48
depth1
children0
last_payout2018-08-03 14:52:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation-952,267,688
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,168,717
net_rshares-18,294,515,315
author_curate_reward""
vote details (2)
@techgurutoday ·
I followed you ...You follow me back.
I up vote your post...Up vote mine...

I am new support me ....?!!
Thanks !!
👎  ,
properties (23)
authortechgurutoday
permlinkre-gregorylatinier-2018727t20238114z
categoryutopian-io
json_metadata{"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-07-27 14:53:12
last_update2018-07-27 14:53:12
depth1
children0
last_payout2018-08-03 14:53:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation-952,267,688
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,168,757
net_rshares-18,075,209,335
author_curate_reward""
vote details (2)
@techgurutoday ·
I followed and up vote you...Please do the same and support... Thanks
👎  ,
properties (23)
authortechgurutoday
permlinkre-gregorylatinier-2018727t202421559z
categoryutopian-io
json_metadata{"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-07-27 14:54:24
last_update2018-07-27 14:54:24
depth1
children0
last_payout2018-08-03 14:54:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation-952,267,688
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,168,898
net_rshares-17,859,715,027
author_curate_reward""
vote details (2)
@techgurutoday ·
I followed and up vote you...Please do the same and support... Thanks
👎  ,
properties (23)
authortechgurutoday
permlinkre-gregorylatinier-2018727t202451986z
categoryutopian-io
json_metadata{"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-07-27 14:54:57
last_update2018-07-27 14:54:57
depth1
children0
last_payout2018-08-03 14:54:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation-952,267,688
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,168,967
net_rshares-17,764,644,733
author_curate_reward""
vote details (2)
@techgurutoday ·
I followed and up vote you...Please do the same and support... Thanks
👎  ,
properties (23)
authortechgurutoday
permlinkre-gregorylatinier-2018727t202529883z
categoryutopian-io
json_metadata{"tags":["utopian-io","development"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-07-27 14:55:33
last_update2018-07-27 14:55:33
depth1
children0
last_payout2018-08-03 14:55:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation-952,267,688
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,169,033
net_rshares-17,119,415,959
author_curate_reward""
vote details (2)
@thegeorge ·
good!
properties (22)
authorthegeorge
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t182225899z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-27 17:52:33
last_update2018-07-27 17:52:33
depth1
children0
last_payout2018-08-03 17:52:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation2,496,851,504
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,188,225
net_rshares0
@themarkymark ·
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.
properties (22)
authorthemarkymark
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180727t233446904z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-27 23:34:45
last_update2018-07-27 23:34:45
depth1
children0
last_payout2018-08-03 23:34:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation1,772,888,056,194,800
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,215,705
net_rshares0
@vampirgarfield ·
Sehr guter und sorgfältig recherchierter Beitrag, weiter so
properties (22)
authorvampirgarfield
permlinkre-gregorylatinier-how-to-achieve-the-highest-score-for-a-better-utopian-reward-for-the-development-contributions-20180728t095510638z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-28 09:55:12
last_update2018-07-28 09:55:12
depth1
children0
last_payout2018-08-04 09:55:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation108,716,803,759
root_title"How to achieve the highest score for a better Utopian reward for development contributions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,259,878
net_rshares0