 Note: the changes in this contribution won't be live on https://utopian.info as I am completely reworking the application structure and it would break the website if I added it. If you want to test it out locally then make sure to clone the `develop` branch and not the `master` branch: https://github.com/amosbastian/utopian/tree/develop (instructions are in the README). ### What's new? Currently Utopian.info doesn't have a proper home page, so I created one! If anyone remembers the first version of Utopian.info, they might recall that when we still had supervisors and teams the home page looked something like this <center> </center> After all the changes made to moderation teams I decided to scrap that page, since it was obviously redundant, and create a new one from scratch. As I am not very creative I needed to find some inspiration, and what better than Utopian's very own landing page https://join.utopian.io/. Currently the homepage has five separate sections, so I will go over them on by one below! I created a PR [here](https://github.com/amosbastian/utopian/pull/8) to make it easier on whoever has to moderate this contribution, but I also will link all relevant commits below. #### Categories If you checked out https://join.utopian.io/ you will already know what Utopian.info's category section is going to look like... it's nearly identical as you can see below.  The way I implemented this was by checking the CSS they used on https://join.utopian.io/ and basically copying most of the values. It's probably a bit different though, as I just checked stuff like the width of the circles and what kind of transitions they use when hovering them. Another thing that is different is that I used CSS Grid to implement this, where each category circle is its own cell. Because of this it was pretty easy to make it responsive, as you can see in the gif below.  I'll also show some code snippets below, so you can understand how easy CSS Grid really makes this. When using CSS Grid you can name areas in the grid like so ``` &__categories { ... grid-template-areas: "cat1 cat2 cat3 cat4 cat5 cat6" "cat7 cat8 cat9 cat10 cat11 cat12" } ``` then just like usual you can use media queries to change the shape of the area depending on the width of the screen ``` @media (max-width: 90rem) { .home-categories__categories { grid-template-areas: "cat1 cat2 cat3 cat4" "cat5 cat6 cat7 cat8" "cat9 cat10 cat11 cat12" } } @media (max-width: 50rem) { .home-categories__categories { grid-template-areas: "cat1 cat2 cat3" "cat4 cat5 cat6" "cat7 cat8 cat9" "cat10 cat11 cat12" } } ``` Also, I got the SVG icons from https://icomoon.io/, but I couldn't find the ones for the categories documentation, analysis or blogs, so if anyone knows what they *actually* are please let me know! ##### Commits * [Start on remake, add header homepage and start category section](https://github.com/amosbastian/utopian/commit/ca0fe9e0388431ea1d19b198547252fa4a5169a2) * [Category section finished, add slick carousel](https://github.com/amosbastian/utopian/commit/aab36c017957aca37b3c837920a2329397d624fa) * [Finish most styling, media queries to categories](https://github.com/amosbastian/utopian/commit/52ab71c05fa501e469819cb2ec3566ab481d13ba) #### Community managers In the community manager section I have, once again just like on the landing page of Utopian.io, used [slick](http://kenwheeler.github.io/slick/) to create a carousel of the most active community managers in the last week. You can see this in action in the GIF below  I created a `moderator-card` component using SCSS, which makes it easy to use this on other pages if I ever need to. Everything is dynamic, even the category as you may have noticed in the GIF above. In `home.py` I retrieve a list of all posts in the last week from the database and use this to calculate the following: * The category the community manager was most active in * The amount of accepted and rejected contributions * The amount of points scored in that week All this information is then stored in a dictionary and passed to the template, which is very useful. As I mentioned above, everything is dynamic, and because Knowledges and ms10398 have been most active in the bug hunting category it shows that its their category, even though it isn't. Everything is also responsive, which is this time made easy by [slick](http://kenwheeler.github.io/slick/) itself  The code for this can be found [here](https://github.com/amosbastian/utopian/blob/develop/utopian/static/js/carousel.js). A problem I faced was that for some reason CSS Grid messes up the carousel, so after doing some research I found out that you need to set a specific view width otherwise it doesn't work - just thought I'd add this here in case someone reading this runs into the same problem. Finally, I wanted to add a gradient on each side of the carousel. On Utopian's landing page they use an actual image for this, but I implemented this differently. I simply overlay the entire carousel with a linear gradient. When I first added this, I simply used a linear gradient with three colour stops like so: `linear-gradient(to right,#fff, transparent, #fff);`. Unfortunately this had an unforeseen side effect. Because it was overlaying the entire carousel it made it impossible to click a community manager's name. To remedy this I created two `div`s instead, one that would hover over the left side and another on the opposite side ``` &__gradient-left { position: absolute; height: 50%; width: 30%; background: linear-gradient(to right,#fff, transparent); z-index: 100; left: 0; } &__gradient-right { position: absolute; height: 50%; width: 30%; background: linear-gradient(to left,#fff, transparent); z-index: 100; right: 0; } ``` This makes it so that there's a small gap in-between both linear gradients so the middle community manager's name can always be clicked! ##### Commits * [Add community manager carousel + moderator-card component styling](https://github.com/amosbastian/utopian/commit/31fdf07e0f1ff4cd12950a162353e919132b0d07) * [Managers and moderators now retrieved from database and dynamic](https://github.com/amosbastian/utopian/commit/3713a316ed5fd82f149741373c5b3e4628d0ee85) #### Moderators Since I made the moderator card a component I could simply reuse it here. The only difference is that when creating the dictionary with information for the moderators in `hello.py` they start with 100 points less.  #### Contributors Once again this uses the moderator card, but there's a small difference. Instead of showing the seven most active contributors, it shows the contributors with the highest pending rewards. To implement this I had to add this to each post object in the database, which was very easy to do: ``` new_post = { ..., "reward": float(post["pending_payout_value"].split()[0]) } if new_post["reward"] == 0: new_post["reward"] = float(post["total_payout_value"].split()[0]) ``` This is then shown on the contributor's card in place of the points as seen in the GIF below  Note: this is not the amount they will actually receive, it's simply the pending rewards of all their contributions summed. ##### Commits * [Contributor now also dynamic + extra styling](https://github.com/amosbastian/utopian/commit/a05810319fe3405712fbde8216dcd92909ebe629) * [Add rewards to posts, add comments, fix client](https://github.com/amosbastian/utopian/commit/7a19e477f3426ef6836c3b49673712eae3ba0970) #### Projects Of course I wanted to also add projects to the home page, but this was a little bit more tricky to implement. Each post in the database already contains the repository's ID, so in `hello.py` I simply check which repository's have the highest pending rewards (just like the contributors section). Once I have the IDs of the repositories I use GitHub's API to retrieve the information needed like so ``` # Use GitHub API to get additional information for project in project_list: project_id = project["id"] request = requests.get(f"{GITHUB}repositories/{project_id}").json() project["full_name"] = request["full_name"] project["avatar_url"] = request["owner"]["avatar_url"] project["html_url"] = request["html_url"] ``` A project's card also looks a bit different, so I created them as their own component. Instead of showing the category at the top of the card it links to the project on GitHub. Also, instead of showing a user's avatar, it shows the avatar of the owner of the project. Everything together results in the following carousel:  ##### Commits * [Hardcode project section, create project card component](https://github.com/amosbastian/utopian/commit/7e282a47eb0f94be94e5be92e08c1e217cf81079) * [Projects now also dynamic - retrieved with GitHub API](https://github.com/amosbastian/utopian/commit/207795092070292160506bfb8e5a760c49c2781c) #### Search It's not actually functioning yet, but I already implemented it with CSS as seen in the GIF below. <center></center> In future updates I obviously want to make it actually work, including autocompletion, so look forward to that! ##### Commits * [Add search bar + styling](https://github.com/amosbastian/utopian/commit/35a841fd80b9200b4799328f3011387b0793b9af) ### What are my plans? As I mentioned above I am now working on the complete restructure of the Flask application. I will obviously reuse a lot of code, but it should result in a much cleaner and quicker application (hopefully). I am keeping everything on the `develop` branch for now, so it will only be available on https://utopian.info once everything is complete. Next step is implementing the search on the homepage and then probably the projects page since that doesn't exist yet! ### Contributing If you want to contribute, then please read [CONTRIBUTING.md](https://github.com/amosbastian/utopian/blob/master/CONTRIBUTING.md) for more information. --- Also, I was testing my stream a bit while working on a part of the application, so if you want to see some clips of this you can do so [here](https://www.twitch.tv/amosbastian/videos/all). <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@amosbastian/utopian-info-home-page">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | amosbastian | ||||||
---|---|---|---|---|---|---|---|
permlink | utopian-info-home-page | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":123324842,"name":"utopian","full_name":"amosbastian/utopian","html_url":"https://github.com/amosbastian/utopian","fork":false,"owner":{"login":"amosbastian"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemdev","utopian","info","python"],"links":["https://utopian.info","https://github.com/amosbastian/utopian/tree/develop","https://join.utopian.io/","https://github.com/amosbastian/utopian/pull/8","https://icomoon.io/","https://github.com/amosbastian/utopian/commit/ca0fe9e0388431ea1d19b198547252fa4a5169a2","https://github.com/amosbastian/utopian/commit/aab36c017957aca37b3c837920a2329397d624fa","https://github.com/amosbastian/utopian/commit/52ab71c05fa501e469819cb2ec3566ab481d13ba","http://kenwheeler.github.io/slick/","https://github.com/amosbastian/utopian/blob/develop/utopian/static/js/carousel.js","https://github.com/amosbastian/utopian/commit/31fdf07e0f1ff4cd12950a162353e919132b0d07","https://github.com/amosbastian/utopian/commit/3713a316ed5fd82f149741373c5b3e4628d0ee85","https://github.com/amosbastian/utopian/commit/a05810319fe3405712fbde8216dcd92909ebe629","https://github.com/amosbastian/utopian/commit/7a19e477f3426ef6836c3b49673712eae3ba0970","https://github.com/amosbastian/utopian/commit/7e282a47eb0f94be94e5be92e08c1e217cf81079","https://github.com/amosbastian/utopian/commit/207795092070292160506bfb8e5a760c49c2781c","https://github.com/amosbastian/utopian/commit/35a841fd80b9200b4799328f3011387b0793b9af","https://github.com/amosbastian/utopian/blob/master/CONTRIBUTING.md","https://www.twitch.tv/amosbastian/videos/all","https://utopian.io/utopian-io/@amosbastian/utopian-info-home-page"],"image":["https://cdn.utopian.io/posts/b744aea127f9421052cac3c115da0a48790aimage.png","https://cdn.utopian.io/posts/95523369cd8bf8373b3f41caac23b4f96047image.png","https://cdn.utopian.io/posts/a51c56ec14196b0ca539356cda372dc115b1categories.gif","https://i.imgur.com/w98cjNb.gif","https://i.imgur.com/WvfBMou.gif","https://i.imgur.com/d4Cv5xd.gif","https://i.imgur.com/wuHO42Y.gif","https://i.imgur.com/7KTZtnd.gif","https://i.imgur.com/Px4eBwN.gif","https://cdn.utopian.io/posts/1c1c0a1c1808bfd4d1ae3a882db8b11a4a93searchbar.gif"],"moderator":{"account":"justyy","time":"2018-04-25T05:45:25.490Z","pending":false,"reviewed":true,"flagged":false},"questions":{"voters":["justyy"],"answers":[{"question_id":"dev-1","answer_id":"dev-1-a-2","user":"justyy","influence":75},{"question_id":"dev-2","answer_id":"dev-2-a-2","user":"justyy","influence":75},{"question_id":"dev-3","answer_id":"dev-3-a-1","user":"justyy","influence":75},{"question_id":"dev-4","answer_id":"dev-4-a-1","user":"justyy","influence":75},{"question_id":"dev-5","answer_id":"dev-5-a-2","user":"justyy","influence":75},{"question_id":"dev-6","answer_id":"dev-6-a-1","user":"justyy","influence":75},{"question_id":"dev-7","answer_id":"dev-7-a-2","user":"justyy","influence":75}],"total_influence":0,"most_rated":[{"question_id":"dev-1","answer_id":"dev-1-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-2","answer_id":"dev-2-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-3","answer_id":"dev-3-a-1","influence":75,"voters":["justyy"]},{"question_id":"dev-4","answer_id":"dev-4-a-1","influence":75,"voters":["justyy"]},{"question_id":"dev-5","answer_id":"dev-5-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-6","answer_id":"dev-6-a-1","influence":75,"voters":["justyy"]},{"question_id":"dev-7","answer_id":"dev-7-a-2","influence":75,"voters":["justyy"]}]},"score":86.75,"total_influence":75,"staff_pick":null,"config":{"questions":[{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"dev-1","answers":[{"answer":"The quality of the post is fantastic.","answer_id":"dev-1-a-1","value":10},{"answer":"The post is of very good quality. ","answer_id":"dev-1-a-2","value":8},{"answer":"The post is poorly written and/or formatted, but readable.","answer_id":"dev-1-a-3","value":3},{"answer":"The post is really hard to read and the content is barely understandable.","answer_id":"dev-1-a-4","value":0}]},{"question":"How would you rate the impact and significance of the contribution to the project and/or open source ecosystem in terms of uniqueness, usefulness and potential future applications?","question_id":"dev-2","answers":[{"answer":"This contribution adds high value and holds great significance for the project and/or open source ecosystem.","answer_id":"dev-2-a-1","value":35},{"answer":"This contribution adds significant value to the project and/or open source ecosystem. ","answer_id":"dev-2-a-2","value":28},{"answer":"This contribution adds some value to the project and/or open source ecosystem.","answer_id":"dev-2-a-3","value":17.5},{"answer":"This contribution hold no value and is insignificant in impact. ","answer_id":"dev-2-a-4","value":0}]},{"question":"How would you rate the total volume of work invested into this contribution?","question_id":"dev-3","answers":[{"answer":"This contribution appears to have demanded a lot of intensive work.","answer_id":"dev-3-a-1","value":20},{"answer":"This contribution appears to have required an average volume of work.","answer_id":"dev-3-a-2","value":14},{"answer":"This contribution shows some work done.","answer_id":"dev-3-a-3","value":6},{"answer":"This contribution shows no work done.","answer_id":"dev-3-a-4","value":0}]},{"question":"How would you rate the quality of the code submitted?","question_id":"dev-4","answers":[{"answer":"High - it follows all best practices. ","answer_id":"dev-4-a-1","value":20},{"answer":"Average - it follows most best practices.","answer_id":"dev-4-a-2","value":14},{"answer":"Low - it follows some best practices.","answer_id":"dev-4-a-3","value":6},{"answer":"Very low - it doesn't follow any best practices. ","answer_id":"dev-4-a-4","value":0}]},{"question":"How would you rate the knowledge and expertise necessary to fix the bug / implement the added feature(s)?","question_id":"dev-5","answers":[{"answer":"High - a lot of research and specific knowledge was required.","answer_id":"dev-5-a-1","value":7.5},{"answer":"Average - some research and knowledge was required.","answer_id":"dev-5-a-2","value":5.25},{"answer":"Low - not much knowledge or skill were required.","answer_id":"dev-5-a-3","value":2.25},{"answer":"Insignificant - no knowledge or skills were necessary.","answer_id":"dev-5-a-4","value":0}]},{"question":"How would you rate the accuracy and readability of the commit messages?","question_id":"dev-6","answers":[{"answer":"High - they are concise, descriptive and consistent. ","answer_id":"dev-6-a-1","value":2.5},{"answer":"Average - they are mostly concise, descriptive and consistent. ","answer_id":"dev-6-a-2","value":2},{"answer":"Low - they could be more concise, descriptive or consistent.","answer_id":"dev-6-a-3","value":0.75},{"answer":"Very low - they aren't concise, descriptive or consistent at all.","answer_id":"dev-6-a-4","value":0}]},{"question":"How do you rate the quality of the comments in the code?","question_id":"dev-7","answers":[{"answer":"High - everything is well-commented and adds to the readability of the code. ","answer_id":"dev-7-a-1","value":5},{"answer":"Average - most of the code is commented and most if it adds to the readability of the code.","answer_id":"dev-7-a-2","value":3},{"answer":"Low - little of the code is commented, but it still adds to the readability.","answer_id":"dev-7-a-3","value":1.5},{"answer":"Very low - the added comments provide no value or are not present at all.","answer_id":"dev-7-a-4","value":0}]}]}}" | ||||||
created | 2018-04-24 22:39:03 | ||||||
last_update | 2018-04-25 05:45:30 | ||||||
depth | 0 | ||||||
children | 6 | ||||||
last_payout | 2018-05-01 22:39:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 167.272 HBD | ||||||
curator_payout_value | 62.815 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 11,153 | ||||||
author_reputation | 174,473,586,900,705 | ||||||
root_title | "Utopian.info - Home page" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,948,363 | ||||||
net_rshares | 39,874,977,807,339 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sambillingham | 0 | 3,300,698,415 | 100% | ||
sjennon | 0 | 40,835,231,931 | 20% | ||
techslut | 0 | 140,593,116,555 | 50% | ||
minersean | 0 | 791,167,646 | 50% | ||
dyancuex | 0 | 1,009,231,459 | 50% | ||
michelios | 0 | 54,974,186,231 | 30% | ||
miniature-tiger | 0 | 84,068,496,457 | 100% | ||
toninux | 0 | 579,028,170 | 50% | ||
jdc | 0 | 801,424,561 | 20% | ||
juliank | 0 | 28,821,156,073 | 5% | ||
bargolis | 0 | 716,004,805 | 5% | ||
jakipatryk | 0 | 46,280,342,370 | 100% | ||
helo | 0 | 25,006,709,883 | 100% | ||
ilyastarar | 0 | 24,095,134,627 | 50% | ||
flauwy | 0 | 1,329,423,909 | 10% | ||
mahdiyari | 0 | 9,901,937,015 | 10% | ||
ronimm | 0 | 10,713,136,446 | 100% | ||
saksham | 0 | 474,897,623 | 37% | ||
simonluisi | 0 | 2,639,156,712 | 100% | ||
doughtaker | 0 | 10,425,015,148 | 33% | ||
thinkkniht | 0 | 99,841,501 | 75% | ||
ewuoso | 0 | 3,824,207,202 | 20% | ||
inquiringtimes | 0 | 79,262,897,463 | 50% | ||
elbleess | 0 | 408,355,372 | 50% | ||
jfuenmayor96 | 0 | 2,444,470,316 | 50% | ||
phogyan | 0 | 2,630,643,063 | 50% | ||
onos | 0 | 7,658,836,370 | 100% | ||
instantania.cat | 0 | 1,401,564,170 | 50% | ||
harshallele | 0 | 5,042,354,446 | 50% | ||
logan6230 | 0 | 684,937,545 | 100% | ||
tradeownsystems | 0 | 436,297,180 | 100% | ||
jesdn16 | 0 | 2,705,042,910 | 100% | ||
xtramedium | 0 | 312,074,885 | 50% | ||
aafeng | 0 | 2,551,414,867 | 20% | ||
odibezeking | 0 | 238,129,653 | 100% | ||
yandot | 0 | 4,723,868,443 | 30% | ||
bhim | 0 | 73,332,255 | 50% | ||
stoodkev | 0 | 18,903,091,084 | 10% | ||
dakeshi | 0 | 3,374,022,430 | 50% | ||
artoraly | 0 | 318,967,002 | 50% | ||
danielfinn | 0 | 475,706,110 | 100% | ||
luisrod | 0 | 116,014,491 | 15% | ||
ansonoxy | 0 | 1,724,551,697 | 100% | ||
eastmael | 0 | 32,661,897,111 | 100% | ||
jamesbarraclough | 0 | 547,529,730 | 100% | ||
smafey | 0 | 1,063,930,168 | 50% | ||
lauraesfeliz | 0 | 513,008,412 | 100% | ||
espoem | 0 | 67,732,778,254 | 100% | ||
maneki-neko | 0 | 678,569,505 | 1% | ||
gotgame | 0 | 7,120,745,529 | 100% | ||
isaganicabrales | 0 | 402,252,231 | 50% | ||
zenc | 0 | 260,017,028 | 50% | ||
hsynterkr | 0 | 1,648,789,410 | 50% | ||
idlebright | 0 | 3,155,989,615 | 50% | ||
alanzheng | 0 | 415,056,666 | 6.21% | ||
odebgaming | 0 | 436,968,747 | 100% | ||
utopian-io | 0 | 38,563,142,300,074 | 26.02% | ||
favcau | 0 | 40,078,676,862 | 100% | ||
steaknsteem | 0 | 2,185,170,650 | 50% | ||
moorkedi | 0 | 1,661,123,924 | 100% | ||
parag | 0 | 220,076,093 | 50% | ||
kimaben | 0 | 511,651,238 | 25% | ||
kslo | 0 | 2,433,660,332 | 50% | ||
mrmaracucho | 0 | 558,675,981 | 100% | ||
craigahamilton | 0 | 185,145,275 | 10% | ||
nathalie13 | 0 | 903,035,627 | 100% | ||
not-a-bird | 0 | 4,995,201,545 | 50% | ||
adhew | 0 | 61,124,335 | 10% | ||
bitopia | 0 | 1,455,436,457 | 100% | ||
eleonardo | 0 | 172,796,521 | 10% | ||
zohaib715 | 0 | 327,364,195 | 50% | ||
evilest-fiend | 0 | 2,464,854,289 | 100% | ||
shenoy | 0 | 10,206,122,742 | 10% | ||
devart | 0 | 1,259,466,367 | 100% | ||
studytext | 0 | 153,061,109 | 25% | ||
greenorange | 0 | 609,471,115 | 100% | ||
fabiocola | 0 | 830,549,507 | 100% | ||
checkthisout | 0 | 822,373,978 | 50% | ||
navx | 0 | 2,042,449,222 | 70% | ||
handfree42 | 0 | 100,968,750 | 50% | ||
ilovekrys | 0 | 220,302,784 | 50% | ||
family.app | 0 | 102,142,645 | 100% | ||
not-a-cat | 0 | 1,116,306,936 | 100% | ||
varja | 0 | 122,754,868 | 50% | ||
maphics | 0 | 105,772,834 | 100% | ||
sebastiengllmt | 0 | 307,095,054 | 50% | ||
utopian-1up | 0 | 5,088,675,302 | 100% | ||
barut | 0 | 694,999,836 | 50% | ||
phgnomo | 0 | 269,552,393 | 5% | ||
senseibabs | 0 | 89,041,734 | 20% | ||
nellita66 | 0 | 182,881,916 | 50% | ||
carsonroscoe | 0 | 12,678,669,506 | 80% | ||
skaybliss | 0 | 88,701,209 | 20% | ||
zlatkamrs | 0 | 256,706,249 | 50% | ||
salahudeen | 0 | 131,890,066 | 35% | ||
amosbastian | 0 | 13,617,637,358 | 50% | ||
mountainjewel | 0 | 1,555,666,840 | 5% | ||
wehmoen | 0 | 31,866,318,237 | 100% | ||
yourmercury | 0 | 462,394,557 | 100% | ||
acrywhif | 0 | 3,466,097,000 | 80% | ||
xplore | 0 | 739,526,529 | 50% | ||
layanmarissa | 0 | 217,493,554 | 50% | ||
proffgodswill | 0 | 61,368,512 | 10% | ||
grzesiekb | 0 | 172,286,614,824 | 100% | ||
bitcoin.news | 0 | 497,187,186 | 50% | ||
sweeverdev | 0 | 1,058,578,875 | 50% | ||
kodeblacc | 0 | 3,458,098,566 | 50% | ||
isacastillor | 0 | 1,092,298,917 | 95% | ||
devilonwheels | 0 | 1,795,096,683 | 10% | ||
thescholarlyowl | 0 | 6,183,135,715 | 50% | ||
jerybanfield | 0 | 5,674,439,422 | 100% | ||
sijobe | 0 | 588,759,695 | 100% | ||
oups | 0 | 10,759,666,350 | 100% | ||
rhotimee | 0 | 419,080,720 | 100% | ||
jrmiller87 | 0 | 2,546,223,282 | 100% | ||
solomon507 | 0 | 224,833,602 | 50% | ||
patatesyiyen | 0 | 71,915,781 | 12.5% | ||
deejee | 0 | 119,892,669 | 20% | ||
rsteem | 0 | 338,612,647 | 50% | ||
naturallife | 0 | 1,944,454,563 | 88% | ||
onin91 | 0 | 438,247,259 | 50% | ||
isabella394 | 0 | 2,603,181,513 | 100% | ||
emailbox19149 | 0 | 177,855,914 | 50% | ||
cheesom | 0 | 261,739,220 | 50% | ||
sargoon | 0 | 7,235,971,609 | 100% | ||
holger80 | 0 | 100,455,601,739 | 49% | ||
lemony-cricket | 0 | 9,930,106,670 | 20% | ||
saifannur-mzy | 0 | 294,697,275 | 50% | ||
yeswanth | 0 | 611,348,006 | 100% | ||
kaking | 0 | 229,331,972 | 50% | ||
mdnazmulhasan | 0 | 318,932,031 | 100% | ||
exploreand | 0 | 1,178,382,815 | 25% | ||
petvalbra | 0 | 599,758,649 | 100% | ||
steemassistant | 0 | 506,888,720 | 100% | ||
hmctrasher | 0 | 407,083,721 | 10% | ||
photohunter1 | 0 | 4,013,502,760 | 100% | ||
photohunter3 | 0 | 3,185,994,045 | 100% | ||
photohunter4 | 0 | 3,174,109,550 | 100% | ||
photohunter5 | 0 | 3,166,838,142 | 100% | ||
howtosteem | 0 | 3,220,752,114 | 100% | ||
midun | 0 | 1,155,278,366 | 100% | ||
cha0s0000 | 0 | 7,800,966,231 | 100% | ||
sylinda | 0 | 220,177,441 | 50% | ||
kingsman2 | 0 | 305,976,090 | 50% | ||
livsky | 0 | 101,920,633 | 50% | ||
tailslide | 0 | 223,422,071 | 50% | ||
roj | 0 | 1,918,105,595 | 100% | ||
raoul.poenar | 0 | 3,441,164,652 | 50% | ||
yokunjon | 0 | 1,690,083,379 | 100% | ||
andiepumpgun | 0 | 247,678,115 | 50% | ||
kalejandra | 0 | 383,814,768 | 100% | ||
aderemi01 | 0 | 2,665,688,133 | 100% | ||
soykatherine | 0 | 220,264,571 | 50% | ||
sampath94 | 0 | 221,212,954 | 50% | ||
killbill73 | 0 | 177,297,757 | 50% | ||
amirdesaingrafis | 0 | 560,869,910 | 50% | ||
fai.zul | 0 | 305,976,090 | 50% | ||
nightdragon | 0 | 240,393,341 | 50% | ||
jacintoelbarouki | 0 | 217,726,838 | 50% | ||
aliyu-s | 0 | 478,806,719 | 50% | ||
estherekanem | 0 | 88,932,646 | 20% | ||
mirna98 | 0 | 218,093,085 | 50% | ||
dawa | 0 | 221,326,964 | 50% | ||
muratti | 0 | 61,392,358 | 10% | ||
flinter | 0 | 162,442,179 | 50% | ||
sinem006 | 0 | 2,263,965,683 | 100% | ||
abreu | 0 | 220,571,014 | 50% | ||
mwfiae | 0 | 3,817,516,848 | 10% | ||
opulence | 0 | 1,788,702,628 | 50% | ||
phasma | 0 | 122,612,788 | 20% | ||
masjenk | 0 | 158,886,552 | 50% | ||
pixelproperty | 0 | 3,112,788,309 | 100% | ||
donjyde | 0 | 217,300,927 | 50% | ||
nonsqtr | 0 | 488,379,212 | 50% | ||
crispycoinboys | 0 | 2,128,133,179 | 30% | ||
zcool | 0 | 137,641,995 | 10% | ||
gwapoaller | 0 | 307,097,758 | 50% | ||
carloniere | 0 | 133,604,614 | 50% | ||
mrgranville | 0 | 488,825,485 | 100% | ||
bluestorm | 0 | 460,899,167 | 75% | ||
ayay | 0 | 60,970,903 | 11% | ||
dexter24 | 0 | 217,049,210 | 50% | ||
muammarnst | 0 | 306,191,533 | 50% | ||
jayo | 0 | 174,717,738 | 50% | ||
pepememes | 0 | 175,433,496 | 50% | ||
ayoade96 | 0 | 64,166,325 | 50% | ||
onderakcaalan | 0 | 3,740,611,934 | 100% | ||
kaell | 0 | 51,958,472 | 10% | ||
ariefmunanzar | 0 | 146,698,776 | 100% | ||
ahmad097 | 0 | 221,350,686 | 50% | ||
animesukidesu | 0 | 162,629,412 | 50% | ||
zay-arasi | 0 | 217,617,605 | 50% | ||
wealth4good | 0 | 295,489,027 | 5% | ||
olivier10101 | 0 | 141,358,833 | 100% | ||
lsanek | 0 | 296,920,450 | 50% | ||
lykia | 0 | 300,291,174 | 50% | ||
kejora05 | 0 | 217,616,469 | 50% | ||
realness | 0 | 306,394,150 | 50% | ||
arunchaubey21 | 0 | 604,615,472 | 100% | ||
musicbot | 0 | 105,222,470 | 100% | ||
anime.lovers | 0 | 306,354,871 | 50% | ||
flugbot | 0 | 122,683,991 | 100% | ||
lemcriq | 0 | 51,503,592 | 20% | ||
ernoldlvb | 0 | 123,707,229 | 50% | ||
gydronium | 0 | 134,485,285 | 30% | ||
clevershovel | 0 | 2,462,622,544 | 35% | ||
masterofdisaster | 0 | 251,322,101 | 50% | ||
touhidalam69 | 0 | 648,485,904 | 100% | ||
eraizel | 0 | 851,880,693 | 50% | ||
joanpablo | 0 | 272,056,946 | 50% | ||
truthtrader | 0 | 7,165,088,861 | 5% | ||
jaber-hossain70 | 0 | 245,107,563 | 50% | ||
gnaimul | 0 | 220,239,421 | 50% | ||
clayjohn | 0 | 6,237,556,195 | 100% | ||
morin89 | 0 | 217,448,421 | 50% | ||
umut1905 | 0 | 52,103,380 | 50% | ||
wave.beads | 0 | 156,217,358 | 50% | ||
editorspicks | 0 | 61,230,367 | 50% | ||
syahrin | 0 | 234,478,696 | 50% | ||
cryptocopy | 0 | 305,558,280 | 50% | ||
artsyunicorn | 0 | 236,559,698 | 50% | ||
steemfunder | 0 | 282,043,317 | 50% | ||
solpaman | 0 | 299,594,707 | 50% | ||
femidada | 0 | 220,169,152 | 50% | ||
mvoalevine | 0 | 220,239,268 | 50% | ||
oezixxx | 0 | 479,101,245 | 100% | ||
chrome.citizen | 0 | 95,355,566 | 50% | ||
swaze | 0 | 305,642,588 | 50% | ||
ongolodesire | 0 | 223,117,973 | 50% | ||
pinkyangel | 0 | 216,996,722 | 50% |
Nice informative post keep it up sir... I'm trying a bit of coding it will be helpful to me thanks for posting
author | arunchaubey21 |
---|---|
permlink | re-amosbastian-utopian-info-home-page-20180424t230305115z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-24 23:03:06 |
last_update | 2018-04-24 23:04:09 |
depth | 1 |
children | 0 |
last_payout | 2018-05-01 23:03:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 335,348,714,338 |
root_title | "Utopian.info - Home page" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,951,121 |
net_rshares | 0 |
This is superb. Looking forward to seeing it live. Keep it up.
author | espoem | ||||||
---|---|---|---|---|---|---|---|
permlink | re-amosbastian-utopian-info-home-page-20180425t081640461z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-25 08:16:42 | ||||||
last_update | 2018-04-25 08:16:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-05-02 08:16:42 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.114 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 62 | ||||||
author_reputation | 59,289,149,412,912 | ||||||
root_title | "Utopian.info - Home page" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 52,020,618 | ||||||
net_rshares | 28,256,147,105 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amosbastian | 0 | 28,256,147,105 | 100% |
Thank you for your contribution. I go to `https://utopian.info/moderator/justyy` and click the `Contributors` on the sidebar, it then redirects to yours! ---------------------------------------------------------------------- Need help? Write a ticket on https://support.utopian.io. Chat with us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | justyy | ||||||
---|---|---|---|---|---|---|---|
permlink | re-amosbastian-utopian-info-home-page-20180425t054500748z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-25 05:45:06 | ||||||
last_update | 2018-04-25 05:45:06 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-05-02 05:45:06 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.162 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 397 | ||||||
author_reputation | 280,616,224,641,976 | ||||||
root_title | "Utopian.info - Home page" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 52,000,013 | ||||||
net_rshares | 38,761,706,500 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
happyukgo | 0 | 357,530,327 | 20% | ||
superbing | 0 | 2,150,575,838 | 20% | ||
dailyfortune | 0 | 1,430,662,463 | 20% | ||
dailystats | 0 | 3,550,643,238 | 20% | ||
amosbastian | 0 | 28,847,898,877 | 100% | ||
dailychina | 0 | 2,424,395,757 | 20% |
Thanks! O yeah, I didn't implement a contributor "overview" or error page yet so this was my solution, haha. If you are a moderator you can click your name to go to your contributor profile page, though!
author | amosbastian |
---|---|
permlink | re-justyy-re-amosbastian-utopian-info-home-page-20180425t104828426z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-25 10:48:30 |
last_update | 2018-04-25 10:48:30 |
depth | 2 |
children | 0 |
last_payout | 2018-05-02 10:48:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 174,473,586,900,705 |
root_title | "Utopian.info - Home page" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,042,117 |
net_rshares | 0 |
Nice, Seems a great update is coming...
author | touhidalam69 |
---|---|
permlink | re-amosbastian-utopian-info-home-page-20180425t082045907z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-25 08:20:51 |
last_update | 2018-04-25 08:20:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-02 08:20:51 |
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 | 39 |
author_reputation | 2,409,777,621,558 |
root_title | "Utopian.info - Home page" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,021,253 |
net_rshares | 0 |
### Hey @amosbastian! Thank you for the great work you've done! We're already looking forward to your next contribution! #### Fully Decentralized Rewards We hope you will take the time to share your expertise and knowledge by rating contributions made by others on Utopian.io to help us reward the best contributions together. #### Utopian Witness! <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a> We are made of developers, system administrators, entrepreneurs, artists, content creators, thinkers. We embrace every nationality, mindset and belief. **Want to chat? Join us on Discord https://discord.me/utopian-io**
author | utopian-io |
---|---|
permlink | re-amosbastian-utopian-info-home-page-20180427t150045603z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-04-27 15:00:48 |
last_update | 2018-04-27 15:00:48 |
depth | 1 |
children | 0 |
last_payout | 2018-05-04 15:00: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 | 691 |
author_reputation | 152,955,367,999,756 |
root_title | "Utopian.info - Home page" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,470,304 |
net_rshares | 0 |