create account

Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub! by merge-rewards

View this thread on: hive.blogpeakd.comecency.com
· @merge-rewards · (edited)
$29.52
Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!
# Merge Rewards (BETA)

## Earn money with your Pull Requests on GitHub!

##### Merge Rewards is a **fully automated** service that lets you earn STEEM with your merged pull requests on GitHub.

## <center>Go to:<br>[merge-rewards.com](https://merge-rewards.com)</center>
<center><sub>Repositories:<br>[Website](https://github.com/mktcode/merge-rewards) and [Bot](https://github.com/mktcode/boty-mc-botface)</sub></center>
##

Connect your GitHub and Steem accounts and claim your rewards by simply clicking a button. 

### As easy as it gets!

You don't need to write a post about the work that you already did and you don't need to wait for a review process.

The website lists your pull requests, calculates a score and generates STEEM for you as soon as you click the "claim" button. Simple!

# The Score Algorithm

The algorithm to calculate that score is of course the most essential and crucial part. For now it's really simple and abusable but over time a variety of improvements will be implemented.

Currently the code you contribute isn't of any relevance. One reason is that it's not an easy task to automatically evaluate code quality properly. The other reason is that the project's popularity is at least as important and the quality of the code itself (or whatever the pull request contains) will be ensured implicitly by project owners who decide what to merge and what not.

**Merge Rewards uses only meta data to calculate scores and the scores are not based on the amount of work but on how many people benefit from it.**

A small bug fix in the Linux kernel affects much more people than the next big and bloated feature set in a project that is used by only a few people.

I understand that sometimes the small projects of today are the big ones of tomorrow and sometimes the value of a project can not be measured by it's popularity. But Merge Rewards is not supposed to be perfect from the start. It's supposed to evolve.

So, this is the first simple version of the score calculation:

```
if (userAge > 365) points += 1;
if (userAge > 365 * 5) points += 2;
if (mergedPRsLastMonth > 2) points += 1;
if (mergedPRsLastMonth > 10) points += 2;
if (repoAge > 90) points += 1;
if (repoAge > 365) points += 2;
if (repoStars > 50) points += 1;
if (repoStars > 250) points += 2;
if (repoForks > 10) points += 1;
if (repoForks > 50) points += 2;

return Math.round((points / 15) * 100);

```
Really stupidly simple but as you can see, there are also factors like your GitHub account age or the age of the repository. I have a lot more metrics in mind to make the algorithm more fair and flexible. I also plan to give project owners a chance to affect the score.

Here's a list of possible improvements:

- Does the PR close an issue?
- Were there additional commits made after the PR was created?
- How many comments are there?
- Did the project owner react with specific emoticons or with a special command? (Something like: !mr xs/s/md/l/xl)
- How many other projects use this repository?
- How many other contributors are there?
- To what other repositories did you contribute.
- How many followers do you have on GitHub?
- To how many DIFFERENT repositories did you contribute
  - overall
  - in the last month
- keep alive bonus: last commit to the repository is older than 1 year

Etc... The GitHub API offers a lot of data that wants to be used.

# The Bot

Once you've claimed rewards for one of your pull requests, a comment is posted to the blockchain and a bot votes on them. This bot is mostly based on something that I wrote almost a year ago for Utopian. Unfortunately they never used it so I'm glad to have some purpose for it now. On the other hand it needs some adjustments. I already removed all the Utopian specific code but I also need to change all the voting power related stuff to adjust it to the "new" resource credit system. I haven't been active for a year so for me that's new. The bot kind of works for now so I'll postpone this a little bit.

Basically it behaves like this:

- It waits until X posts have piled up (intended Wait List).
- It upvotes one post at a time / per run (every minute). First in first out.
- It upvotes as long as X posts (or more) are on the Wait List and Voting Power is above a fixed minimum.
- Exceptions:
    - Next post in line reaches a specific age: Vote will be forced.
    - Voting Power reaches a fixed maximum, slightly below 100 %: Vote will be forced.
- The Voting Weight is determined by the PR's score. 
- If contributions pile up or get less, the bot speeds up or slows down by lowering or increasing the weights automatically.

Read more in the [Readme](https://github.com/mktcode/boty-mc-botface/blob/master/README.md).

# Abuse

Well, there are not many hard requirement for PRs except they need to be merged in the past 14 days **(For the start I set it to 90 days!)** and for a repository other than your own ("own" means administrator rights). And there is no human factor at all so abuse might become a problem. This is why the scoring algorithm needs to be smart. I think with the factors I use currently it is already too much effort to abuse the system compared to the rewards which are currently none because there is no Steem Power in the account.

But I want to invite everybody to try and to help to make it more immune to abuse.

Currently you can "easily" fake a 60 % score by:

- creating a repository
- submiting more than 10 PRs to it (can even be from same account)
- fake/[buy](https://gimhub.com/shop) 250 stars and 50 forks

If your GitHub account is a bit older and you have some old repositories there, you could even reach a 100% score.

# Planned/Possible Improvements

## Better Website and Branding

The current website is just a quick "make it work" thing. I will put all my design and marketing skills (no matter what that means :D) into giving it a professional look and feel and the best possible user experience.

## Show Estimated Rewards and Bot Status

Currently the website shows only the score of a PR. The estimated vote value could be next to it. As there is a waiting list and the possibility that the bot "overheats", it's status can be shown on the website as well.

## Keychain Integration

Since Keychain seems to be sorft of a "first class citizen" in the Steem ecosystem, I will integrate it as soon as possible. But this also means I cannot rely on Steemconnect's comment function. So the changes affect more than just the login mechanic.

## Utopian Integration

Although this whole project is about automating some parts of Utopian, it doesn't mean that you can't have both.
When claiming your rewards you will be able to author a post which will be automatically tagged for Utopian and prefilled with their post template.

On the other hand I could also integrate Utopian posts by looking for URLs to merged PRs somewhere in the post content.

## Featured Projects

The website will show projects that invested in Steem. This investment will be Steem Power of a separate account to increase the rewards for contributions to this project.

## Automatic Reward Claiming

If you grant offline access to your account, rewards can be automatically generated once your pull requests get merged.

## Changing Root Post / Statistics Posts

Currently the PRs are represented by comments of a specific post from the @merge-rewards account. This post could automatically change by posting a new "root" post every X rewarded PRs or in a fixed interval to show some statistics. The first root post is this one by the way.

## Browser Plugin

A browser plugin could render a claim button directly on github.com on your pull requests page.

## GitHub Bot

Some sort of bot that automates communication with project owners.

## Own Token

If somebody can explain to me what the exact benefits of an own token really are, maybe that's an option. But to my understanding it's only... let's call it prestige and more difficult to cash out.

## AI for Scoring

Ok, this might sound a little bit far fetched but actually all it needs is training data and a lot of metrics. The metrics should not be the problem. The training data maybe is, because it needs humans to review the results of the scoring algorithm. But think of it as a "shifted" moderation process.

## Other platforms than GitHub

Does that make sense? I don't know. Bitbucket maybe? Is there any other platform than GitHub with a considerable amount of open collaboration?

## And so on...

I think there's a lot of potential and room for improvement in this, especially regarding the scoring algorithm. And I'm sure I had some ideas that I didn't write down anywhere and now I forgot. The best thing is, this project has a built-in incentive mechanism to improve it. Maybe I'll even give some extra points for PRs for this project. :D

# Delegate!

Obviously this whole thing can only work with a considerable amount of STEEM POWER. I am not rich so I can't power up this account to that level. I just delegated 100 SP to make sure there's enough RC for the start.

Until now there's no mechanism to reward delegators and maybe there won't be one. I will set all posts from this account to 100 % SP payout. So you can also support the project with big upvotes on posts from @merge-rewards. A direct delegation is of course the most needed way of support for the time being. I will also try to find investors but actually I don't like that kind of work so much so maybe that's not going to happen.

Currently 50.000 SP would result in up to 1$ in rewards for a pull request. That is the goal for now!

# Disclaimer

Currently this project is in **PROTOTYPE** stage! I called in BETA in the title because it sounds better and actually it can be used already. BUT... please see this as a project that we can develop together. If there is some bug preventing you from getting your rewards, fix it and get rewarded for that! If you think the scoring algorithm is stupid just submit a PR and let's discuss it there as well.

### <sup>Best regards,</sup><br>@mkt
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 66 others
properties (23)
authormerge-rewards
permlinkmerge-rewards-beta-root-post
categoryintroduceyourself
json_metadata{"tags":["introduceyourself","utopian-io","development","steem","merge-rewards"],"users":["merge-rewards","mkt"],"links":["https://merge-rewards.com","https://github.com/mktcode/merge-rewards","https://github.com/mktcode/boty-mc-botface","https://github.com/mktcode/boty-mc-botface/blob/master/README.md","https://gimhub.com/shop"],"app":"steemit/0.1","format":"markdown"}
created2019-07-08 08:40:33
last_update2019-07-09 04:56:06
depth0
children58
last_payout2019-07-15 08:40:33
cashout_time1969-12-31 23:59:59
total_payout_value22.288 HBD
curator_payout_value7.234 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,041
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id87,984,769
net_rshares70,978,662,181,039
author_curate_reward""
vote details (130)
@actifit ·
Cool initiative!
properties (22)
authoractifit
permlink20190709t112034348z
categoryintroduceyourself
json_metadata{"tags":["actifit"],"app":"actifit/v0.3.4","afit_tokens":"0"}
created2019-07-09 11:20:48
last_update2019-07-09 11:20:48
depth1
children0
last_payout2019-07-16 11:20: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_length16
author_reputation407,941,817,326,934
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,052,875
net_rshares0
@ajayyy ·
PR: https://github.com/uorocketry/uorocketry.github.io/pull/4
PR: https://github.com/uorocketry/uorocketry.github.io/pull/4 (Score: 27)
πŸ‘  
properties (23)
authorajayyy
permlink20a7322db0efb0e66b6a7ca4dc54c2fa1571512149192
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-10-19 19:09:09
last_update2019-10-19 19:09:09
depth1
children0
last_payout2019-10-26 19:09: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_reputation29,025,741,762,621
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,713,440
net_rshares31,638,092,625
author_curate_reward""
vote details (1)
@ajayyy · (edited)
Very cool concept, I'm getting an error on the api though.

![](https://cdn.steemitimages.com/DQmPHvK4nfA3NuZf6NhFJjhK74XoVxT8vMKfpAzuQSGAPU7/image.png)

EDIT: Nevermind, there is another print in the console, it's because it's my own repo, I didn't know about that rule.
πŸ‘  ,
properties (23)
authorajayyy
permlinkpucfmk
categoryintroduceyourself
json_metadata{"tags":["introduceyourself"],"image":["https://cdn.steemitimages.com/DQmPHvK4nfA3NuZf6NhFJjhK74XoVxT8vMKfpAzuQSGAPU7/image.png"],"app":"steemit/0.1"}
created2019-07-08 21:56:45
last_update2019-07-08 21:59:09
depth1
children5
last_payout2019-07-15 21:56: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_length271
author_reputation29,025,741,762,621
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,019,235
net_rshares6,503,465,766
author_curate_reward""
vote details (2)
@mkt ·
Oh yes, I didn't mention that in the post. I'll add that. I want to make sure that people are collaborating so for the start, own repo is not allowed. But there are ways to fake that of course. Hopefully I will be able to prevent that properly.
properties (22)
authormkt
permlinkre-ajayyy-pucfmk-20190709t032716665z
categoryintroduceyourself
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["introduceyourself"],"users":[],"links":[],"image":[]}
created2019-07-09 03:27:18
last_update2019-07-09 03:27:18
depth2
children4
last_payout2019-07-16 03:27: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_length244
author_reputation45,513,283,519,678
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,034,591
net_rshares0
@ajayyy ·
Your code is pretty smart too, it doesn't let you use PRs on orgs that you are a member of.
πŸ‘  ,
properties (23)
authorajayyy
permlinkre-mkt-re-ajayyy-pucfmk-20190709t032818094z
categoryintroduceyourself
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["introduceyourself"],"users":[],"links":[],"image":[]}
created2019-07-09 03:28:18
last_update2019-07-09 03:28:18
depth3
children1
last_payout2019-07-16 03:28:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation29,025,741,762,621
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,034,649
net_rshares6,438,423,768
author_curate_reward""
vote details (2)
@ajayyy ·
Just a heads up, clicking my name on the website links to your GitHub, probably a placeholder value.
πŸ‘  ,
properties (23)
authorajayyy
permlinkre-mkt-re-ajayyy-pucfmk-20190709t033021860z
categoryintroduceyourself
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["introduceyourself"],"users":[],"links":[],"image":[]}
created2019-07-09 03:30:24
last_update2019-07-09 03:30:24
depth3
children1
last_payout2019-07-16 03:30: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_length100
author_reputation29,025,741,762,621
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,034,772
net_rshares6,307,717,654
author_curate_reward""
vote details (2)
@anharismail ·
PR: https://github.com/PakL/TTVStreamerTool/pull/19
PR: https://github.com/PakL/TTVStreamerTool/pull/19 (Score: 27)
πŸ‘  ,
properties (23)
authoranharismail
permlink1b2641d767a12ab0238dadf0743b097d
categoryintroduceyourself
json_metadata{"id":"MDExOlB1bGxSZXF1ZXN0Mjk2NTM3ODA0","score":27,"permlink":"1b2641d767a12ab0238dadf0743b097d","githubUser":"anharismail","steemUser":"anharismail","pendingRewards":null,"rewards":null}
created2019-07-18 05:03:03
last_update2019-07-18 05:03:03
depth1
children0
last_payout2019-07-25 05:03: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_length63
author_reputation15,438,064,184,226
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,434,238
net_rshares20,032,255,103
author_curate_reward""
vote details (2)
@anharismail ·
PR: https://github.com/PakL/TTVStreamerTool/pull/19
PR: https://github.com/PakL/TTVStreamerTool/pull/19 (Score: 27)
πŸ‘  , ,
properties (23)
authoranharismail
permlink1b2641d767a12ab0238dadf0743b097d1563809041693
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-22 15:24:03
last_update2019-07-22 15:24:03
depth1
children0
last_payout2019-07-29 15:24: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_length63
author_reputation15,438,064,184,226
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,610,680
net_rshares23,137,939,122
author_curate_reward""
vote details (3)
@anharismail ·
PR: https://github.com/jorgenhenrichsen/SwiftAudio/pull/62
PR: https://github.com/jorgenhenrichsen/SwiftAudio/pull/62 (Score: 33)
πŸ‘  ,
properties (23)
authoranharismail
permlink862c718fe0f1b0dfb9d56c50f7c85184
categoryintroduceyourself
json_metadata{"id":"MDExOlB1bGxSZXF1ZXN0Mjg3ODQ5OTAw","score":33,"permlink":"862c718fe0f1b0dfb9d56c50f7c85184","githubUser":"anharismail","steemUser":"anharismail","pendingRewards":null,"rewards":null}
created2019-07-18 05:03:09
last_update2019-07-18 05:03:09
depth1
children0
last_payout2019-07-25 05:03: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_length70
author_reputation15,438,064,184,226
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,434,243
net_rshares24,482,739,501
author_curate_reward""
vote details (2)
@anharismail ·
PR: https://github.com/ctrlaltcookie/McGoats/pull/4
PR: https://github.com/ctrlaltcookie/McGoats/pull/4 (Score: 13)
πŸ‘  
properties (23)
authoranharismail
permlinkb3f77d8f61d0180f237d02c1ca222df4
categoryintroduceyourself
json_metadata{"id":"MDExOlB1bGxSZXF1ZXN0Mjc4OTU4MTg3","score":13,"permlink":"b3f77d8f61d0180f237d02c1ca222df4","githubUser":"anharismail","steemUser":"anharismail","pendingRewards":null,"rewards":null}
created2019-07-18 05:03:15
last_update2019-07-18 05:03:15
depth1
children0
last_payout2019-07-25 05:03: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_length63
author_reputation15,438,064,184,226
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,434,246
net_rshares9,596,775,974
author_curate_reward""
vote details (1)
@anhvu ·
Hello **@merge-rewards**

Welcome to Steemit & Wish you luck - success with Steemit!

Currently, We're supporting for the Planktons by our small upvote. If you follow **@haccolong** you will get free upvote of @hoaithu's Curation trail & minimum 1 **follow** from me. You may like it, [Check statement here](https://steemit.com/free/@haccolong/get-free-upvote-daily-when-follow-me).

To get 3000points and receive additional rewards from your activities on Steemit, you can use [Partiko app](https://partiko.app/referral/anhvu) for your phone.

_Please ignore this reply if you do not need the above._

Posted using [Partiko Android](https://partiko.app/referral/anhvu)
properties (22)
authoranhvu
permlinkanhvu-re-merge-rewards-merge-rewards-beta-root-post-20190708t101344018z
categoryintroduceyourself
json_metadata{"app":"partiko","client":"android"}
created2019-07-08 10:13:45
last_update2019-07-08 10:13:45
depth1
children0
last_payout2019-07-15 10:13: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_length669
author_reputation2,271,311,626,521
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,987,682
net_rshares0
@anonyvoter ·
$0.02
Hi and welcome here! When I started on steemit, my biggest problem was to find interesting people to interact with. So, to help newcomers getting started I created a directory with other interesting and or talented steemians to follow or interact with. Feel free to check it out at [https://www.steemiandir.com](https://www.steemiandir.com/) I am sure it will help you find like-minded people. Enjoy your stay here and do not hesitate to contact me if you have any questions!
πŸ‘  
properties (23)
authoranonyvoter
permlink20190708t084941945z
categoryintroduceyourself
json_metadata{"tags":["anonyvoter"],"app":"anonyvoter"}
created2019-07-08 08:49:42
last_update2019-07-08 08:49:42
depth1
children0
last_payout2019-07-15 08:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length475
author_reputation4,283,400,892,920
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,985,049
net_rshares61,009,842,562
author_curate_reward""
vote details (1)
@drsensor ·
PR: https://github.com/PanAeon/vscode-language-dhall/pull/2
PR: https://github.com/PanAeon/vscode-language-dhall/pull/2 (Score: 27)
πŸ‘  
properties (23)
authordrsensor
permlink599f19d934338b37f3a973f3a84a839c1569344646658
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-09-24 17:04:06
last_update2019-09-24 17:04:06
depth1
children0
last_payout2019-10-01 17:04: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_length71
author_reputation17,679,210,755,117
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,898,136
net_rshares31,243,044,123
author_curate_reward""
vote details (1)
@drsensor · (edited)
PR: https://github.com/matklad/once_cell/pull/17
PR: https://github.com/matklad/once_cell/pull/17 (Score: 30)
πŸ‘  ,
properties (23)
authordrsensor
permlink5ee4c1cd17da40df02d4235f5636f2c9
categoryintroduceyourself
json_metadata{"id":"MDExOlB1bGxSZXF1ZXN0Mjg0OTY1Mzg2","score":30,"permlink":"5ee4c1cd17da40df02d4235f5636f2c9","githubUser":"DrSensor"}
created2019-07-10 02:30:03
last_update2019-07-10 02:33:00
depth1
children2
last_payout2019-07-17 02:30: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_length60
author_reputation17,679,210,755,117
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,093,312
net_rshares4,039,882,993
author_curate_reward""
vote details (2)
@mkt ·
Hey! Thank you for the first two pull requests that are not from me! :D
Unfortunately there are no rewards yet because the account has not much Steem power.
properties (22)
authormkt
permlinkre-drsensor-5ee4c1cd17da40df02d4235f5636f2c9-20190710t090340387z
categoryintroduceyourself
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["introduceyourself"],"users":[],"links":[],"image":[]}
created2019-07-10 09:03:42
last_update2019-07-10 09:03:42
depth2
children1
last_payout2019-07-17 09:03:42
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_length156
author_reputation45,513,283,519,678
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,105,906
net_rshares0
@drsensor ·
Ah, that's why the web-apps seems like hang. Thanks for letting me know. I rarely open Steem now, so don't know what is hot in the Steem ecosystem. Good luck with the projects hope it can grow big πŸ’ͺ
properties (22)
authordrsensor
permlinkre-mkt-re-drsensor-5ee4c1cd17da40df02d4235f5636f2c9-20190711t031631471z
categoryintroduceyourself
json_metadata{"tags":["introduceyourself"],"app":"steempeak/1.14.0"}
created2019-07-11 03:15:45
last_update2019-07-11 03:15:45
depth3
children0
last_payout2019-07-18 03:15: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_length198
author_reputation17,679,210,755,117
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,139,384
net_rshares0
@drsensor ·
PR: https://github.com/matklad/once_cell/pull/17
PR: https://github.com/matklad/once_cell/pull/17 (Score: 43)
πŸ‘  
properties (23)
authordrsensor
permlink5ee4c1cd17da40df02d4235f5636f2c91566347079597
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-08-21 00:24:39
last_update2019-08-21 00:24:39
depth1
children0
last_payout2019-08-28 00:24: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_length60
author_reputation17,679,210,755,117
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,765,656
net_rshares16,748,815,326
author_curate_reward""
vote details (1)
@drsensor ·
PR: https://github.com/achou11/state-machines/pull/1
PR: https://github.com/achou11/state-machines/pull/1 (Score: 20)
πŸ‘  
properties (23)
authordrsensor
permlinkc31850008ecf5418e5d681751424abeb1569344634006
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-09-24 17:03:54
last_update2019-09-24 17:03:54
depth1
children0
last_payout2019-10-01 17:03: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_length64
author_reputation17,679,210,755,117
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,898,122
net_rshares23,200,717,074
author_curate_reward""
vote details (1)
@drsensor ·
PR: https://github.com/mre/prettyprint/pull/13
PR: https://github.com/mre/prettyprint/pull/13 (Score: 30)
πŸ‘  ,
properties (23)
authordrsensor
permlinkcc6804d337b7db41e21be12aa2391af7
categoryintroduceyourself
json_metadata{"id":"MDExOlB1bGxSZXF1ZXN0Mjg2NDI4NTgz","score":30,"permlink":"cc6804d337b7db41e21be12aa2391af7","githubUser":"DrSensor"}
created2019-07-10 02:30:06
last_update2019-07-10 02:30:06
depth1
children0
last_payout2019-07-17 02:30: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_length58
author_reputation17,679,210,755,117
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,093,313
net_rshares3,998,799,694
author_curate_reward""
vote details (2)
@drsensor ·
PR: https://github.com/mre/prettyprint/pull/13
PR: https://github.com/mre/prettyprint/pull/13 (Score: 30)
πŸ‘  
properties (23)
authordrsensor
permlinkcc6804d337b7db41e21be12aa2391af71566347088478
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-08-21 00:24:48
last_update2019-08-21 00:24:48
depth1
children0
last_payout2019-08-28 00:24: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_length58
author_reputation17,679,210,755,117
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,765,658
net_rshares23,292,507,344
author_curate_reward""
vote details (1)
@drsensor ·
PR: https://github.com/nushell/nushell/pull/625
PR: https://github.com/nushell/nushell/pull/625 (Score: 57)
πŸ‘  
properties (23)
authordrsensor
permlinkd96d0e39cda6f1c923dc86a414f197a21569344622680
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-09-24 17:03:42
last_update2019-09-24 17:03:42
depth1
children0
last_payout2019-10-01 17:03:42
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_reputation17,679,210,755,117
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,898,114
net_rshares67,357,379,609
author_curate_reward""
vote details (1)
@emrebeyler ·
$7.64
Interesting concept. I loved the idea and prototype.

Can't wait to see what comes next on this. Even though I feel a scoring algorithm (without human touch) that people can't abuse is a real challenge. 

***

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2-2-1-1-2-1-1-).

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

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , , , , , ,
properties (23)
authoremrebeyler
permlinkpuc1ce
categoryintroduceyourself
json_metadata{"tags":["introduceyourself"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-1-1-2-1-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-07-08 16:48:15
last_update2019-07-08 16:48:15
depth1
children2
last_payout2019-07-15 16:48:15
cashout_time1969-12-31 23:59:59
total_payout_value5.848 HBD
curator_payout_value1.794 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length658
author_reputation448,535,049,068,622
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,004,493
net_rshares18,824,959,871,803
author_curate_reward""
vote details (19)
@mkt · (edited)
Thank you for your review! And yes, abuse will be the biggest concern if I can manage to reach a larger audience. In the end there might not be a 100 % secure way but the point is to make abuse so hard that it's just not worth the effort. And also "human touch" can be implemented but not in a way that it disturbs the user experience in any way. There can be blacklists for users and repos. There can be a flagging system. Whatever. It's just the start. Well, we will see where it goes.
properties (22)
authormkt
permlinkre-emrebeyler-puc1ce-20190708t170358007z
categoryintroduceyourself
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["introduceyourself"],"users":[],"links":[],"image":[]}
created2019-07-08 17:04:00
last_update2019-07-08 17:05:36
depth2
children0
last_payout2019-07-15 17:04:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length487
author_reputation45,513,283,519,678
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,005,270
net_rshares0
@utopian-io ·
Thank you for your review, @emrebeyler! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-puc1ce-20190710t184712z
categoryintroduceyourself
json_metadata"{"app": "beem/0.20.17"}"
created2019-07-10 18:47:15
last_update2019-07-10 18:47:15
depth2
children0
last_payout2019-07-17 18:47: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_length62
author_reputation152,955,367,999,756
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,125,064
net_rshares0
@esteemapp ·
Welcome merge-rewards! <br>**eSteem** is the application that improves your experience on Steem. You have full control over your data and content, unlike some apps we don't use our users to promote our application or services. <br><br>We have Mobile application for [Android](https://play.google.com/store/apps/details?id=app.esteem.mobile) and [iOS](https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1451896376&mt=8) users. We also have developed [Surfer Desktop](https://github.com/esteemapp/esteem-surfer/releases) application that helps you to gain new followers and stay connected with your friends, unique features - notifications, bookmarks, favorites, drafts, and more. <br> We reward our users with encouragement upvotes as well as monthly giveaways rewarding Spotlight top users and active Discord users. <br>Learn more: https://esteem.app <br>Join our discord: https://discord.gg/8eHupPq
properties (22)
authoresteemapp
permlinkre-201978t10425941z
categoryintroduceyourself
json_metadata{"tags":["esteem"],"app":"esteem/2.0-welcome","format":"markdown+html","community":"esteem.app"}
created2019-07-08 08:43:00
last_update2019-07-08 08:43:00
depth1
children0
last_payout2019-07-15 08:43:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length915
author_reputation420,443,679,514,793
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,984,830
net_rshares0
@helo ·
$0.20
PR: https://github.com/CocosBCX/CocosPay/pull/1
PR: https://github.com/CocosBCX/CocosPay/pull/1 (Score: 20)
πŸ‘  , , ,
properties (23)
authorhelo
permlinkf4018e5bfba5491ccc632d01639dc3e31567703028400
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-09-05 17:03:48
last_update2019-09-05 17:03:48
depth1
children0
last_payout2019-09-12 17:03:48
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.099 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation121,547,934,535,311
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,281,484
net_rshares836,408,174,383
author_curate_reward""
vote details (4)
@merge-rewards ·
PR: https://github.com/steemgigs/steemgigs/pull/182
PR: https://github.com/steemgigs/steemgigs/pull/182 (Score: 33)
πŸ‘  
properties (23)
authormerge-rewards
permlink02dcfa733abd455a546bde78aba640b01564852871938
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-08-03 17:21:12
last_update2019-08-03 17:21:12
depth1
children0
last_payout2019-08-10 17:21: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_length63
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,100,607
net_rshares37,898,110,239
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/MattyIce/steem-engine/pull/69
PR: https://github.com/MattyIce/steem-engine/pull/69 (Score: 37)
πŸ‘  ,
properties (23)
authormerge-rewards
permlink05b990ccf01cb978525f87612c51ab831563663473715
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-20 22:57:54
last_update2019-07-20 22:57:54
depth1
children0
last_payout2019-07-27 22:57: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_length64
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,540,038
net_rshares30,175,399,627
author_curate_reward""
vote details (2)
@merge-rewards ·
PR: https://github.com/serhii73/find_the_site/pull/16
PR: https://github.com/serhii73/find_the_site/pull/16 (Score: 0)
πŸ‘  
properties (23)
authormerge-rewards
permlink2fd380b010b418ec060642ad188abc481570819668808
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-10-11 18:47:51
last_update2019-10-11 18:47:51
depth1
children0
last_payout2019-10-18 18:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,458,477
net_rshares732,422,041
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/lennart-k/HomeControl/pull/4
PR: https://github.com/lennart-k/HomeControl/pull/4 (Score: 13)
πŸ‘  
properties (23)
authormerge-rewards
permlink3c9e3a86ca7dc05ae266e73466c3db891565949625705
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-08-16 10:00:27
last_update2019-08-16 10:00:27
depth1
children0
last_payout2019-08-23 10:00:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,591,211
net_rshares10,095,699,861
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/ssanchez/friday-challenge.com/pull/20
PR: https://github.com/ssanchez/friday-challenge.com/pull/20 (Score: 13)
πŸ‘  
properties (23)
authormerge-rewards
permlink3f58e61fff8033793ece3804b154da111565949606744
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-08-16 10:00:15
last_update2019-08-16 10:00:15
depth1
children0
last_payout2019-08-23 10:00: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_length72
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,591,202
net_rshares5,028,711,610
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/MattyIce/steem-engine/pull/68
PR: https://github.com/MattyIce/steem-engine/pull/68 (Score: 37)
πŸ‘  ,
properties (23)
authormerge-rewards
permlink52e351a765329cdaf8c522e891aec6a5
categoryintroduceyourself
json_metadata{"id":"MDExOlB1bGxSZXF1ZXN0Mjg4MDgzNDc1","score":37,"permlink":"52e351a765329cdaf8c522e891aec6a5","githubUser":"mktcode"}
created2019-07-12 12:28:09
last_update2019-07-12 12:28:09
depth1
children0
last_payout2019-07-19 12:28: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_length64
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,200,314
net_rshares7,507,278,360
author_curate_reward""
vote details (2)
@merge-rewards ·
PR: https://github.com/MattyIce/steem-engine/pull/68
PR: https://github.com/MattyIce/steem-engine/pull/68 (Score: 37)
πŸ‘  , ,
properties (23)
authormerge-rewards
permlink52e351a765329cdaf8c522e891aec6a51563663498441
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-20 22:58:18
last_update2019-07-20 22:58:18
depth1
children0
last_payout2019-07-27 22:58: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_length64
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,540,050
net_rshares29,963,860,296
author_curate_reward""
vote details (3)
@merge-rewards ·
PR: https://github.com/engspa12/TravelDBM/pull/2
PR: https://github.com/engspa12/TravelDBM/pull/2 (Score: 13)
πŸ‘  
properties (23)
authormerge-rewards
permlink858d791caf24b420756a520e62b573521564476694093
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-30 08:51:36
last_update2019-07-30 08:51:36
depth1
children0
last_payout2019-08-06 08:51:36
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_length60
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,923,713
net_rshares12,651,167,288
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/jorgenhenrichsen/SwiftAudio/pull/62
PR: https://github.com/jorgenhenrichsen/SwiftAudio/pull/62 (Score: 33)
πŸ‘  ,
properties (23)
authormerge-rewards
permlink862c718fe0f1b0dfb9d56c50f7c851841564476684891
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-30 08:51:24
last_update2019-07-30 08:51:24
depth1
children0
last_payout2019-08-06 08:51: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_length70
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,923,705
net_rshares32,568,092,022
author_curate_reward""
vote details (2)
@merge-rewards ·
PR: https://github.com/mktcode/steemit-widgets/pull/4
PR: https://github.com/mktcode/steemit-widgets/pull/4 (Score: 43)
πŸ‘  
properties (23)
authormerge-rewards
permlink90f2ece9831b4b8d9faea3e61194ad231564500950915
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-30 15:35:51
last_update2019-07-30 15:35:51
depth1
children0
last_payout2019-08-06 15:35:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,938,866
net_rshares54,906,564
author_curate_reward""
vote details (1)
@merge-rewards · (edited)
PR: https://github.com/actifit/actifit-landingpage/pull/15
PR: https://github.com/actifit/actifit-landingpage/pull/15 (Score: 30)
πŸ‘  
properties (23)
authormerge-rewards
permlinka31ad957c629a02cf2ab0865d4d5a368
categoryintroduceyourself
json_metadata{"id":"MDExOlB1bGxSZXF1ZXN0MjkwMzUwNjMy","score":30,"permlink":"a31ad957c629a02cf2ab0865d4d5a368","githubUser":"mktcode","steemUser":"merge-rewards","pendingRewards":null,"rewards":null}
created2019-07-15 18:28:09
last_update2019-07-15 18:39:30
depth1
children0
last_payout2019-07-22 18:28: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_length70
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,336,277
net_rshares89,225,141
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/actifit/actifit-landingpage/pull/15
PR: https://github.com/actifit/actifit-landingpage/pull/15 (Score: 100)
πŸ‘  
properties (23)
authormerge-rewards
permlinka31ad957c629a02cf2ab0865d4d5a3681563799807830
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-22 12:50:09
last_update2019-07-22 12:50:09
depth1
children0
last_payout2019-07-29 12:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,604,522
net_rshares49,875,048
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/actifit/actifit-landingpage/pull/15
PR: https://github.com/actifit/actifit-landingpage/pull/15 (Score: 43)
πŸ‘  
properties (23)
authormerge-rewards
permlinka31ad957c629a02cf2ab0865d4d5a3681563800689484
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-22 13:04:51
last_update2019-07-22 13:04:51
depth1
children0
last_payout2019-07-29 13:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,605,256
net_rshares49,841,585
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/steemgigs/steemgigs/pull/184
PR: https://github.com/steemgigs/steemgigs/pull/184 (Score: 33)
πŸ‘  
properties (23)
authormerge-rewards
permlinkb38211b832658e0021c6fe42d7cae0fe1564852950976
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-08-03 17:22:30
last_update2019-08-03 17:22:30
depth1
children0
last_payout2019-08-10 17:22: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_length63
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,100,635
net_rshares37,527,694,518
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/ctrlaltcookie/McGoats/pull/4
PR: https://github.com/ctrlaltcookie/McGoats/pull/4 (Score: 13)
πŸ‘  
properties (23)
authormerge-rewards
permlinkb3f77d8f61d0180f237d02c1ca222df41564476673374
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-30 08:51:15
last_update2019-07-30 08:51:15
depth1
children0
last_payout2019-08-06 08:51: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_length63
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,923,696
net_rshares12,824,783,580
author_curate_reward""
vote details (1)
@merge-rewards ·
PR: https://github.com/bonustrack/steemconnect.js/pull/68
PR: https://github.com/bonustrack/steemconnect.js/pull/68 (Score: 53)
πŸ‘  ,
properties (23)
authormerge-rewards
permlinke7c1a0c51c857b03fa02f1215185fd341563662506889
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-20 22:41:48
last_update2019-07-20 22:41:48
depth1
children0
last_payout2019-07-27 22:41: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_length69
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,539,600
net_rshares42,452,668,107
author_curate_reward""
vote details (2)
@merge-rewards ·
PR: https://github.com/bonustrack/steemconnect.js/pull/68
PR: https://github.com/bonustrack/steemconnect.js/pull/68 (Score: 100)
πŸ‘  
properties (23)
authormerge-rewards
permlinke7c1a0c51c857b03fa02f1215185fd341563800525033
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-22 13:02:06
last_update2019-07-22 13:02:06
depth1
children0
last_payout2019-07-29 13:02: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_length70
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,605,108
net_rshares49,905,067
author_curate_reward""
vote details (1)
@merge-rewards ·
$0.02
PR: https://github.com/bonustrack/steemconnect.js/pull/68
PR: https://github.com/bonustrack/steemconnect.js/pull/68 (Score: 100)
πŸ‘  ,
properties (23)
authormerge-rewards
permlinke7c1a0c51c857b03fa02f1215185fd341563804410180
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-22 14:06:51
last_update2019-07-22 14:06:51
depth1
children0
last_payout2019-07-29 14:06:51
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation3,760,514,277,682
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,607,820
net_rshares68,012,452,478
author_curate_reward""
vote details (2)
@minnowresteemr ·
This post was resteemed by @minnowresteemr!

Send a min of 0.001 STEEM/SBD with post in memo for a resteem!

Follow me to support other Minnows!
properties (22)
authorminnowresteemr
permlink2cj09pganes
categoryintroduceyourself
json_metadata""
created2019-07-12 08:04:42
last_update2019-07-12 08:04:42
depth1
children0
last_payout2019-07-19 08:04:42
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_length144
author_reputation-46,458,159,172
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,190,536
net_rshares0
@mkt ·
$0.02
PR: https://github.com/MattyIce/steem-engine/pull/64
PR: https://github.com/MattyIce/steem-engine/pull/64 (Score: 33)
πŸ‘  , ,
properties (23)
authormkt
permlink99517e6fef7f497efca95bd26a2b975d
categoryintroduceyourself
json_metadata{"score":33,"prId":"MDExOlB1bGxSZXF1ZXN0Mjg2MjAyODc3"}
created2019-07-08 09:29:48
last_update2019-07-08 09:29:48
depth1
children0
last_payout2019-07-15 09:29:48
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation45,513,283,519,678
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,986,480
net_rshares48,276,501,220
author_curate_reward""
vote details (3)
@mkt ·
$0.02
PR: https://github.com/busyorg/busy/pull/2206
PR: https://github.com/busyorg/busy/pull/2206 (Score: 80)
πŸ‘  , ,
properties (23)
authormkt
permlinkb4adc41158e101a0caed92d7246b51f5
categoryintroduceyourself
json_metadata{"score":80,"prId":"MDExOlB1bGxSZXF1ZXN0Mjg1MDkwMzky"}
created2019-07-08 17:12:27
last_update2019-07-08 17:12:27
depth1
children0
last_payout2019-07-15 17:12:27
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation45,513,283,519,678
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,005,698
net_rshares49,232,123,731
author_curate_reward""
vote details (3)
@mkt ·
PR: https://github.com/bonustrack/steemconnect.js/pull/68
PR: https://github.com/bonustrack/steemconnect.js/pull/68 (Score: 53)
πŸ‘  ,
properties (23)
authormkt
permlinke7c1a0c51c857b03fa02f1215185fd341563469442754
categoryintroduceyourself
json_metadata{"app":"merge-rewards.com"}
created2019-07-18 17:04:03
last_update2019-07-18 17:04:03
depth1
children0
last_payout2019-07-25 17:04: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_length69
author_reputation45,513,283,519,678
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,455,855
net_rshares39,337,232,656
author_curate_reward""
vote details (2)
@outhori5ed ·
Interesting. I will try it right away

Posted using [Partiko Android](https://partiko.app/referral/outhori5ed)
πŸ‘  
properties (23)
authorouthori5ed
permlinkouthori5ed-re-merge-rewards-merge-rewards-beta-root-post-20190713t155313826z
categoryintroduceyourself
json_metadata{"app":"partiko","client":"android"}
created2019-07-13 15:53:15
last_update2019-07-13 15:53:15
depth1
children2
last_payout2019-07-20 15:53: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_length110
author_reputation39,356,239,578,011
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,248,874
net_rshares3,155,896,379
author_curate_reward""
vote details (1)
@mkt ·
Thank you! For now there are not really any rewards because the account does not have any steem power. But I'm working on a lot of improvements already anyway, in the hope to attract some influencial supporters. If you like follow @merge-rewards. There will be a big update in the coming days.
properties (22)
authormkt
permlinkre-outhori5ed-outhori5ed-re-merge-rewards-merge-rewards-beta-root-post-20190713t203044533z
categoryintroduceyourself
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["introduceyourself"],"users":["merge-rewards."],"links":["/@merge-rewards"],"image":[]}
created2019-07-13 20:30:45
last_update2019-07-13 20:30:45
depth2
children1
last_payout2019-07-20 20:30: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_length293
author_reputation45,513,283,519,678
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,257,304
net_rshares0
@outhori5ed ·
Ok. I have been able to sign in by the way; maybe due to my network issue. I will follow @merge-rewards cause I am just confidence this will easily be the next BIG thing. 

Congratulations @mkt

Posted using [Partiko Android](https://partiko.app/referral/outhori5ed)
properties (22)
authorouthori5ed
permlinkouthori5ed-re-mkt-re-outhori5ed-outhori5ed-re-merge-rewards-merge-rewards-beta-root-post-20190713t203416766z
categoryintroduceyourself
json_metadata{"app":"partiko","client":"android"}
created2019-07-13 20:34:18
last_update2019-07-13 20:34:18
depth3
children0
last_payout2019-07-20 20:34: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_length266
author_reputation39,356,239,578,011
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,257,429
net_rshares0
@partiko ·
Welcome to Steem merge-rewards! Partiko is officially the fastest and most popular mobile app for Steem. Unlike other Steem apps, we take 0% cut of your earnings! You can also be rewarded with Partiko Points while using Partiko and exchange Partiko Points for upvotes!

Partiko for Android can be downloaded [here on Google Play](http://bit.ly/2SRFIta) and the iOS version is available [here on the App Store](https://apple.co/2PcXkSd).

If you have more questions, feel free to join our [Discord channel](https://discord.gg/N7Et97G) and ask [@crypto.talk](https://steemit.com/@crypto.talk), we're always here to help!

Thank you so much for your interest!
properties (22)
authorpartiko
permlinkre-merge-rewards-beta-root-post-20190708t112147
categoryintroduceyourself
json_metadata"{"app": "partiko"}"
created2019-07-08 11:21:48
last_update2019-07-08 11:21:48
depth1
children0
last_payout2019-07-15 11:21: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_length656
author_reputation39,207,160,334,751
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,989,811
net_rshares0
@steem-ua ·
#### Hi @merge-rewards!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-merge-rewards-beta-root-post-20190708t170150z
categoryintroduceyourself
json_metadata"{"app": "beem/0.20.19"}"
created2019-07-08 17:01:51
last_update2019-07-08 17:01:51
depth1
children0
last_payout2019-07-15 17:01:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length292
author_reputation23,214,230,978,060
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,005,140
net_rshares0
@steemitboard ·
Congratulations @merge-rewards! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://steemitimages.com/60x60/http://steemitboard.com/img/notifications/firstpost.png"></td><td>You published your First Post</td></tr>
<tr><td><img src="https://steemitimages.com/60x60/http://steemitboard.com/img/notifications/firstvote.png"></td><td>You made your First Vote</td></tr>
<tr><td><img src="https://steemitimages.com/60x60/http://steemitboard.com/img/notifications/firstvoted.png"></td><td>You got a First Vote</td></tr>
<tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@merge-rewards/voted.png?201907080933"></td><td>You received more than 10 upvotes. Your next target is to reach 50 upvotes.</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@merge-rewards) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=merge-rewards)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-merge-rewards-20190708t131659000z
categoryintroduceyourself
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-07-08 13:16:57
last_update2019-07-08 13:16:57
depth1
children0
last_payout2019-07-15 13:16: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_length1,316
author_reputation38,975,615,169,260
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,994,448
net_rshares0
@tuanis ·
Welcome
**Welcome to steemit @merge-rewards.**
- Join @minnowsupport project for more help
- Checkout @helpie for daily trivias and useful information
- Join @qurator a good quality support project
- Checkout @steembasicincome
- Help us save the forest with @treeplanter

Welcome the new steemians. Have a great day!
properties (22)
authortuanis
permlinkre-merge-rewards-merge-rewards-beta-root-post-20190708t193156932z
categoryintroduceyourself
json_metadata{}
created2019-07-08 19:31:57
last_update2019-07-08 19:31:57
depth1
children0
last_payout2019-07-15 19:31: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_length308
author_reputation6,221,724,998,633
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,012,488
net_rshares0
@utopian-io ·
Hey, @merge-rewards!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-merge-rewards-beta-root-post-20190709t054723z
categoryintroduceyourself
json_metadata"{"app": "beem/0.20.17"}"
created2019-07-09 05:47:24
last_update2019-07-09 05:47:24
depth1
children0
last_payout2019-07-16 05:47: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_length595
author_reputation152,955,367,999,756
root_title"Merge Rewards (BETA) - Earn money with your Pull Requests on GitHub!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,039,858
net_rshares0