 This is my second contribution to Utopian V2. Although it took more time than I expected, my PR was finally merged and closed. ### Repository https://github.com/utopian-io/v2.utopian.io #### Task Request https://steemit.com/utopian-io/@gregory.latinier/utopian-v2-task-profile-module-work-experiences #### Pull Request https://github.com/utopian-io/v2.utopian.io/pull/218 #### Feature  There are two parts to this post. First is a run-through of my [commits history](https://github.com/utopian-io/v2.utopian.io/pull/218/commits) and the second is some technical explanation of the codes. #### Commits History > There's a story behind every code. The major parts in my [commits history](https://github.com/utopian-io/v2.utopian.io/pull/218/commits) were: * [1794f2f](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/1794f2fcd2b34f3603c83e59e44c758d59ebcdda) - provided the skeleton - the layout - where I did my changes. * [101a243](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/101a243ea110c2accd75717c7ad68224ad50038f) - added the work experience fields to the user model (to persist the user information). * [e3e52e7](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/e3e52e770c342d7baefebc7f82ad96ff6dcebf29) - updated the work experience layout * [e97b2d5](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/e97b2d573d6bf0fa8387e182d485b8264fdfdd58) - added the work experience API end points * [db1fb3c](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/db1fb3c20a768885a00a24c8d441276479cd4122) - code refactor * [8cb2742](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/8cb27427f698ef9435500e4142514fb31598dbc7) - added delete experience function * [f98fcb3](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/f98fcb3a773a6904ada61cd2c510a30b97d20220) - exported strings to i18n * [4362837](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/4362837044778bb0254d50f922636177346c1a88) - added validations * [f811680](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/f81168081c642c25fd8b95131e708a8531b08249) - added unit tests * [8df58af](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/8df58af2e33ad81fede2107ad50105a1fec56bbd) - sort experiences from most recent to oldest #### Code Changes https://github.com/utopian-io/v2.utopian.io/pull/218/files ##### 1. API ###### 1a. Main Codes * [`packages/api/modules/users/handlers.js`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-d6583c66110f65c2d8b692c224edbd6f) - these were the API endpoints - the methods that directly interacted with the database * [`/packages/api/modules/users/routes.js`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-296ff5718c5428b25ef5fbf77616dacc) - the routes that maps the above functions to URLs * [`/packages/api/modules/users/user.model.js`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-8cfc9557e458a102c58649686a2b0021) - the user model; change in the user model class to include work experiences information (called subdocument in mongo) * [`/packages/api/modules/users/validate.js`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-cc394e8abc54ccb6d71e7173d3a122ad) - as what can be inferred from the name, model validation ###### 1b. Unit Tests * [`/packages/api/test/fixtures/users.js`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-78a082d9fdb3e66d3acd3adf318b0789) - test data * [`/packages/api/test/modules/users/users.handlers.spec.js`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-ee6149cc2f02eb780239edf3de3b3a56) - the specs that test the newly added API end points ##### 2. Client * [`/packages/client/src/pages/users/profile/profile.vue`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-ce5c3585f3376714a1812bc0c8ff7a7c) - the main profile page; the major component where the important codes were included * [`/packages/client/src/store/users/actions.js`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-77c4b16544cd36d583b4d2a2b5088517) - the user actions that dispatches or calls the necessary API end points to process user information ##### 3. Internationalization * [`/packages/i18n/locales_master/en.json`](https://github.com/utopian-io/v2.utopian.io/pull/218/files#diff-0d6c63c97dfee46e060dd990ad73488f) - exported strings for internationalization #### Lessons Learned I encountered a lot of challenges in completing this task. First, was my unfamiliarity with mongo API. Although I had an idea in mind of what I wanted to happen, my unfamiliarity with mongoose resulted in code smell. Gregory cleaned that up for me by what he did in his last commit: * [a9c1067](https://github.com/utopian-io/v2.utopian.io/pull/218/commits/a9c1067c72b5a87fb17f5c994e251bc5e63c39af) He removed the `getWorkExperience` API end point and just returned the whole work experiences document to `updateWorkExperience`'s response. The key mongoose method here was `findOneAndUpdate`. The second challenge was my unfamiliarity with flex-box. Gregory just pointed me to use that to adjust the location of the plus icon. And lastly was my unfamiliarity with [vuelidate](https://monterail.github.io/vuelidate/), this resulted again in code smell and I learned again from the codes committed by Gregory. There were other changes made by Gregory in that commit. All of them were learnings for me.<br/><div class="pull-right promo"><sub><p>This post was made from https://ulogs.org</p></sub></div>
author | eastmael |
---|---|
permlink | ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile |
category | ulog |
json_metadata | {"community":"ulogs","app":"ulogs/1.0.0","format":"markdown","tags":["ulog","utopian-io","development","ulog-utopian","steemdev"],"users":["gregory.latinier"],"links":["https://github.com/utopian-io/v2.utopian.io","https://steemit.com/utopian-io/@gregory.latinier/utopian-v2-task-profile-module-work-experiences","https://github.com/utopian-io/v2.utopian.io/pull/218","https://github.com/utopian-io/v2.utopian.io/pull/218/commits","https://github.com/utopian-io/v2.utopian.io/pull/218/commits","https://github.com/utopian-io/v2.utopian.io/pull/218/commits/1794f2fcd2b34f3603c83e59e44c758d59ebcdda","https://github.com/utopian-io/v2.utopian.io/pull/218/commits/101a243ea110c2accd75717c7ad68224ad50038f","https://github.com/utopian-io/v2.utopian.io/pull/218/commits/e3e52e770c342d7baefebc7f82ad96ff6dcebf29","https://github.com/utopian-io/v2.utopian.io/pull/218/commits/e97b2d573d6bf0fa8387e182d485b8264fdfdd58","https://github.com/utopian-io/v2.utopian.io/pull/218/commits/db1fb3c20a768885a00a24c8d441276479cd4122"],"image":["https://ipfs.busy.org/ipfs/QmbwrFgKgFrJustQZxLQjPLkT2gDYusnLHvMB8Brdr9EFE","https://ipfs.busy.org/ipfs/QmX7tiVHaq2C4RM5Lr9ApcWKcaiJHd7TQjHd9GdZogCm3t"]} |
created | 2019-01-13 09:12:09 |
last_update | 2019-01-13 09:12:09 |
depth | 0 |
children | 8 |
last_payout | 2019-01-20 09:12:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 34.841 HBD |
curator_payout_value | 11.238 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,752 |
author_reputation | 78,967,407,130,763 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,308,866 |
net_rshares | 85,600,597,948,599 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 4,671,486,784,829 | 22.62% | ||
mrwang | 0 | 1,066,627,324 | 50% | ||
arcange | 0 | 37,454,589,192 | 4% | ||
raphaelle | 0 | 2,042,930,156 | 4% | ||
goode | 0 | 725,127,582 | 100% | ||
abh12345 | 0 | 41,895,012,828 | 7% | ||
surpassinggoogle | 0 | 1,512,575,005,489 | 100% | ||
k-syusteem | 0 | 720,037,515 | 25% | ||
pes7md | 0 | 326,589,283 | 50% | ||
annazsarinacruz | 0 | 1,637,520,466 | 50% | ||
jgpro | 0 | 75,414,872 | 50% | ||
bloghound | 0 | 3,125,258,828 | 15% | ||
southparkqueen | 0 | 632,654,030 | 100% | ||
ljpaez | 0 | 189,009,532 | 50% | ||
miniature-tiger | 0 | 134,630,814,169 | 50% | ||
pichat | 0 | 4,514,967,559 | 25% | ||
moksamol | 0 | 13,905,678,342 | 50% | ||
outerground | 0 | 43,622,856,432 | 100% | ||
foways | 0 | 268,946,849 | 50% | ||
lotfiuser | 0 | 233,016,867 | 50% | ||
eurogee | 0 | 172,938,711 | 2% | ||
rt395 | 0 | 2,817,332,128 | 15% | ||
pipks | 0 | 196,030,912 | 50% | ||
jga | 0 | 2,025,969,340 | 28.28% | ||
rishadhaque | 0 | 217,260,244 | 50% | ||
yehey | 0 | 10,087,367,191 | 10% | ||
helo | 0 | 143,349,307,611 | 100% | ||
mercadosaway | 0 | 1,399,432,371 | 100% | ||
bearone | 0 | 22,679,944,914 | 20% | ||
paulag | 0 | 30,463,914,086 | 10% | ||
bobiecayao | 0 | 970,797,716 | 50% | ||
rival | 0 | 3,221,146,477 | 2% | ||
knowledges | 0 | 3,102,522,545 | 100% | ||
yahman | 0 | 175,731,763 | 50% | ||
haiyangdeperci | 0 | 6,917,029,774 | 20% | ||
st3llar | 0 | 712,733,880 | 5% | ||
vallesleoruther | 0 | 72,483,940,627 | 100% | ||
sunnylife | 0 | 3,438,586,590 | 10% | ||
gps7530 | 0 | 141,383,831 | 50% | ||
codingdefined | 0 | 17,049,580,971 | 15% | ||
dwightjaden | 0 | 1,710,257,735 | 100% | ||
blazing | 0 | 2,656,189,834 | 100% | ||
bachuslib | 0 | 19,050,849,922 | 100% | ||
haji | 0 | 93,366,605 | 0.5% | ||
elbleess | 0 | 347,175,852 | 50% | ||
kumagang | 0 | 242,704,447 | 50% | ||
wendyruiz | 0 | 553,048,814 | 100% | ||
baboyed1000 | 0 | 67,387,266 | 20% | ||
steemitri | 0 | 136,989,451,357 | 100% | ||
mhel | 0 | 299,668,412 | 20% | ||
joshruiz | 0 | 1,703,473,668 | 100% | ||
kofspades | 0 | 616,577,521 | 50% | ||
mahmuddin | 0 | 54,472,701 | 100% | ||
karyah1001 | 0 | 154,476,126 | 100% | ||
steemitph | 0 | 24,773,773,449 | 50% | ||
tradeownsystems | 0 | 375,438,696 | 100% | ||
shippou95 | 0 | 622,039,188 | 50% | ||
viralfever | 0 | 203,877,361 | 50% | ||
rye05 | 0 | 3,263,915,903 | 20% | ||
pjmisa | 0 | 1,060,465,378 | 50% | ||
nanwaiwaimyint | 0 | 116,448,937 | 50% | ||
nessyquel | 0 | 122,529,328 | 100% | ||
marzukie | 0 | 603,453,270 | 50% | ||
crokkon | 0 | 108,025,907,205 | 100% | ||
adnanbtc | 0 | 134,796,149 | 50% | ||
steemitdoctor | 0 | 565,008,847 | 100% | ||
olayemzeecool | 0 | 198,772,788 | 50% | ||
jhanmervz | 0 | 84,239,622 | 50% | ||
princekelly | 0 | 4,102,313,198 | 100% | ||
evolutionnow | 0 | 89,892,361 | 50% | ||
marysent | 0 | 433,108,686 | 10% | ||
sukro | 0 | 110,343,354 | 50% | ||
davealemana | 0 | 276,771,835 | 100% | ||
eastmael | 0 | 17,452,226,694 | 100% | ||
topbro | 0 | 420,796,936 | 100% | ||
piaristmonk | 0 | 32,257,094,277 | 100% | ||
tony-duke | 0 | 95,743,320 | 10% | ||
smafey | 0 | 433,659,543 | 50% | ||
filzaart | 0 | 171,289,674 | 100% | ||
hillaryaa | 0 | 530,454,218 | 50% | ||
ckbahdon | 0 | 301,096,019 | 50% | ||
revisesociology | 0 | 32,555,538,733 | 10% | ||
szabolcs | 0 | 57,465,971 | 100% | ||
mercy11 | 0 | 79,192,391 | 10% | ||
ranielbrianulan | 0 | 285,486,507 | 100% | ||
espoem | 0 | 62,544,024,672 | 34.37% | ||
tolarnee | 0 | 1,085,112,022 | 50% | ||
mcfarhat | 0 | 31,976,732,524 | 19.64% | ||
preetisingh1993 | 0 | 57,589,595 | 50% | ||
kike313 | 0 | 193,646,329 | 50% | ||
mzajoke | 0 | 380,043,950 | 50% | ||
bobtucks | 0 | 176,432,020 | 50% | ||
cmbugua | 0 | 176,390,653 | 50% | ||
emdesan | 0 | 134,881,605 | 10% | ||
alliruiz | 0 | 553,863,014 | 100% | ||
samdman | 0 | 197,635,180 | 50% | ||
penantang | 0 | 174,208,246 | 50% | ||
loshcat | 0 | 3,117,838,725 | 100% | ||
foxniner | 0 | 2,747,772,806 | 100% | ||
hrovat66 | 0 | 168,932,958 | 50% | ||
isaganicabrales | 0 | 754,504,464 | 100% | ||
j-alhomestudio | 0 | 1,516,752,403 | 100% | ||
hasim5164 | 0 | 171,742,246 | 50% | ||
amarm | 0 | 228,878,557 | 50% | ||
zeddjacob | 0 | 3,548,701,475 | 100% | ||
utopian-io | 0 | 75,687,698,670,558 | 56.56% | ||
superstar65 | 0 | 435,644,766 | 100% | ||
steemph.manila | 0 | 16,119,151,778 | 100% | ||
jaff8 | 0 | 87,084,683,804 | 49.11% | ||
masud222 | 0 | 288,263,794 | 50% | ||
advsamadhan | 0 | 120,874,144 | 50% | ||
pipo092281 | 0 | 194,767,554 | 50% | ||
kerry234 | 0 | 726,727,889 | 100% | ||
parag | 0 | 198,816,001 | 50% | ||
muksalbaihaqi | 0 | 244,732,272 | 50% | ||
amanpathak | 0 | 348,163,488 | 50% | ||
engineeringfeed | 0 | 208,822,336 | 50% | ||
ekjosh | 0 | 428,416,293 | 100% | ||
estrellamag | 0 | 214,637,485 | 50% | ||
eduardonarvaez | 0 | 210,127,921 | 50% | ||
newsrx | 0 | 186,291,411 | 12% | ||
zohaib715 | 0 | 290,176,385 | 50% | ||
fidel66 | 0 | 384,633,854 | 100% | ||
klizo | 0 | 309,878,916 | 50% | ||
tentalavera | 0 | 126,137,324 | 5% | ||
aehiguese | 0 | 267,925,319 | 100% | ||
scipio | 0 | 100,178,781,145 | 100% | ||
studytext | 0 | 99,843,663 | 25% | ||
greenorange | 0 | 550,985,780 | 100% | ||
mrogy1 | 0 | 158,943,485 | 50% | ||
maticpecovnik | 0 | 7,212,046,545 | 50% | ||
enjoyy | 0 | 488,498,738 | 50% | ||
hasan086 | 0 | 461,754,172 | 50% | ||
handfree42 | 0 | 134,076,344 | 50% | ||
jecren | 0 | 249,133,289 | 50% | ||
steembasicincome | 0 | 19,706,618,781 | 0.31% | ||
tomatom | 0 | 964,327,100 | 50% | ||
harkushi | 0 | 171,482,070 | 50% | ||
berylwills | 0 | 838,627,508 | 100% | ||
paragon99 | 0 | 292,292,601 | 50% | ||
goalgetter | 0 | 209,225,354 | 50% | ||
cordeta | 0 | 2,882,673,341 | 50% | ||
camillius | 0 | 125,548,731 | 20% | ||
amosbastian | 0 | 109,914,149,646 | 49.11% | ||
tdre | 0 | 79,829,423,839 | 100% | ||
mkmk | 0 | 438,055,805 | 50% | ||
levinvillas | 0 | 316,777,809 | 25% | ||
layanmarissa | 0 | 215,735,260 | 50% | ||
fadiji09 | 0 | 226,103,671 | 30% | ||
beautifuldata | 0 | 72,578,596 | 60% | ||
asaj | 0 | 16,795,539,269 | 100% | ||
bitcoin.news | 0 | 71,793,693 | 50% | ||
dolphinscute | 0 | 450,802,704 | 50% | ||
scienceangel | 0 | 70,751,232,366 | 100% | ||
chiboyzz | 0 | 306,256,421 | 50% | ||
jjay | 0 | 501,343,169 | 100% | ||
eruditescholar1 | 0 | 168,530,754 | 50% | ||
hokulor | 0 | 116,815,438 | 5% | ||
viperblckz | 0 | 4,291,270,829 | 100% | ||
jjohnson78 | 0 | 453,173,762 | 50% | ||
fredoski | 0 | 232,027,699 | 50% | ||
jayfamous | 0 | 373,034,162 | 100% | ||
onin91 | 0 | 221,607,825 | 50% | ||
pauloliverpino | 0 | 248,663,735 | 50% | ||
iamfo | 0 | 252,591,283 | 50% | ||
strings | 0 | 857,448,866 | 50% | ||
pboss123 | 0 | 72,314,606 | 50% | ||
cheesom | 0 | 253,647,709 | 50% | ||
richgang | 0 | 1,681,763,216 | 50% | ||
ligarayk | 0 | 798,562,926 | 100% | ||
asfuriah | 0 | 384,250,052 | 100% | ||
holger80 | 0 | 435,226,425,999 | 77.5% | ||
babaj | 0 | 244,006,317 | 100% | ||
allaboutme | 0 | 249,845,955 | 50% | ||
cypher01 | 0 | 383,714,622 | 50% | ||
luijii | 0 | 403,258,130 | 100% | ||
modernmclaire | 0 | 233,162,572 | 50% | ||
raquelita | 0 | 327,563,293 | 50% | ||
ryl | 0 | 356,665,380 | 50% | ||
paulnulty | 0 | 3,600,959,537 | 100% | ||
breezieblack | 0 | 178,743,141 | 50% | ||
camilus | 0 | 647,343,995 | 100% | ||
ellerysunga | 0 | 555,800,896 | 100% | ||
lykaypajaro | 0 | 218,662,304 | 50% | ||
used-lessboy | 0 | 168,085,099 | 50% | ||
loydjayme25 | 0 | 2,658,230,901 | 50% | ||
noechie1827 | 0 | 468,215,891 | 50% | ||
east.autovote | 0 | 454,671,069 | 50% | ||
matadonis | 0 | 236,340,934 | 50% | ||
victoriakorol | 0 | 308,458,263 | 50% | ||
starzy | 0 | 2,439,634,049 | 50% | ||
iamwhatiamnot | 0 | 144,232,446 | 20% | ||
faithvarron | 0 | 183,589,663 | 50% | ||
princefizzy | 0 | 197,084,449 | 50% | ||
antigenx | 0 | 584,761,837 | 50% | ||
badzkie123 | 0 | 428,157,782 | 50% | ||
lakawero | 0 | 253,801,707 | 20% | ||
vegasgambler | 0 | 741,991,978 | 30% | ||
mcamayra | 0 | 221,548,015 | 50% | ||
alex04 | 0 | 129,629,106 | 50% | ||
new.diak | 0 | 149,667,763 | 50% | ||
eightbitfiction | 0 | 196,439,413 | 50% | ||
ladyselene07 | 0 | 552,881,806 | 100% | ||
andreapacoy | 0 | 554,195,243 | 100% | ||
kul0tzzz | 0 | 385,821,423 | 100% | ||
basir92 | 0 | 215,646,457 | 50% | ||
rheyss08 | 0 | 205,503,382 | 50% | ||
jeandesss | 0 | 554,195,243 | 100% | ||
julianalpanta | 0 | 226,581,336 | 50% | ||
sampath94 | 0 | 217,996,993 | 50% | ||
annamighty | 0 | 197,944,541 | 50% | ||
thienduc | 0 | 125,036,583 | 50% | ||
colettemaria | 0 | 552,662,392 | 100% | ||
benjaspa | 0 | 248,890,289 | 50% | ||
gieaspa | 0 | 556,343,454 | 100% | ||
sissyjill | 0 | 72,798,676 | 7% | ||
dzued | 0 | 333,563,328 | 50% | ||
syamsudduha2 | 0 | 303,545,155 | 50% | ||
polycarpedet | 0 | 230,821,277 | 50% | ||
jacintoelbarouki | 0 | 138,486,060 | 50% | ||
pahrtenope | 0 | 192,566,599 | 50% | ||
atjehsteemit | 0 | 769,298,437 | 50% | ||
reyleedwalo | 0 | 555,800,896 | 100% | ||
vlogger56 | 0 | 182,786,557 | 50% | ||
dtube-alfa | 0 | 114,980,410 | 30% | ||
morbyjohn | 0 | 142,885,457 | 7% | ||
fikar22 | 0 | 74,681,097 | 25% | ||
lstriker | 0 | 169,834,688 | 50% | ||
steemdragon | 0 | 163,109,041 | 50% | ||
pojgaerlan | 0 | 380,541,553 | 100% | ||
shahaan | 0 | 2,909,700,612 | 50% | ||
jims | 0 | 380,165,135 | 100% | ||
abrahamcera | 0 | 381,083,988 | 50% | ||
lifediaries2nd | 0 | 297,337,708 | 50% | ||
thamrin | 0 | 444,468,650 | 100% | ||
monwalker | 0 | 248,623,267 | 50% | ||
aldiyani | 0 | 192,024,703 | 50% | ||
freudy | 0 | 248,360,156 | 50% | ||
valiantheart | 0 | 556,343,454 | 100% | ||
zombieslayer | 0 | 182,921,908 | 50% | ||
mirna98 | 0 | 189,770,298 | 50% | ||
khloyd | 0 | 249,129,093 | 50% | ||
ninjarobo | 0 | 249,133,289 | 50% | ||
akaikeru | 0 | 249,129,093 | 50% | ||
stuckinacup | 0 | 218,454,676 | 50% | ||
rhei86 | 0 | 235,797,693 | 50% | ||
beni96 | 0 | 845,176,839 | 50% | ||
zeshanjaved | 0 | 220,740,455 | 50% | ||
isaaceko | 0 | 358,036,998 | 100% | ||
jeanp | 0 | 249,843,297 | 50% | ||
orhem | 0 | 237,073,254 | 50% | ||
rikilb | 0 | 206,905,598 | 50% | ||
toyosiartdiy | 0 | 203,725,973 | 50% | ||
jefry113 | 0 | 441,924,874 | 100% | ||
iswanisamion | 0 | 199,257,090 | 100% | ||
adimantong | 0 | 3,828,229,838 | 100% | ||
theunlimited | 0 | 177,486,854 | 50% | ||
kutrulaju | 0 | 650,144,211 | 50% | ||
sechki | 0 | 556,343,454 | 100% | ||
donjyde | 0 | 199,512,983 | 50% | ||
mutiarahmi | 0 | 289,599,968 | 50% | ||
dominiqueruiz | 0 | 556,343,454 | 100% | ||
bittrex12 | 0 | 129,427,996 | 50% | ||
virgo27 | 0 | 459,129,414 | 50% | ||
zcool | 0 | 188,710,821 | 10% | ||
gwapoaller | 0 | 248,650,602 | 50% | ||
carloniere | 0 | 251,977,212 | 50% | ||
muzzlealem | 0 | 244,432,096 | 50% | ||
wandy01 | 0 | 168,848,208 | 50% | ||
faisal08 | 0 | 137,929,176 | 50% | ||
queenlyka | 0 | 248,855,745 | 50% | ||
bitmycoin | 0 | 78,604,268 | 50% | ||
phoebedoll | 0 | 361,508,476 | 50% | ||
everydaybitcoin | 0 | 121,960,675 | 50% | ||
shiddiq | 0 | 88,958,905 | 25% | ||
afefe | 0 | 241,258,099 | 50% | ||
devangbuch | 0 | 208,716,742 | 50% | ||
patchnotes | 0 | 496,193,587 | 60% | ||
dexter24 | 0 | 214,751,821 | 50% | ||
wirdayulahya | 0 | 161,557,795 | 50% | ||
jayo | 0 | 207,772,716 | 50% | ||
chrisjayl | 0 | 287,685,046 | 50% | ||
neilrichmond | 0 | 190,670,854 | 50% | ||
brewingstories | 0 | 249,019,712 | 50% | ||
arrahman90 | 0 | 271,529,813 | 50% | ||
imayang | 0 | 98,727,115 | 100% | ||
mikemaphu | 0 | 438,974,549 | 50% | ||
delta523 | 0 | 556,336,913 | 100% | ||
blaqboyikott | 0 | 237,019,132 | 50% | ||
fibrefox | 0 | 332,987,258 | 50% | ||
khat.holanda23 | 0 | 237,452,569 | 50% | ||
khairuddin08 | 0 | 168,486,265 | 50% | ||
bgmuna | 0 | 178,573,851 | 50% | ||
steem-factuals | 0 | 168,898,401 | 50% | ||
bravofer | 0 | 222,901,878 | 50% | ||
dazzy | 0 | 188,432,156 | 50% | ||
greenville | 0 | 174,754,377 | 50% | ||
paulasands | 0 | 158,838,717 | 50% | ||
ahmad097 | 0 | 205,762,713 | 50% | ||
mbahtutorial | 0 | 225,486,135 | 50% | ||
belvajarandilla | 0 | 169,539,946 | 50% | ||
kelvo | 0 | 100,689,606 | 25% | ||
pinkblush | 0 | 554,195,243 | 100% | ||
beshooo | 0 | 113,298,979 | 50% | ||
muzaiyan | 0 | 244,143,867 | 50% | ||
lionlook | 0 | 553,160,209 | 100% | ||
loudetteiam | 0 | 1,067,090,097 | 50% | ||
xtrm111 | 0 | 556,343,454 | 100% | ||
onex8 | 0 | 556,343,454 | 100% | ||
martzpro | 0 | 237,615,649 | 50% | ||
wealth4good | 0 | 245,422,749 | 5% | ||
cradle | 0 | 77,476,193 | 50% | ||
oclinton | 0 | 1,580,306,759 | 50% | ||
sharminwadud | 0 | 243,886,882 | 50% | ||
keybordjp | 0 | 249,118,604 | 50% | ||
rechellomataro | 0 | 194,511,286 | 50% | ||
lykia | 0 | 248,418,842 | 50% | ||
steeman220 | 0 | 210,067,230 | 50% | ||
sabiondico | 0 | 202,928,527 | 50% | ||
dondondamayo | 0 | 250,177,880 | 50% | ||
jeef-zone | 0 | 430,622,268 | 50% | ||
phage93 | 0 | 11,533,498,370 | 61% | ||
jacobzeema | 0 | 120,371,408 | 50% | ||
joco0820 | 0 | 249,133,289 | 50% | ||
ryuna.siege | 0 | 208,737,649 | 100% | ||
lianbloog | 0 | 193,151,412 | 50% | ||
roheemat | 0 | 78,940,935 | 50% | ||
ernoldlvb | 0 | 71,729,295 | 50% | ||
muhammad.iqbal | 0 | 188,722,011 | 50% | ||
kaplat | 0 | 227,099,956 | 50% | ||
leeyen23 | 0 | 367,003,455 | 50% | ||
razik9708 | 0 | 99,448,297 | 25% | ||
ilmondoditea | 0 | 295,552,801 | 50% | ||
gerliepepito | 0 | 422,222,969 | 50% | ||
jembee | 0 | 312,176,090 | 50% | ||
nigerian-yogagal | 0 | 2,669,334,992 | 50% | ||
etaletai | 0 | 579,333,832 | 50% | ||
rosenderevies | 0 | 202,878,996 | 50% | ||
egheprincez | 0 | 225,482,654 | 50% | ||
jsantos17 | 0 | 241,538,188 | 50% | ||
aikee | 0 | 243,041,426 | 50% | ||
techsfair | 0 | 190,451,296 | 50% | ||
arisviyo | 0 | 1,316,441,138 | 50% | ||
rachelleignacio | 0 | 1,875,855,263 | 50% | ||
blackelephant | 0 | 196,484,832 | 50% | ||
bumut | 0 | 165,038,586 | 50% | ||
sazid36 | 0 | 247,483,508 | 50% | ||
mayorhero | 0 | 248,669,304 | 50% | ||
geotorb | 0 | 243,979,488 | 50% | ||
gemz2inspire | 0 | 250,196,855 | 50% | ||
jomar07 | 0 | 470,770,110 | 50% | ||
emeliveiga | 0 | 108,476,160 | 50% | ||
jaber-hossain70 | 0 | 192,788,797 | 50% | ||
abysoyjoy | 0 | 193,995,135 | 100% | ||
alimirza0416 | 0 | 101,536,793 | 50% | ||
akram7 | 0 | 185,427,915 | 50% | ||
membee | 0 | 214,124,225 | 50% | ||
blessedsteemer | 0 | 164,398,253 | 50% | ||
gnaimul | 0 | 175,845,582 | 50% | ||
kyanzieuno | 0 | 511,618,926 | 50% | ||
steemitkyle | 0 | 263,276,119 | 50% | ||
gpwebers | 0 | 234,421,307 | 50% | ||
clayjohn | 0 | 7,059,537,891 | 100% | ||
morin89 | 0 | 166,830,098 | 50% | ||
genesis171 | 0 | 183,672,159 | 50% | ||
chiqui03 | 0 | 194,305,618 | 50% | ||
shiddiq000 | 0 | 99,448,297 | 25% | ||
mikeyurnero | 0 | 49,977,229 | 50% | ||
elangzone | 0 | 100,320,840 | 25% | ||
ahsanabdullah | 0 | 220,533,511 | 50% | ||
syawalkoki | 0 | 146,261,747 | 50% | ||
akeenze13 | 0 | 532,061,579 | 50% | ||
nantzjbalayo | 0 | 154,698,842 | 5% | ||
mittalamit284 | 0 | 222,824,815 | 50% | ||
byash | 0 | 387,272,798 | 100% | ||
annnaa | 0 | 130,126,972 | 50% | ||
erebuta01 | 0 | 238,686,147 | 50% | ||
umut1905 | 0 | 160,319,857 | 50% | ||
marzuki-r | 0 | 225,465,156 | 50% | ||
viralz | 0 | 139,777,498 | 50% | ||
husana | 0 | 198,955,800 | 100% | ||
purepinoy | 0 | 90,530,280 | 20% | ||
ihal0001 | 0 | 197,721,279 | 50% | ||
christinevelasco | 0 | 249,133,289 | 50% | ||
alchemylgc | 0 | 232,115,698 | 50% | ||
josebravopalomo | 0 | 556,294,164 | 100% | ||
mayib | 0 | 550,394,879 | 50% | ||
liquidpoopcorn | 0 | 233,821,877 | 50% | ||
mojacko | 0 | 441,962,868 | 50% | ||
daldon | 0 | 191,244,296 | 50% | ||
midary | 0 | 199,294,404 | 100% | ||
devondrjackson | 0 | 234,527,425 | 50% | ||
kehuanmi | 0 | 688,416,477 | 9.76% | ||
pharao20 | 0 | 130,547,533 | 50% | ||
tammydixon | 0 | 190,807,976 | 50% | ||
fadliloways | 0 | 100,855,304 | 25% | ||
briandominise | 0 | 249,928,238 | 50% | ||
golden-man | 0 | 249,920,696 | 50% | ||
rarcenal | 0 | 242,640,425 | 50% | ||
mwamin7 | 0 | 248,106,296 | 50% | ||
mindbuilder-sc | 0 | 205,064,946 | 50% | ||
galihtruff | 0 | 194,592,506 | 50% | ||
osakuni | 0 | 71,191,167 | 50% | ||
steemconductor | 0 | 41,464,264,829 | 100% | ||
jayboi | 0 | 3,805,457,041 | 10% | ||
whyken | 0 | 168,179,570 | 50% | ||
kawan-baru | 0 | 99,369,310 | 25% | ||
vicmic | 0 | 198,430,465 | 50% | ||
cebusteemer | 0 | 249,133,289 | 50% | ||
boyaceh | 0 | 226,793,411 | 50% | ||
jezelle | 0 | 245,761,452 | 50% | ||
femidada | 0 | 170,265,144 | 50% | ||
reungkhoem | 0 | 188,469,990 | 50% | ||
mrnightmare89 | 0 | 1,069,847,931 | 50% | ||
mvoalevine | 0 | 195,347,955 | 50% | ||
ninihorlah | 0 | 198,708,442 | 50% | ||
steinz | 0 | 199,455,741 | 100% | ||
noodles09 | 0 | 248,639,274 | 50% | ||
kayegrasya | 0 | 569,975,561 | 50% | ||
sirwayneweezy | 0 | 241,350,931 | 50% | ||
pinkyangel | 0 | 168,038,745 | 50% | ||
alexander-bobs | 0 | 218,767,421 | 50% | ||
jailueroterg | 0 | 525,659,976 | 100% | ||
siwalansand | 0 | 511,582,750 | 100% | ||
bertoandes | 0 | 186,502,768 | 50% | ||
chinwengozi | 0 | 218,487,966 | 50% | ||
ohmyjosh | 0 | 72,224,046 | 100% | ||
verifyme | 0 | 475,879,810 | 10% | ||
elvinjohn21 | 0 | 249,056,713 | 50% | ||
david9122 | 0 | 237,956,181 | 50% | ||
jumpnrun | 0 | 123,729,246 | 33% | ||
adebits | 0 | 144,918,934 | 50% | ||
cebuana | 0 | 285,341,207 | 50% | ||
osky | 0 | 248,115,770 | 50% | ||
r5yn1r4 | 0 | 250,174,022 | 50% | ||
shiddiqmjmr | 0 | 99,173,113 | 25% | ||
nicole24 | 0 | 217,621,106 | 50% | ||
friskykitty | 0 | 196,291,251 | 50% | ||
rigelmarco | 0 | 428,601,742 | 100% | ||
lemareg | 0 | 224,776,332 | 50% | ||
samsonite18654 | 0 | 181,893,768 | 50% | ||
carolinafer | 0 | 184,541,635 | 50% | ||
pasokon | 0 | 243,878,411 | 50% | ||
maintang03 | 0 | 216,938,712 | 50% | ||
dantoyin | 0 | 249,133,289 | 50% | ||
randomkindness | 0 | 718,132,867 | 50% | ||
joseaybar1 | 0 | 248,317,246 | 50% | ||
bradondamyx12345 | 0 | 220,682,384 | 50% | ||
hebetseves | 0 | 531,242,269 | 100% | ||
diformadoc | 0 | 531,972,202 | 100% | ||
luc.real | 0 | 220,697,810 | 100% | ||
gio.vanne | 0 | 197,089,152 | 50% | ||
nieloagranca | 0 | 3,231,284,271 | 4% | ||
steemchoose | 0 | 20,944,702,884 | 1.05% | ||
sadnesscarl | 0 | 173,642,091 | 50% | ||
steeming-hot | 0 | 41,761,183 | 0.25% | ||
jackbawa | 0 | 176,324,351 | 50% | ||
periods | 0 | 18,384,320,712 | 100% | ||
wanderinglynelle | 0 | 249,056,713 | 50% | ||
freitzie123 | 0 | 249,926,134 | 50% | ||
rakan-sikula | 0 | 174,244,054 | 50% | ||
skyphotographer | 0 | 97,898,141 | 50% | ||
foley | 0 | 108,420,789 | 50% | ||
ak477 | 0 | 174,748,263 | 50% | ||
dong-a | 0 | 222,483,969 | 50% | ||
denkeicui | 0 | 243,248,650 | 50% | ||
scottallen | 0 | 171,472,497 | 50% | ||
alien-mastermind | 0 | 217,672,857 | 70% | ||
ramonjvp | 0 | 446,159,417 | 100% | ||
naayren | 0 | 222,492,465 | 50% | ||
mops2e | 0 | 390,759,464 | 27.49% | ||
savannaha2 | 0 | 540,548,542 | 100% | ||
zoe69 | 0 | 500,312,520 | 100% | ||
gelique | 0 | 249,787,079 | 50% | ||
glendale05 | 0 | 249,044,129 | 50% | ||
citysitebuilders | 0 | 249,875,365 | 50% | ||
medyomaldita | 0 | 248,407,400 | 50% | ||
caroljayne02 | 0 | 249,131,191 | 50% | ||
lemcervantes | 0 | 249,803,121 | 50% | ||
unika-ejes | 0 | 249,131,191 | 50% | ||
ingpablojosue | 0 | 212,478,641 | 50% | ||
idiongo | 0 | 196,842,785 | 50% | ||
swapsteem | 0 | 199,334,772 | 5% | ||
choobymaverick | 0 | 122,098,960 | 50% | ||
kylieg0 | 0 | 523,260,944 | 100% | ||
steemscan | 0 | 868,553,812 | 4.55% | ||
nicoleevdi1 | 0 | 499,206,531 | 100% | ||
angoujkalis | 0 | 1,301,030,041 | 50% | ||
rajesh1000 | 0 | 202,450,500 | 50% | ||
crystaljonah1 | 0 | 156,640,443 | 50% | ||
jakedavis224 | 0 | 6,212,355,514 | 50% | ||
saifulhuri | 0 | 172,837,954 | 50% | ||
gloscincenttemp | 0 | 501,327,847 | 100% | ||
compmilkcogpock | 0 | 519,945,752 | 100% | ||
allisonab | 0 | 530,876,544 | 100% | ||
dktrending341 | 0 | 189,502,615 | 50% | ||
rawpostblog | 0 | 158,336,382 | 50% | ||
antisocialian | 0 | 224,684,653 | 50% | ||
sojol527 | 0 | 248,983,345 | 50% | ||
rizzybear | 0 | 183,810,864 | 50% | ||
sid000 | 0 | 109,580,565 | 50% | ||
jeongji | 0 | 249,926,134 | 50% | ||
ancgci | 0 | 137,554,837 | 50% | ||
pandina | 0 | 179,200,968 | 50% | ||
changjia | 0 | 671,383,043 | 10.81% | ||
chriswilson | 0 | 225,486,076 | 50% | ||
merlin7 | 0 | 6,171,954,856 | 0.2% | ||
pemburubitcoin | 0 | 199,536,902 | 50% | ||
letzsteem | 0 | 217,040,544 | 50% | ||
princezakir | 0 | 165,953,605 | 50% | ||
kirstenboic | 0 | 220,024,280 | 50% | ||
shahidullah832 | 0 | 93,596,073 | 50% | ||
alatomz | 0 | 294,817,821 | 50% | ||
hmuajanice | 0 | 249,131,191 | 50% | ||
steem-ua | 0 | 1,351,650,080,195 | 12% | ||
dreamseller | 0 | 119,573,432 | 50% | ||
minnowwboster | 0 | 217,077,712 | 50% | ||
forhadh | 0 | 371,212,026 | 50% | ||
semtroneum | 0 | 460,251,416 | 30% | ||
isabellaf | 0 | 499,777,886 | 100% | ||
alom8 | 0 | 2,247,975,225 | 50% | ||
kaczynski | 0 | 239,006,449 | 100% | ||
qusain | 0 | 157,612,395 | 50% | ||
naveedakhtar6283 | 0 | 167,538,153 | 50% | ||
teamcr | 0 | 804,587,772 | 100% | ||
holatati | 0 | 186,865,643 | 50% | ||
rajaumer837 | 0 | 186,918,490 | 50% | ||
bluebella | 0 | 188,052,253 | 50% | ||
onire19 | 0 | 219,988,422 | 50% | ||
steemexpress | 0 | 863,422,177 | 1.61% | ||
lvpjulio | 0 | 209,334,763 | 50% | ||
curbot | 0 | 2,320,622,908 | 100% | ||
stmpay | 0 | 11,296,264,276 | 3.32% | ||
greatlord | 0 | 200,317,345 | 75% | ||
drbtc | 0 | 174,633,122 | 50% | ||
bluesniper | 0 | 1,270,602,145 | 0.09% | ||
mikael19 | 0 | 179,856,568 | 50% | ||
ascorphat | 0 | 898,495,653 | 2.5% | ||
circa | 0 | 29,497,706,817 | 100% | ||
eternalsuccess | 0 | 412,663,735 | 100% | ||
someaddons | 0 | 7,938,991,268 | 100% | ||
sm-cards | 0 | 2,195,377,561 | 50% | ||
writeandearn | 0 | 636,209,143 | 50% | ||
metehn | 0 | 355,159,047 | 100% |
Great to see you after a very long time :)
author | blazing |
---|---|
permlink | re-eastmael-ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile-20190113t131034223z |
category | ulog |
json_metadata | {"tags":["ulog"],"app":"steemit/0.1"} |
created | 2019-01-13 13:10:36 |
last_update | 2019-01-13 13:10:36 |
depth | 1 |
children | 1 |
last_payout | 2019-01-20 13:10:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 117,662,220,860,076 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,315,607 |
net_rshares | 17,545,763,511 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eastmael | 0 | 17,545,763,511 | 100% |
Thank you. Yup, not that actively posting but just developing.
author | eastmael |
---|---|
permlink | re-blazing-re-eastmael-ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile-20190113t132527810z |
category | ulog |
json_metadata | {"tags":["ulog"],"app":"steemit/0.1"} |
created | 2019-01-13 13:25:21 |
last_update | 2019-01-13 13:25:21 |
depth | 2 |
children | 0 |
last_payout | 2019-01-20 13:25:21 |
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 | 62 |
author_reputation | 78,967,407,130,763 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,316,118 |
net_rshares | 0 |
- Great job on sharing your lessons learned, everyone can benefit. - I see that Gregory gave you some great review comments already within your PR. - I'm a bit surprised that there is no comments in the code apart from the function headers. 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-1-1-3-). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | helo |
---|---|
permlink | re-eastmael-ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile-20190114t220533535z |
category | ulog |
json_metadata | {"tags":["ulog"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-1-1-1-1-3-","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-01-14 22:05:33 |
last_update | 2019-01-14 22:05:33 |
depth | 1 |
children | 2 |
last_payout | 2019-01-21 22:05:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.263 HBD |
curator_payout_value | 2.982 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 738 |
author_reputation | 121,547,934,535,311 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,381,233 |
net_rshares | 20,927,591,279,275 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themarkymark | 0 | 188,974,494,588 | 19% | ||
eastmael | 0 | 17,523,044,979 | 100% | ||
espoem | 0 | 26,497,456,451 | 15% | ||
utopian-io | 0 | 20,446,050,960,546 | 14.38% | ||
zapncrap | 0 | 7,847,595,198 | 10% | ||
amosbastian | 0 | 66,421,092,715 | 27.06% | ||
curx | 0 | 8,105,875,840 | 10% | ||
organicgardener | 0 | 7,965,108,491 | 25% | ||
nenya | 0 | 503,850,204 | 95% | ||
reazuliqbal | 0 | 6,906,399,512 | 5% | ||
hakancelik | 0 | 2,202,138,923 | 30% | ||
statsexpert | 0 | 7,546,464,807 | 100% | ||
mightypanda | 0 | 129,577,022,845 | 65% | ||
fastandcurious | 0 | 2,651,773,525 | 60% | ||
nijn | 0 | 658,405,074 | 95% | ||
quenty | 0 | 3,799,479,714 | 71.25% | ||
linknotfound | 0 | 1,510,300,859 | 100% | ||
ascorphat | 0 | 900,312,084 | 2.5% | ||
nimloth | 0 | 430,079,695 | 95% | ||
monster-inc | 0 | 1,519,423,225 | 100% |
Thanks for the review. I forgot to write inline comments. Lol
author | eastmael |
---|---|
permlink | re-helo-re-eastmael-ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile-20190114t231315488z |
category | ulog |
json_metadata | {"tags":["ulog"],"app":"steemit/0.1"} |
created | 2019-01-14 23:13:21 |
last_update | 2019-01-14 23:13:21 |
depth | 2 |
children | 0 |
last_payout | 2019-01-21 23:13:21 |
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 | 61 |
author_reputation | 78,967,407,130,763 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,383,334 |
net_rshares | 0 |
Thank you for your review, @helo! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-eastmael-ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile-20190114t220533535z-20190117t120636z |
category | ulog |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2019-01-17 12:06:36 |
last_update | 2019-01-17 12:06:36 |
depth | 2 |
children | 0 |
last_payout | 2019-01-24 12:06:36 |
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 | 56 |
author_reputation | 152,955,367,999,756 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,497,092 |
net_rshares | 0 |
#### Hi @eastmael! 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)**
author | steem-ua |
---|---|
permlink | re-ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile-20190114t221726z |
category | ulog |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2019-01-14 22:17:27 |
last_update | 2019-01-14 22:17:27 |
depth | 1 |
children | 0 |
last_payout | 2019-01-21 22:17:27 |
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 | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,381,638 |
net_rshares | 0 |
Hey, @eastmael! **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>
author | utopian-io |
---|---|
permlink | re-ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile-20190115t144347z |
category | ulog |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2019-01-15 14:43:48 |
last_update | 2019-01-15 14:43:48 |
depth | 1 |
children | 0 |
last_payout | 2019-01-22 14:43:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,412,165 |
net_rshares | 17,856,155,433 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eastmael | 0 | 17,856,155,433 | 100% |
@eastmael You have received a 100% upvote from @steemconductor because this post did not use any bidbots and you have not used bidbots in the last 30 days! Upvoting this comment will help keep this service running.
author | verifyme |
---|---|
permlink | re-ulog-15-utopian-v2-contribution-adding-work-experience-to-user-profile-eastmael-verifyme-randomvote |
category | ulog |
json_metadata | {"tags":["verifyme","random-upvote"],"users":["eastmael","steemconductor"],"app":"null/null","format":"markdown"} |
created | 2019-01-14 09:13:27 |
last_update | 2019-01-14 09:13:27 |
depth | 1 |
children | 0 |
last_payout | 2019-01-21 09:13:27 |
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 | 217 |
author_reputation | -705,247,747,464 |
root_title | "ULOG #15: Utopian V2 Contribution - Adding Work Experience to User Profile" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,354,804 |
net_rshares | 17,970,579,364 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eastmael | 0 | 17,970,579,364 | 100% |