Hi everyone! I suppose our SteemFest 3 presentation piqued your curiosity. You've also discovered that we plan to release the V2 in April 2019. So how about you help us release it faster?  # What does Utopian need? ## Am I suited for this? If you want to help us we are looking for some experienced developers to do some tasks posted as issues on GitHub. If you're are beginner it will probably be a little difficult for you. ## What is the technology stack? - **Database:** MongoDB - **Backend:** NodeJS 10, Mongoose, HapiJS, Joi, Ramda, mocha, chai - **Frontend:** NodeJS 10, Quasar Framework, jest - **Monorepo with lerna, packages manager with yarn** - **Development process:** Kanban, Git flow, Jira, Pull Requests Are you up to the task? Let's find out what you can do to help us. # Give me some work! ## Finding my first task The first thing you need to do is check the [public project board](https://github.com/orgs/utopian-io/projects/4). Any task that is in the TODO column and not assigned is ready for development and waiting for someone. Check the different user stories available, look at the acceptance criteria and the design. If no one does them, someone from the core team will work on them at some point but they are designed to be done by you, utopian supporters/contributors/followers. Once your work is done, you'll be able to write an article about it and get a nice utopian upvote! Take the time to read the [LICENSE](https://github.com/utopian-io/v2.utopian.io/blob/develop/LICENSE) file too ;) You've picked one? ## Getting approved There is one last final step before you can actually start developing, it's being picked by me :p. Go to the [utopian discord](https://discord.gg/CA9pqES) and DM @gregory[mod] with the following message: > Hi, I would like to start working on the task GITHUB_ISSUE_LINK. > A little bit about me: a short description of your experience as a developer > and your github repo if you have one, it's really better if you have one You will then join a dedicated discord channel and meet your fellow collaborators. **Please read the pinned messages of the channel before doing anything else.** There are a few guidelines to help you code and how the project is structured. @icaro, @nothingismagick and me will be here to help you if you ever need it. I'm doing this final selection step to be sure I won't spend my time doing PR reviews. Let's get to work! # Setup the development environment as an external contributor I'm going to walk you through all the necessary steps so you can start working on your task. ## Getting the code You need to install first: - [nodejs >= 10](https://nodejs.org/) - [lerna](https://github.com/lerna/lerna) - [yarn](https://yarnpkg.com) Make sure everything is OK ``` gregory@Laptop:~$ node --version v10.13.0 gregory@Laptop:~$ lerna --version 3.4.0 gregory@Laptop:~$ yarn --version 1.9.4 gregory@Laptop:~$ git --version git version 2.17.1 ``` Then fork the repository [v2.utopian.io](https://github.com/utopian-io/v2.utopian.io) and clone your repo into your favorite development folder. Now if everything is have been done correctly simply run inside the root directory ``` lerna bootstrap ``` This will install every packages. Almost done? Well there are still a few things to setup. NB: if for some reason something were wrong, you can run `yarn` separately in the api, auth and client package. ## Configuring external services ### The API copy the .env.example file to .env #### The database The first thing you need to do is setup a mongo database. You can either install one locally or use an external provider like [mLab](https://mlab.com/). This is what we are using for the development of the website. That way, all of us use the same database and we know if some features that change the models break each other code. Once you're done, you can update the .env. You should have something like this: ``` MONGODB_URI=mongodb://user:password@hostname:port/database ``` #### The GitHub authentication app For now, utopian use GitHub as a social provider to create an account or to sign in. We will add LinkedIn and Google later too but that's another story. Go to your [GitHub Developper account](https://github.com/settings/developers) and click on **Register a new application**. Fill the form and get your APP ID and SECRET. - **Application name:** Utopian Personal OAuth - **Homepage URL:** http://localhost:8081 - **Application description:** Utopian Personal OAuth - **Authorization callback URL:** http://localhost:8081 Once you're done, you can update the .env. You should have something like this: ``` GITHUB_CLIENT_ID=92d8b2d965f0d0e7b5ba GITHUB_CLIENT_SECRET=utopianisawesome ``` #### JWT Secret You can type whatever you want. The application use JWT token to manage the authentication inside the app. This secret will be used to sign and verify the access and refresh tokens. But for development purposes, no need to have a strong key. #### SteemConnect App & Encryption Key For now, most of the tasks (and probably all them) won't need the Steem blockchain. So it's not needed for the development. But if you want to have the complete setup, you can create your SteemConnect App. This App will be used in utopian to publish content on the blockchain but not exactly like most applications are currently doing it. Further explanations will be provided later in our FAQ. OK you're all set for the API, let's check the Auth app. ### The Auth app Utopian will have many services in the future and we want one central point for authentication. This app will also allow newcomers to create a free steem account. @icaro is working actively on it! Copy the .env.example file to .env like for the API project. You can leave the default values and add your GitHub OAuth App ID. You should have something like this: ``` GITHUB_CLIENT_ID=92d8b2d965f0d0e7b5ba ``` ### The Client App Everything you need have been previously created. You just need to add the different keys. Your file should then look like this if you've left the default settings: ``` UTOPIAN_API='"http://localhost:5000"' GITHUB_CLIENT_ID='"92d8b2d965f0d0e7b5ba"' STEEMCONNECT_CLIENT_ID='""' // Not needed for now UTOPIAN_DOMAIN='"http://localhost:8080"' AUTH_DOMAIN='"http://localhost:8081"' ``` Notice the single and double quotes. And that's it for now. This tutorial might evolve as development progresses because we will need more external services. ## What's next? As announced during the SteemFest 3, I will publish a series of tasks on GitHub on Tuesday, Nov 13th. Those tasks will concern the article module. While you will be working on this, the core team will continue its work on fundamental features needed in the app. The more we progress, the more we will be able to allow you to contribute on all the other modules. If you want a head start, don't wait for Tuesday and start reading the [amazing documentation of the Quasar framework](https://quasar-framework.org/guide/). Good luck to all of you, and I hope you help us release Utopian V2 before April 2019 :D!
author | gregory.latinier |
---|---|
permlink | how-to-contribute-to-utopian-v2-the-complete-tutorial |
category | utopian-io |
json_metadata | {"tags":["utopian-io","tutorial","development","contributors"],"users":["gregory","icaro","nothingismagick"],"links":["https://github.com/orgs/utopian-io/projects/4","https://github.com/utopian-io/v2.utopian.io/blob/develop/LICENSE","https://discord.gg/CA9pqES","https://nodejs.org/","https://github.com/lerna/lerna","https://yarnpkg.com","https://github.com/utopian-io/v2.utopian.io","https://mlab.com/","https://github.com/settings/developers","http://localhost:8081","https://quasar-framework.org/guide/"],"app":"steemit/0.1","format":"markdown","image":["https://steemitimages.com/0x0/https://i.imgur.com/8uSV4cR.jpg"]} |
created | 2018-11-08 21:34:30 |
last_update | 2018-11-23 15:00:27 |
depth | 0 |
children | 4 |
last_payout | 2018-11-15 21:34:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 213.302 HBD |
curator_payout_value | 70.249 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,172 |
author_reputation | 34,278,323,818,021 |
root_title | "How to contribute to utopian V2, the complete tutorial" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,939,025 |
net_rshares | 271,949,252,127,239 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jesse5th | 0 | 64,419,228 | 50% | ||
warofcraft | 0 | 0 | 20% | ||
victordoan | 0 | 8,030,257,054 | 100% | ||
eforucom | 0 | 3,363,492,254 | 1.11% | ||
thejohalfiles | 0 | 26,140,677,852,403 | 100% | ||
minersean | 0 | 1,801,645,889 | 100% | ||
walterjay | 0 | 135,644,413,298 | 100% | ||
cardboard | 0 | 1,060,527,658 | 100% | ||
zephyraijunzo | 0 | 91,928,316,040 | 100% | ||
yuslindwi | 0 | 1,288,974,988 | 100% | ||
borislavzlatanov | 0 | 2,988,236,282 | 100% | ||
lordneroo | 0 | 20,098,055,591 | 100% | ||
miniature-tiger | 0 | 158,828,800,094 | 100% | ||
cryptoshack | 0 | 12,058,316,894 | 18% | ||
stackin | 0 | 13,184,712,889 | 3% | ||
jakipatryk | 0 | 68,073,754,019 | 100% | ||
knowledges | 0 | 8,804,132,166 | 100% | ||
haiyangdeperci | 0 | 6,860,297,160 | 20% | ||
madkrieg | 0 | 141,347,260 | 100% | ||
fandy | 0 | 521,035,899 | 100% | ||
ashokcan143 | 0 | 667,907,564 | 100% | ||
molometer | 0 | 52,511,529,416 | 100% | ||
codingdefined | 0 | 6,816,067,460 | 7.5% | ||
petecko | 0 | 17,303,062,470 | 100% | ||
cifer | 0 | 3,082,194,192 | 68% | ||
sharif99 | 0 | 72,284,715 | 21.22% | ||
rosatravels | 0 | 243,603,637,799 | 100% | ||
spiritualmatters | 0 | 1,529,411,070 | 100% | ||
espoem | 0 | 35,071,060,725 | 20% | ||
upme | 0 | 42,778,717,263,516 | 68.66% | ||
steemseph | 0 | 25,237,234,936 | 100% | ||
pierlave | 0 | 3,357,319,272 | 100% | ||
melvin.etniopal | 0 | 1,746,671,742 | 100% | ||
myjourney | 0 | 68,913,133,267 | 100% | ||
elear | 0 | 9,426,060,613 | 100% | ||
indiavenom | 0 | 251,953,219 | 50% | ||
utopian-io | 0 | 124,945,820,187,825 | 100% | ||
favcau | 0 | 73,305,051,770 | 100% | ||
jaff8 | 0 | 83,912,183,682 | 100% | ||
emrebeyler | 0 | 144,115,088,443 | 9% | ||
ffp84 | 0 | 0 | 100% | ||
katerinaramm | 0 | 30,234,785,489 | 100% | ||
smartsteem | 0 | 51,149,332,779,330 | 42.44% | ||
coincash | 0 | 455,396,076 | 100% | ||
ajayyy | 0 | 9,486,658,653 | 100% | ||
cpufronz | 0 | 4,603,301,526 | 100% | ||
fortunex | 0 | 1,980,945,116 | 99% | ||
amosbastian | 0 | 19,852,543,742 | 10% | ||
stuffbyspencer | 0 | 818,714,761 | 100% | ||
oups | 0 | 32,295,267,534 | 100% | ||
cfminer | 0 | 1,652,642,077 | 100% | ||
hunterx3 | 0 | 2,002,699,239 | 100% | ||
nedy | 0 | 32,369,272,815 | 100% | ||
yussan | 0 | 0 | 100% | ||
roj | 0 | 5,623,938,881 | 100% | ||
flugschwein | 0 | 30,638,505,006 | 75% | ||
fawakatube | 0 | 500,615,521 | 100% | ||
stocktober | 0 | 168,513,424 | 51% | ||
simplymike | 0 | 56,796,247,168 | 40% | ||
haber.bet | 0 | 436,771,151 | 100% | ||
michaeladkins | 0 | 153,891,930,584 | 100% | ||
therising | 0 | 24,941,818,591,599 | 48% | ||
josedelacruz | 0 | 4,385,716,901 | 100% | ||
andreasgrubhofer | 0 | 605,813,811 | 1% | ||
duski.harahap | 0 | 13,576,557,537 | 100% | ||
coinsandchains | 0 | 3,863,699,138 | 7.3% | ||
malia88 | 0 | 503,022,153 | 100% | ||
svetlana1 | 0 | 0 | 100% | ||
merry1990 | 0 | 503,046,480 | 100% | ||
alex20050503 | 0 | 0 | 100% | ||
alina34 | 0 | 0 | 100% | ||
zaykanew | 0 | 501,564,365 | 100% | ||
borndead04 | 0 | 503,480,877 | 100% | ||
jemissongordon | 0 | 0 | 100% | ||
petrenkosashka | 0 | 502,774,285 | 100% | ||
boyarovkostya | 0 | 501,835,366 | 100% | ||
davletshi | 0 | 0 | 100% | ||
olegjadkov | 0 | 502,071,655 | 100% | ||
borndead02 | 0 | 0 | 100% | ||
byblik1811 | 0 | 502,421,366 | 100% | ||
maruse4ka | 0 | 501,391,893 | 100% | ||
maluninivan | 0 | 0 | 100% | ||
giogiorgadze1221 | 0 | 0 | 100% | ||
jorikmxitaryan | 0 | 501,934,935 | 100% | ||
saevpek | 0 | 500,980,905 | 100% | ||
vaelnaltasa | 0 | 0 | 100% | ||
kelal | 0 | 0 | 100% | ||
dashakarapetyan | 0 | 0 | 100% | ||
samvelv | 0 | 499,527,302 | 100% | ||
robsimsh | 0 | 0 | 100% | ||
mashussyrtva | 0 | 501,953,228 | 100% | ||
patrickk97 | 0 | 501,615,748 | 100% | ||
trovimov | 0 | 502,542,776 | 100% | ||
submitchair | 0 | 0 | 100% | ||
banksyscotch | 0 | 0 | 100% | ||
fightjumping | 0 | 0 | 100% | ||
bedbugsslim | 0 | 0 | 100% | ||
rosepac | 0 | 1,222,913,122 | 100% | ||
bankhayloft | 0 | 0 | 100% | ||
patterpavo | 0 | 0 | 100% | ||
ellibor | 0 | 500,233,271 | 100% | ||
kendip | 0 | 502,301,699 | 100% | ||
banchick | 0 | 0 | 100% | ||
gartiv88 | 0 | 0 | 100% | ||
ervinj89 | 0 | 0 | 100% | ||
jacktyler97 | 0 | 502,017,907 | 100% | ||
art-s | 0 | 6,510,322,758 | 100% | ||
cwitosaw | 0 | 0 | 100% | ||
backbonewriter | 0 | 502,262,112 | 100% | ||
lemonydietary | 0 | 0 | 100% | ||
beamarete | 0 | 501,374,830 | 100% | ||
mightypanda | 0 | 54,007,758,274 | 40% | ||
momekato | 0 | 945,741,937 | 100% | ||
warblingunchin | 0 | 0 | 100% | ||
filmsdormant | 0 | 502,259,119 | 100% | ||
ruralcapsule | 0 | 0 | 100% | ||
bowlinediamox | 0 | 502,169,659 | 100% | ||
whirrhomerun | 0 | 500,890,837 | 100% | ||
pegsstadium | 0 | 0 | 100% | ||
porkfondant | 0 | 502,177,040 | 100% | ||
movementfrugal | 0 | 0 | 100% | ||
womancarve | 0 | 502,215,701 | 100% | ||
tensteam | 0 | 0 | 100% | ||
payslipsitaly | 0 | 501,221,687 | 100% | ||
embryofemur | 0 | 0 | 100% | ||
pointingevasive | 0 | 501,349,906 | 100% | ||
friedradius | 0 | 0 | 100% | ||
chilis | 0 | 0 | 10% | ||
olive-garden | 0 | 10,546,980 | 10% | ||
bangbangbooking | 0 | 0 | 100% | ||
twistlumber | 0 | 500,709,910 | 100% | ||
pastrytorn | 0 | 0 | 100% | ||
yeastynamaka | 0 | 500,620,205 | 100% | ||
blindjab | 0 | 0 | 100% | ||
doubtdisney | 0 | 502,133,507 | 100% | ||
gunpowderwigeon | 0 | 0 | 100% | ||
roomthundering | 0 | 0 | 100% | ||
operandabove | 0 | 502,133,013 | 100% | ||
nonrespond | 0 | 0 | 100% | ||
putridbrecon | 0 | 0 | 100% | ||
ershov21 | 0 | 501,645,994 | 100% | ||
runaeva23 | 0 | 502,326,067 | 100% | ||
semenova32 | 0 | 0 | 100% | ||
new-voices | 0 | 10,836,736 | 10% | ||
tamilaisaeva | 0 | 501,923,381 | 100% | ||
semirovaalinka | 0 | 503,047,458 | 100% | ||
reginasamkova | 0 | 501,720,588 | 100% | ||
joinneutron | 0 | 502,549,157 | 100% | ||
tugpoisonous | 0 | 0 | 100% | ||
freshwan | 0 | 0 | 100% | ||
easiertingley | 0 | 0 | 100% | ||
stinkydescribe | 0 | 502,118,157 | 100% | ||
aleindium | 0 | 0 | 100% | ||
creamssugar | 0 | 501,494,317 | 100% | ||
crumpledsolemn | 0 | 501,892,733 | 100% | ||
partialbullhorn | 0 | 0 | 100% | ||
unripecrested | 0 | 0 | 100% | ||
toplice | 0 | 502,759,223 | 100% | ||
sleepyneodymium | 0 | 502,969,167 | 100% | ||
ragssunny | 0 | 0 | 100% | ||
abcsleeveless | 0 | 500,146,754 | 100% | ||
borealisquirt | 0 | 0 | 100% | ||
ploverpick | 0 | 501,613,702 | 100% | ||
amusingbun | 0 | 502,808,755 | 100% | ||
finesuper | 0 | 501,619,309 | 100% | ||
steemchoose | 0 | 61,544,782,987 | 3.5% | ||
wenxuecity | 0 | 10,696,692 | 10% | ||
goringdriver | 0 | 0 | 100% | ||
heapimport | 0 | 0 | 100% | ||
pointsbee | 0 | 0 | 100% | ||
autostopper | 0 | 0 | 100% | ||
firepoint | 0 | 0 | 100% | ||
twitchgoody | 0 | 501,998,862 | 100% | ||
eatercaper | 0 | 0 | 100% | ||
brandcomment | 0 | 502,576,633 | 100% | ||
pollsprat | 0 | 503,042,666 | 100% | ||
playactor | 0 | 0 | 100% | ||
glassescuckoo | 0 | 0 | 100% | ||
coinsicy | 0 | 502,121,475 | 100% | ||
alonecatdisc | 0 | 503,254,989 | 100% | ||
weaselcheek | 0 | 0 | 100% | ||
servletbookmark | 0 | 0 | 100% | ||
magichive | 0 | 0 | 100% | ||
fogmonkey | 0 | 0 | 100% | ||
lipspin | 0 | 503,180,374 | 100% | ||
lotgreasy | 0 | 503,007,760 | 100% | ||
lividbouncy | 0 | 501,745,044 | 100% | ||
dashlone | 0 | 0 | 100% | ||
puffinbusy | 0 | 502,410,854 | 100% | ||
foundedinert | 0 | 502,466,083 | 100% | ||
zhilin8 | 0 | 0 | 100% | ||
nseregin8 | 0 | 0 | 100% | ||
alexkorban93 | 0 | 501,987,848 | 100% | ||
stewekroli | 0 | 0 | 100% | ||
vtemnotu | 0 | 0 | 100% | ||
szymongorski13 | 0 | 465,778,970 | 100% | ||
jmiller05 | 0 | 1,358,868,680 | 20% | ||
bluengel | 0 | 101,475,268 | 100% | ||
moskalenkoalexey | 0 | 0 | 100% | ||
almostegret | 0 | 0 | 100% | ||
bypassburger | 0 | 503,362,322 | 100% | ||
massfishing | 0 | 0 | 100% | ||
pitondessert | 0 | 0 | 100% | ||
risklek | 0 | 0 | 100% | ||
studiedcovalent | 0 | 0 | 100% | ||
brickgordon | 0 | 0 | 100% | ||
beerlimey | 0 | 504,004,768 | 100% | ||
tattooedwinner | 0 | 0 | 100% | ||
dyogramsponson | 0 | 502,039,513 | 100% | ||
desertredox | 0 | 0 | 100% | ||
pullsympathize | 0 | 0 | 100% | ||
reinfizzy | 0 | 502,861,302 | 100% | ||
clusteroctane | 0 | 503,905,091 | 100% | ||
lymphomatumblr | 0 | 0 | 100% | ||
periodantenna | 0 | 503,874,211 | 100% | ||
padadvice | 0 | 502,011,888 | 100% | ||
trimminiature | 0 | 0 | 100% | ||
ringbiceps | 0 | 503,419,973 | 100% | ||
statusrespond | 0 | 502,405,200 | 100% | ||
flashmixin | 0 | 503,499,866 | 100% | ||
sundesha | 0 | 514,099,666 | 100% | ||
up1 | 0 | 1,039,647,671 | 2.71% | ||
merlin7 | 0 | 59,672,400,074 | 2.8% | ||
mco | 0 | 924,902,350 | 12.34% | ||
aljager78 | 0 | 0 | 100% | ||
anna151286 | 0 | 503,444,006 | 100% | ||
alitvinenko | 0 | 0 | 100% | ||
devidhodz | 0 | 504,422,572 | 100% | ||
garrisaymon | 0 | 502,963,331 | 100% | ||
chepmengeri | 0 | 503,956,858 | 100% | ||
etanuelch | 0 | 503,072,129 | 100% | ||
rodzherg | 0 | 0 | 100% | ||
oleg.domov | 0 | 504,404,767 | 100% | ||
alicia.osina | 0 | 0 | 100% | ||
mmmisha | 0 | 504,033,372 | 100% | ||
nlazarev69 | 0 | 503,426,567 | 100% | ||
petrjemson | 0 | 0 | 100% | ||
yaroslav.chuykov | 0 | 504,662,537 | 100% | ||
sergeyrevutskiy | 0 | 0 | 100% | ||
andrey.levin92 | 0 | 0 | 100% | ||
anmakarov19 | 0 | 0 | 100% | ||
aprokopenko1990 | 0 | 504,104,883 | 100% | ||
aschat1985 | 0 | 503,152,201 | 100% | ||
stas.borenko | 0 | 504,674,829 | 100% | ||
ivan.krasnenko | 0 | 503,343,686 | 100% | ||
igmosk1987 | 0 | 503,145,206 | 100% | ||
perlov11 | 0 | 0 | 100% | ||
stewem | 0 | 504,205,050 | 100% | ||
bandos | 0 | 0 | 100% | ||
officialex | 0 | 503,686,315 | 100% | ||
yyyz | 0 | 0 | 100% | ||
uliaa | 0 | 503,903,327 | 100% | ||
lereve | 0 | 1,069,919,152 | 1.84% | ||
gameo | 0 | 481,395,290 | 100% | ||
mansolitario | 0 | 488,365,075 | 100% | ||
neyda1975 | 0 | 1,297,146,003 | 100% | ||
sheikhshahin | 0 | 0 | 5% | ||
sethparker71992 | 0 | 0 | 100% | ||
me-atif | 0 | 11,920,964,398 | 100% | ||
starrouge | 0 | 1,863,928,429 | 100% | ||
curbot | 0 | 4,104,589,795 | 10% | ||
motorwaysilt | 0 | 506,532,024 | 100% | ||
japanesecliff | 0 | 0 | 100% | ||
tempotruck | 0 | 506,006,501 | 100% | ||
screechingchothy | 0 | 0 | 100% | ||
liarslalom | 0 | 504,824,110 | 100% | ||
tonkaerobics | 0 | 0 | 100% | ||
curdterrace | 0 | 0 | 100% | ||
conditionsglope | 0 | 0 | 100% | ||
alpineraging | 0 | 505,259,243 | 100% | ||
wigeonpate | 0 | 0 | 100% | ||
ripebacon | 0 | 506,476,875 | 100% | ||
stopskimmed | 0 | 0 | 100% | ||
facedfagglers | 0 | 505,988,506 | 100% | ||
picketscrub | 0 | 506,047,779 | 100% | ||
dirconnect | 0 | 0 | 100% | ||
valeev.anton | 0 | 505,003,756 | 100% | ||
lina766 | 0 | 0 | 100% | ||
effekt.axe | 0 | 505,226,391 | 100% | ||
oles9373 | 0 | 505,251,221 | 100% | ||
england.pub | 0 | 505,254,239 | 100% | ||
artemka222 | 0 | 0 | 100% | ||
gemgoosander | 0 | 504,857,499 | 100% | ||
mustangpaddling | 0 | 504,766,660 | 100% | ||
leafslurp | 0 | 0 | 100% | ||
bubbishninks | 0 | 506,290,790 | 100% | ||
smellbaryon | 0 | 506,506,895 | 100% | ||
thrarmshovels | 0 | 0 | 100% | ||
boatswainjick | 0 | 505,332,142 | 100% | ||
espumaringer | 0 | 0 | 100% | ||
vegetableplus | 0 | 505,982,436 | 100% | ||
beeseregister | 0 | 505,616,487 | 100% | ||
baggygruesome | 0 | 0 | 100% | ||
bitessolve | 0 | 506,527,624 | 100% | ||
hiveclamorous | 0 | 506,170,239 | 100% | ||
shampoowalker | 0 | 505,259,851 | 100% | ||
bowedfrazzled | 0 | 505,724,501 | 100% | ||
beginfloating | 0 | 506,334,301 | 100% | ||
lackingtalent | 0 | 0 | 100% | ||
hinneymeager | 0 | 0 | 100% | ||
vicarneuron | 0 | 0 | 100% | ||
geologisteiger | 0 | 0 | 100% | ||
woundsattracted | 0 | 0 | 100% | ||
hydratededitor | 0 | 505,321,000 | 100% | ||
furiouslife | 0 | 0 | 100% | ||
wolewinted | 0 | 0 | 100% | ||
takingtruck | 0 | 506,316,181 | 100% | ||
butanecomment | 0 | 504,842,974 | 100% | ||
goldendotterel | 0 | 506,325,617 | 100% | ||
mexicanrichest | 0 | 505,017,790 | 100% | ||
turkishforumbee | 0 | 505,313,839 | 100% | ||
coulombprincess | 0 | 505,975,702 | 100% | ||
laifroninidud | 0 | 505,724,972 | 100% | ||
randrolcheribun | 0 | 0 | 100% | ||
amafcolmedoor | 0 | 0 | 100% | ||
windworlmetmigu | 0 | 504,883,744 | 100% | ||
onitmukyta | 0 | 0 | 100% | ||
bulldoperser | 0 | 506,173,885 | 100% | ||
batmimabeme | 0 | 504,781,299 | 100% | ||
sacofitcocomp | 0 | 0 | 100% | ||
vaultec | 0 | 260,806,655 | 100% | ||
mabelarevalos | 0 | 532,254,395 | 100% | ||
goldman1 | 0 | 497,873,291 | 100% | ||
gilber07alexis | 0 | 171,948,780 | 100% | ||
mnll | 0 | 171,693,147 | 100% | ||
volcancr | 0 | 1,887,465,050 | 100% | ||
davidchen | 0 | 2,732,519,568 | 40% | ||
ibrahemazzazi | 0 | 520,428,265 | 100% | ||
fraico | 0 | 436,253,749 | 100% | ||
rootsrmg | 0 | 416,076,170 | 100% | ||
eoe | 0 | 526,213,029 | 100% | ||
rolladice | 0 | 526,672,847 | 100% | ||
gedo | 0 | 476,132,204 | 100% | ||
tipu.curator | 0 | 2,148,017,462 | 100% | ||
kandykiino | 0 | 36,957,556 | 100% | ||
sujets | 0 | 671,372,993 | 100% |
Thanks Gregory. I wanted to add that Utopian will offer interesting bounties to incentivise contributors from our community and beyond to join the development of the platform. I am 100% sure with the support of the community Utopian is going to be here sooner than what we anticipated. Great job!
author | elear |
---|---|
permlink | re-gregorylatinier-how-to-contribute-to-utopian-v2-the-complete-tutorial-20181110t195037205z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-11-10 19:50:39 |
last_update | 2018-11-10 19:50:39 |
depth | 1 |
children | 0 |
last_payout | 2018-11-17 19:50:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 297 |
author_reputation | 59,749,428,580,040 |
root_title | "How to contribute to utopian V2, the complete tutorial" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,052,562 |
net_rshares | 30,507,805,053 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
knowledges | 0 | 9,328,635,297 | 100% | ||
flugschwein | 0 | 21,179,169,756 | 50% |
This post has received a 20.00% upvote from @jmiller05!
author | jmiller05 |
---|---|
permlink | re-gregorylatinier-how-to-contribute-to-utopian-v2-the-complete-tutorial-20181112t152107666z |
category | utopian-io |
json_metadata | {"app":"communitybot/1.1.0"} |
created | 2018-11-12 15:21:09 |
last_update | 2018-11-12 15:21:09 |
depth | 1 |
children | 1 |
last_payout | 2018-11-19 15:21:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.114 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 623,662,337,100 |
root_title | "How to contribute to utopian V2, the complete tutorial" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,157,839 |
net_rshares | 174,225,551,156 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
warwarmyit | 0 | 484,772,262 | 100% | ||
arv1 | 0 | 1,004,391,454 | 2% | ||
sentipark | 0 | 483,593,399 | 100% | ||
oceanwhale | 0 | 172,252,794,041 | 4.21% |
You got a 4.21% upvote from @oceanwhale courtesy of @sweetpee! Earn 100% earning payout by delegating SP to <a href="/@oceanwhale">@oceanwhale</a>. Visit <a title="This link will take you away from steemit.com" href="http://www.oceanwhalebot.com" rel="noopener">www.OceanWhaleBot.com</a> for details!
author | oceanwhale |
---|---|
permlink | re-jmiller05-re-gregorylatinier-how-to-contribute-to-utopian-v2-the-complete-tutorial-20181112t152107666z-20181115t230241535z |
category | utopian-io |
json_metadata | {"app":"postpromoter/2.1.1"} |
created | 2018-11-15 23:02:42 |
last_update | 2018-11-15 23:02:42 |
depth | 2 |
children | 0 |
last_payout | 2018-11-22 23:02:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 302 |
author_reputation | 3,006,463,059,607 |
root_title | "How to contribute to utopian V2, the complete tutorial" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,359,931 |
net_rshares | 0 |
Cool stuff. Honestly, I really want to see the project website up and running before April. I'll share this across many dev channels that I know.
author | knowledges |
---|---|
permlink | re-gregorylatinier-how-to-contribute-to-utopian-v2-the-complete-tutorial-20181110t204908631z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-11-10 20:49:12 |
last_update | 2018-11-10 20:49:12 |
depth | 1 |
children | 0 |
last_payout | 2018-11-17 20:49:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 145 |
author_reputation | 98,021,227,622,369 |
root_title | "How to contribute to utopian V2, the complete tutorial" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,054,703 |
net_rshares | 2,732,628,980 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
difelice5000 | 0 | 2,732,628,980 | 100% |