Yesterday I got asked to build an Android app from scratch as part of an interview coding challenge. The recruiter asked me to submit the project via GitHub, so I thought I would might as well document it here for anyone interested in the Android developer interview process, and/or anyone looking for tips on their upcoming Interview. ### The Challenge 1. Create a native Android Mobile App with a Side menu and map as home screen. 2. Take a set of dummy data representing locations on map with latitude and longitude. Show these locations on map when a user opens the app using appropriate marker. 3. Create a button to pin a new location searched on map by a user. 4. Add this new location to your set of dummy data and it should show up the next time user starts the app. 5. Use MVP architecture ### My Approach The challenge pretty easy, I got it done in a couple of hours. Here's the completed product  **What is MVP?** for those if you that do not know, MVP is basically a design style of writing code. MVP stands for Model View Presenter, and when writing code in MVP, you compartmentalize the code to only perform certain function. - Model - consists of all the code that is responsible for fetching and storing data - View - is all the code the is related to the UI (what you see in the screen) - Presenter - all the business logic or the brain of the app. Here's a pretty diagram of MVP  So here is How it Wrote the app, 1. We define a Contract, in my case I named it [MainContract](https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/MainContract.kt) this is the Glue between the View and the Presenter 2. I created a fragment named [MainFragment](https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/MainFragment.kt) this will serve as the view. notice that we have to inherit [MainContract.View](https://github.com/edTheGuy00/Parkstash-challenge/blob/11c8fee77c2ba2c2c262f4e803f7f263249adfc4/app/src/main/java/com/taskail/parkstashproject/MainFragment.kt#L19) 3. [MainActivity](https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/MainActivity.kt) will serve as the presenter in this case. Here we need to inherit [MainContract.Presenter](https://github.com/edTheGuy00/Parkstash-challenge/blob/11c8fee77c2ba2c2c262f4e803f7f263249adfc4/app/src/main/java/com/taskail/parkstashproject/MainActivity.kt#L20) 4. Lastly I created the Model as [LocationRepo](https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/LocationRepo.kt) The [LocationRepo](https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/LocationRepo.kt) is actually only in charge of fetching and saving the data into the database. The entire Model aspect of the MVP architecture actually consists of almost all the [data](https://github.com/edTheGuy00/Parkstash-challenge/tree/master/app/src/main/java/com/taskail/parkstashproject/data) directory. In here you will find the creation of the [database](https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/ParkStashDatabase.kt), the definition of the only [table in the database](https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/Location.kt) and the [access objects](https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/LocationDao.kt) for the database. Overall this was a pretty fun project to do. <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@edgar-trem/interview-project-an-android-developer-interview-coding-challenge-in-mvp">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | edgar-trem | ||||||
---|---|---|---|---|---|---|---|
permlink | interview-project-an-android-developer-interview-coding-challenge-in-mvp | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":129164681,"name":"Parkstash-challenge","full_name":"edTheGuy00/Parkstash-challenge","html_url":"https://github.com/edTheGuy00/Parkstash-challenge","fork":false,"owner":{"login":"edTheGuy00"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","development","android","coding"],"links":["https://raw.githubusercontent.com/edTheGuy00/Parkstash-challenge/master/images/image.png","https://cdn-images-1.medium.com/max/1600/1*p2JvbgEir0BusDiiVHMvIA.png","https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/MainContract.kt","https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/MainFragment.kt","https://github.com/edTheGuy00/Parkstash-challenge/blob/11c8fee77c2ba2c2c262f4e803f7f263249adfc4/app/src/main/java/com/taskail/parkstashproject/MainFragment.kt#L19","https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/MainActivity.kt","https://github.com/edTheGuy00/Parkstash-challenge/blob/11c8fee77c2ba2c2c262f4e803f7f263249adfc4/app/src/main/java/com/taskail/parkstashproject/MainActivity.kt#L20","https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/LocationRepo.kt","https://github.com/edTheGuy00/Parkstash-challenge/tree/master/app/src/main/java/com/taskail/parkstashproject/data","https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/ParkStashDatabase.kt","https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/Location.kt","https://github.com/edTheGuy00/Parkstash-challenge/blob/master/app/src/main/java/com/taskail/parkstashproject/data/LocationDao.kt"],"image":["https://raw.githubusercontent.com/edTheGuy00/Parkstash-challenge/master/images/image.png","https://cdn-images-1.medium.com/max/1600/1*p2JvbgEir0BusDiiVHMvIA.png"],"moderator":{"account":"codingdefined","time":"2018-04-13T04:39:13.487Z","pending":false,"reviewed":true,"flagged":false},"questions":null,"score":null,"total_influence":null,"staff_pick":null,"config":{"questions":[{"question":"How would you rate the impact of the fixed bugs / new features on the project?","question_id":"dev-1","answers":[{"answer":"Very high - the amount of work is very high.","answer_id":1,"value":20},{"answer":"High - the amount of work is high","answer_id":2,"value":15},{"answer":"Average - the amount of work is average","answer_id":3,"value":10},{"answer":"Low - the amount of work is low.","answer_id":4,"value":5},{"answer":"Very Low - the amount of work is very little.","answer_id":5,"value":0}]},{"question":"How would you rate the quality of the provided code?","question_id":"dev-2","answers":[{"answer":"Very high - the code follows all the best practices and/or is the opposite of trivial.","answer_id":1,"value":20},{"answer":"High - the code follows nearly all the best practices and/or is not trivial at all. ","answer_id":2,"value":15},{"answer":"Average - the code follows most the best practices and/or some parts of it are trivial.","answer_id":3,"value":10},{"answer":"Low - the code doesn't really follow the best practices and/or a lot of it is trivial.","answer_id":4,"value":5},{"answer":"Very low - the code doesn't follow the best practices and is completely trivial.","answer_id":5,"value":0}]},{"question":"How do you rate the target project overall?","question_id":"dev-3","answers":[{"answer":"Very high - the project has a unique value, will (potentially) also be useful to a lot of people and has the potential to keep growing.","answer_id":1,"value":10},{"answer":"High - the project isn't really unique but it is well maintained.","answer_id":2,"value":8},{"answer":"Average - the project is limited or not very well maintained.","answer_id":3,"value":4},{"answer":"Low - quality of the project overall is low.","answer_id":4,"value":2},{"answer":"Very low - quality of the project overall is very low and not well maintained.","answer_id":5,"value":0}]},{"question":"Does the writing style meet the Utopian standard considering formalness, informativeness and clarity of the content?","question_id":"c-1","answers":[{"answer":"It is formal, informative and well written with clear content.","answer_id":1,"value":10},{"answer":"It is informative with clear content but not formal enough.","answer_id":2,"value":5},{"answer":"The contribution could be more informative or contains unrelated information, formality and clarity of the content are good enough.","answer_id":3,"value":4},{"answer":"Not all sections were clear enough but overall holds value for the project.","answer_id":4,"value":2},{"answer":"Not at all.","answer_id":5,"value":0}]},{"question":"Was the provided category template for the editor followed?","question_id":"c-2","answers":[{"answer":"All points of the template were included with additional points as well.","answer_id":1,"value":5},{"answer":"The template was followed without additions.","answer_id":2,"value":4},{"answer":"The template was edited but the points were covered in different way.","answer_id":3,"value":3},{"answer":"Not all points of the template were covered in the contribution but the structure is clear enough.","answer_id":4,"value":3},{"answer":"The template was not followed but the structure is clear enough.","answer_id":5,"value":2},{"answer":"The contents are not clearly structured at all.","answer_id":6,"value":0}]},{"question":"Did the contributor tag other users?","question_id":"c-3","answers":[{"answer":"No other users were tagged by the contributor.","answer_id":1,"value":5},{"answer":"Used tags are reasonable and all tagged people are connected to the project and/or the contribution.","answer_id":2,"value":5},{"answer":"The contribution contains mentions of other users that are not directly related to the contribution but related in other ways.","answer_id":3,"value":2},{"answer":"The contributor misuses tagging of other users.","answer_id":4,"value":0}]},{"question":"Did the contributor ask for upvotes, resteems, follows or witness vote?","question_id":"c-4","answers":[{"answer":"No","answer_id":1,"value":5},{"answer":"Yes, but not in a way that disturbs readability. ","answer_id":2,"value":5},{"answer":"Yes.","answer_id":3,"value":0}]},{"question":"Was a graphical content like images, charts, videos or screenshots included?","question_id":"c-5","answers":[{"answer":"Yes, the graphical content is included and adds more value to the contribution.","answer_id":1,"value":5},{"answer":"No but the contribution works well without graphical content well.","answer_id":2,"value":4},{"answer":"Yes, but most of the graphical contentโs purpose is just for presentational matters.","answer_id":3,"value":3},{"answer":"No relevant or useful graphical content is included in the contribution.","answer_id":4,"value":0}]},{"question":"How would you rate the overall added value?","question_id":"c-6","answers":[{"answer":"Extraordinary value to both the project and the open source community overall.","answer_id":1,"value":20},{"answer":"Significant value to the project or open source community.","answer_id":2,"value":15},{"answer":"Some value to the project or open source community.","answer_id":3,"value":10},{"answer":"Little value to the project or open source community.","answer_id":4,"value":5},{"answer":"No obvious value to project or open source community.","answer_id":5,"value":0}]}]}}" | ||||||
created | 2018-04-12 00:28:18 | ||||||
last_update | 2018-04-13 04:39:12 | ||||||
depth | 0 | ||||||
children | 8 | ||||||
last_payout | 2018-04-19 00:28:18 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 96.636 HBD | ||||||
curator_payout_value | 36.773 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4,104 | ||||||
author_reputation | 4,926,579,982,162 | ||||||
root_title | "[Interview Project]: An Android Developer Interview Coding Challenge in MVP" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,580,691 | ||||||
net_rshares | 33,132,515,159,281 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hbhades | 0 | 9,358,866,459 | 100% | ||
thatmemeguy | 0 | 4,785,737,927 | 50% | ||
amri | 0 | 8,963,241,186 | 100% | ||
dyancuex | 0 | 1,034,319,469 | 50% | ||
michelios | 0 | 29,792,498,809 | 20% | ||
oluwatobiloba | 0 | 9,108,662,246 | 100% | ||
toninux | 0 | 609,868,725 | 50% | ||
jdc | 0 | 1,067,449,498 | 20% | ||
bargolis | 0 | 713,697,720 | 5% | ||
helo | 0 | 25,580,396,295 | 100% | ||
walnut1 | 0 | 6,527,278,416 | 5% | ||
ilyastarar | 0 | 74,657,389,407 | 50% | ||
herman2141 | 0 | 62,626,101 | 50% | ||
prechi | 0 | 1,295,745,207 | 10% | ||
mrbearbear | 0 | 9,048,145,966 | 100% | ||
alphacore | 0 | 2,570,699,468 | 5% | ||
mahdiyari | 0 | 11,828,252,160 | 20% | ||
ronimm | 0 | 9,874,173,792 | 100% | ||
mufasatoldyou | 0 | 7,679,720,664 | 100% | ||
grimmyx | 0 | 9,432,108,074 | 100% | ||
saksham | 0 | 487,404,148 | 37% | ||
chaostheory | 0 | 992,920,457 | 100% | ||
butterfly-effect | 0 | 953,070,468 | 100% | ||
thegrandestine | 0 | 1,879,295,406 | 100% | ||
makrotheblack | 0 | 2,749,111,031 | 50% | ||
mirrorforce | 0 | 749,353,577 | 100% | ||
amikphoto | 0 | 9,464,203,545 | 100% | ||
lilith | 0 | 265,523,936 | 100% | ||
mysticalword | 0 | 855,826,822 | 100% | ||
simonluisi | 0 | 2,597,265,336 | 100% | ||
thinkkniht | 0 | 99,841,501 | 75% | ||
lemmybe | 0 | 9,355,650,576 | 100% | ||
mikefrancis | 0 | 270,753,509 | 50% | ||
ewuoso | 0 | 2,606,892,059 | 20% | ||
raviyanda | 0 | 8,963,016,310 | 100% | ||
elbleess | 0 | 654,580,003 | 50% | ||
jfuenmayor96 | 0 | 2,442,575,217 | 50% | ||
paradoxofchoice | 0 | 1,473,573,301 | 100% | ||
phogyan | 0 | 2,804,578,830 | 50% | ||
instantania.cat | 0 | 1,548,547,330 | 50% | ||
betacore | 0 | 863,918,261 | 100% | ||
harshallele | 0 | 4,909,919,749 | 50% | ||
love-me | 0 | 1,083,093,844 | 100% | ||
omegacore | 0 | 1,841,078,229 | 100% | ||
logan6230 | 0 | 825,377,249 | 100% | ||
jesdn16 | 0 | 2,507,936,605 | 100% | ||
xtramedium | 0 | 326,461,228 | 50% | ||
tolysidori | 0 | 73,587,254 | 100% | ||
steem-lagos | 0 | 8,888,038,759 | 100% | ||
we1even | 0 | 9,259,903,786 | 100% | ||
bhim | 0 | 67,513,084 | 50% | ||
stoodkev | 0 | 18,112,304,167 | 10% | ||
lotterysbd | 0 | 9,063,336,053 | 100% | ||
artoraly | 0 | 299,446,416 | 50% | ||
danielfinn | 0 | 503,056,723 | 100% | ||
luisrod | 0 | 116,014,491 | 15% | ||
kazish | 0 | 8,884,938,018 | 100% | ||
ansonoxy | 0 | 1,750,813,906 | 100% | ||
eastmael | 0 | 56,246,379,451 | 100% | ||
smafey | 0 | 1,111,085,795 | 50% | ||
lauraesfeliz | 0 | 539,399,813 | 100% | ||
sohel7421 | 0 | 8,444,922,417 | 100% | ||
espoem | 0 | 27,131,251,594 | 40% | ||
okoro | 0 | 8,404,300,336 | 100% | ||
hoodaim | 0 | 8,750,634,456 | 100% | ||
timmyeu | 0 | 1,166,050,616 | 50% | ||
gotgame | 0 | 8,499,650,899 | 100% | ||
zimov | 0 | 64,450,778 | 100% | ||
opaulo | 0 | 52,494,219,949 | 13% | ||
silasvogt | 0 | 232,768,172 | 50% | ||
idlebright | 0 | 3,147,952,749 | 50% | ||
imp.unity | 0 | 8,594,135,054 | 100% | ||
utopian-io | 0 | 31,938,233,269,590 | 21.5% | ||
edgar-trem | 0 | 5,020,574,115 | 100% | ||
steaknsteem | 0 | 2,139,334,489 | 50% | ||
welcometonepal | 0 | 9,205,504,182 | 100% | ||
moorkedi | 0 | 1,656,844,847 | 100% | ||
marshalllife | 0 | 9,318,163,667 | 100% | ||
kimaben | 0 | 108,582,965 | 25% | ||
kslo | 0 | 2,400,915,011 | 50% | ||
not-a-bird | 0 | 4,937,356,373 | 50% | ||
adhew | 0 | 61,532,000 | 10% | ||
bitopia | 0 | 1,452,746,691 | 100% | ||
eleonardo | 0 | 138,673,809 | 10% | ||
believeme | 0 | 8,775,864,623 | 100% | ||
zohaib715 | 0 | 318,270,745 | 50% | ||
evilest-fiend | 0 | 2,713,283,019 | 100% | ||
azwarrangkuti | 0 | 34,000,959,633 | 50% | ||
shenoy | 0 | 9,830,250,493 | 10% | ||
akshaykumar12257 | 0 | 9,091,815,372 | 100% | ||
reyha | 0 | 8,874,966,651 | 100% | ||
studytext | 0 | 143,877,443 | 25% | ||
resistcheat | 0 | 185,488,979 | 50% | ||
pepekuri | 0 | 600,192,757 | 100% | ||
checkthisout | 0 | 821,476,271 | 50% | ||
navx | 0 | 2,039,824,670 | 70% | ||
handfree42 | 0 | 107,088,069 | 50% | ||
ilovekrys | 0 | 211,123,502 | 50% | ||
family.app | 0 | 95,595,040 | 100% | ||
not-a-cat | 0 | 1,185,838,780 | 100% | ||
kevmcc | 0 | 9,108,205,326 | 100% | ||
quicksnake | 0 | 9,009,880,552 | 100% | ||
varja | 0 | 869,148,705 | 50% | ||
maphics | 0 | 106,304,356 | 100% | ||
sebastiengllmt | 0 | 307,095,054 | 50% | ||
utopian-1up | 0 | 5,072,569,603 | 100% | ||
odesanya | 0 | 61,468,973 | 10% | ||
arcjen02 | 0 | 3,154,749,223 | 100% | ||
steemwolf | 0 | 8,926,105,492 | 100% | ||
phgnomo | 0 | 1,839,463,870 | 25% | ||
nellita66 | 0 | 201,803,138 | 50% | ||
carsonroscoe | 0 | 12,799,883,911 | 80% | ||
animefanrd | 0 | 54,145,457 | 10% | ||
zlatkamrs | 0 | 428,590,204 | 70% | ||
salahudeen | 0 | 91,741,200 | 35% | ||
amosbastian | 0 | 13,455,909,695 | 50% | ||
bobsthinking | 0 | 4,261,945,455 | 100% | ||
yourmercury | 0 | 579,395,917 | 100% | ||
acrywhif | 0 | 3,459,312,956 | 80% | ||
xplore | 0 | 707,267,102 | 50% | ||
goddywise4-eu | 0 | 425,156,100 | 100% | ||
proffgodswill | 0 | 61,299,229 | 10% | ||
grzesiekb | 0 | 171,789,040,980 | 100% | ||
sweeverdev | 0 | 1,052,002,634 | 50% | ||
kodeblacc | 0 | 2,485,368,783 | 50% | ||
isacastillor | 0 | 1,151,273,222 | 95% | ||
devilonwheels | 0 | 1,795,096,683 | 10% | ||
sijobe | 0 | 564,228,041 | 100% | ||
rhotimee | 0 | 4,871,413,930 | 50% | ||
brusd | 0 | 95,925,253 | 13% | ||
jrmiller87 | 0 | 2,533,030,415 | 100% | ||
audiosiren | 0 | 432,005,762 | 100% | ||
solomon507 | 0 | 358,209,468 | 50% | ||
patatesyiyen | 0 | 75,184,681 | 12.5% | ||
deejee | 0 | 110,670,156 | 20% | ||
onin91 | 0 | 438,145,366 | 50% | ||
neneandy | 0 | 2,125,107,449 | 50% | ||
isabella394 | 0 | 2,595,353,571 | 100% | ||
emailbox19149 | 0 | 162,080,695 | 50% | ||
the-reaper | 0 | 563,970,422 | 100% | ||
widiaendah | 0 | 401,059,485 | 100% | ||
skybreaker | 0 | 1,790,317,136 | 100% | ||
lemony-cricket | 0 | 9,476,384,573 | 20% | ||
josephace135 | 0 | 12,056,126,552 | 100% | ||
saifannur-mzy | 0 | 239,597,165 | 50% | ||
yeswanth | 0 | 614,830,204 | 100% | ||
kaking | 0 | 235,965,639 | 50% | ||
korie | 0 | 241,737,219 | 50% | ||
raasmyn | 0 | 8,532,303,079 | 100% | ||
rabab | 0 | 8,978,609,152 | 100% | ||
mdnazmulhasan | 0 | 186,356,648 | 100% | ||
exploreand | 0 | 1,178,382,815 | 25% | ||
petvalbra | 0 | 614,648,036 | 100% | ||
steemassistant | 0 | 463,787,680 | 100% | ||
pepegusi | 0 | 9,049,844,897 | 100% | ||
hmctrasher | 0 | 406,760,944 | 10% | ||
photohunter1 | 0 | 3,986,677,479 | 100% | ||
photohunter3 | 0 | 3,178,903,026 | 100% | ||
photohunter4 | 0 | 3,166,651,746 | 100% | ||
photohunter5 | 0 | 3,159,869,360 | 100% | ||
howtosteem | 0 | 3,895,877,969 | 100% | ||
sylinda | 0 | 214,047,140 | 50% | ||
fmbs25 | 0 | 229,333,967 | 50% | ||
livsky | 0 | 372,096,930 | 50% | ||
tailslide | 0 | 226,437,396 | 50% | ||
thebluewin | 0 | 8,871,820,829 | 100% | ||
roj | 0 | 2,540,393,299 | 100% | ||
andiepumpgun | 0 | 244,604,055 | 50% | ||
aderemi01 | 0 | 1,773,845,113 | 50% | ||
passive | 0 | 83,396,332,201 | 100% | ||
supreme-verdict | 0 | 22,200,509,043 | 100% | ||
retrocausality | 0 | 1,071,626,627 | 100% | ||
killbill73 | 0 | 180,442,337 | 50% | ||
amirdesaingrafis | 0 | 614,496,061 | 50% | ||
fai.zul | 0 | 296,796,807 | 50% | ||
nightdragon | 0 | 219,366,500 | 50% | ||
jacintoelbarouki | 0 | 217,268,851 | 50% | ||
criptokingko | 0 | 208,784,700 | 50% | ||
aliyu-s | 0 | 478,745,582 | 50% | ||
estherekanem | 0 | 85,866,003 | 20% | ||
trzynasty1388 | 0 | 8,896,125,649 | 100% | ||
pejugold | 0 | 205,905,180 | 50% | ||
muratti | 0 | 58,105,501 | 10% | ||
abreu | 0 | 217,507,528 | 50% | ||
mwfiae | 0 | 3,292,220,026 | 10% | ||
opulence | 0 | 1,804,773,403 | 50% | ||
phasma | 0 | 122,612,788 | 20% | ||
ibez | 0 | 82,769,138 | 20% | ||
monster-reborn | 0 | 1,663,099,217 | 100% | ||
crispycoinboys | 0 | 2,121,066,234 | 30% | ||
zcool | 0 | 124,842,497 | 10% | ||
gwapoaller | 0 | 307,016,219 | 50% | ||
carloniere | 0 | 141,011,605 | 50% | ||
mrgranville | 0 | 468,742,606 | 100% | ||
bluestorm | 0 | 460,899,167 | 75% | ||
daszod | 0 | 483,442,222 | 100% | ||
maxhohenburg | 0 | 8,947,284,381 | 100% | ||
genoner | 0 | 1,618,091,633 | 95% | ||
dexter24 | 0 | 214,071,888 | 50% | ||
jayo | 0 | 183,913,409 | 50% | ||
pepememes | 0 | 177,497,419 | 50% | ||
chain-reaction | 0 | 115,461,880 | 100% | ||
kaell | 0 | 55,381,784 | 10% | ||
deepculture | 0 | 8,254,744,986 | 100% | ||
animesukidesu | 0 | 165,686,885 | 50% | ||
megalithic | 0 | 8,418,083,976 | 100% | ||
zay-arasi | 0 | 212,985,081 | 50% | ||
wealth4good | 0 | 280,664,802 | 5% | ||
esme-svh | 0 | 263,969,598 | 50% | ||
lsanek | 0 | 287,737,343 | 50% | ||
lykia | 0 | 284,932,286 | 50% | ||
realness | 0 | 306,251,474 | 50% | ||
evilrabbi | 0 | 9,289,492,910 | 100% | ||
flugbot | 0 | 122,683,991 | 100% | ||
lemcriq | 0 | 54,364,903 | 20% | ||
gydronium | 0 | 165,535,465 | 30% | ||
eraizel | 0 | 809,474,840 | 50% | ||
almamun298 | 0 | 217,108,048 | 50% | ||
xiaoyinzi | 0 | 8,687,723,479 | 100% | ||
gnaimul | 0 | 217,180,540 | 50% | ||
morin89 | 0 | 217,448,421 | 50% | ||
niouton | 0 | 5,158,460,255 | 20% | ||
juanunix | 0 | 612,524,439 | 100% | ||
umut1905 | 0 | 55,339,099 | 50% | ||
editorspicks | 0 | 61,230,367 | 50% | ||
parakazan | 0 | 677,260,601 | 100% | ||
moontje | 0 | 8,801,961,117 | 100% | ||
artsyunicorn | 0 | 273,408,006 | 50% | ||
steemfunder | 0 | 301,797,083 | 50% |
Thank you for your contribution. ---------------------------------------------------------------------- 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 | codingdefined | ||||||
---|---|---|---|---|---|---|---|
permlink | re-edgar-trem-interview-project-an-android-developer-interview-coding-challenge-in-mvp-20180413t044042374z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-13 04:40:42 | ||||||
last_update | 2018-04-13 04:40:42 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-04-20 04:40:42 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.016 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 274 | ||||||
author_reputation | 528,928,674,653,623 | ||||||
root_title | "[Interview Project]: An Android Developer Interview Coding Challenge in MVP" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,791,311 | ||||||
net_rshares | 5,542,460,088 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edgar-trem | 0 | 5,542,460,088 | 100% |
Thanks, It seems like contributions can be much more conscience with the score card, But I would think it's a bit more work for you moderators right?
author | edgar-trem | ||||||
---|---|---|---|---|---|---|---|
permlink | re-codingdefined-re-edgar-trem-interview-project-an-android-developer-interview-coding-challenge-in-mvp-20180414t235501293z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-14 23:55:03 | ||||||
last_update | 2018-04-14 23:55:03 | ||||||
depth | 2 | ||||||
children | 0 | ||||||
last_payout | 2018-04-21 23:55:03 | ||||||
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 | 154 | ||||||
author_reputation | 4,926,579,982,162 | ||||||
root_title | "[Interview Project]: An Android Developer Interview Coding Challenge in MVP" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 50,106,462 | ||||||
net_rshares | 0 |
Was it timed? I mean the interview
author | mathemandy |
---|---|
permlink | re-edgar-trem-interview-project-an-android-developer-interview-coding-challenge-in-mvp-20180412t031447913z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-12 03:14:57 |
last_update | 2018-04-12 03:14:57 |
depth | 1 |
children | 3 |
last_payout | 2018-04-19 03:14:57 |
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 | 35 |
author_reputation | 2,560,140,924,580 |
root_title | "[Interview Project]: An Android Developer Interview Coding Challenge in MVP" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,598,513 |
net_rshares | 0 |
They gave me two days to complete it, I did it in about 5 hours.
author | edgar-trem |
---|---|
permlink | re-mathemandy-re-edgar-trem-interview-project-an-android-developer-interview-coding-challenge-in-mvp-20180412t032922602z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-12 03:29:24 |
last_update | 2018-04-12 03:29:24 |
depth | 2 |
children | 2 |
last_payout | 2018-04-19 03:29:24 |
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 | 64 |
author_reputation | 4,926,579,982,162 |
root_title | "[Interview Project]: An Android Developer Interview Coding Challenge in MVP" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,600,006 |
net_rshares | 0 |
lol, thats the boss, You getting the role :) whats gonna happen to Mixion ?
author | sweetim |
---|---|
permlink | re-edgar-trem-re-mathemandy-re-edgar-trem-interview-project-an-android-developer-interview-coding-challenge-in-mvp-20180412t033148738z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-12 03:31:57 |
last_update | 2018-04-12 03:31:57 |
depth | 3 |
children | 1 |
last_payout | 2018-04-19 03:31:57 |
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 | 76 |
author_reputation | 269,250,405,392 |
root_title | "[Interview Project]: An Android Developer Interview Coding Challenge in MVP" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,600,287 |
net_rshares | 2,231,197,940 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mathemandy | 0 | 2,231,197,940 | 100% |
Congratulations @edgar-trem! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@edgar-trem) Award for the total payout received Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > Upvote this notification to help all Steemit users. Learn why [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-edgar-trem-20180414t160127000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2018-04-14 16:01:27 |
last_update | 2018-04-14 16:01:27 |
depth | 1 |
children | 0 |
last_payout | 2018-04-21 16:01: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 | 684 |
author_reputation | 38,975,615,169,260 |
root_title | "[Interview Project]: An Android Developer Interview Coding Challenge in MVP" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,051,088 |
net_rshares | 0 |
### Hey @edgar-trem I am @utopian-io. I have just upvoted you! #### Achievements - People loved what you did here. GREAT JOB! - You have less than 500 followers. Just gave you a gift to help you succeed! - Seems like you contribute quite often. AMAZING! #### Utopian Witness! <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness</a> **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-edgar-trem-interview-project-an-android-developer-interview-coding-challenge-in-mvp-20180414t120354863z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-04-14 12:03:57 |
last_update | 2018-04-14 12:03:57 |
depth | 1 |
children | 0 |
last_payout | 2018-04-21 12:03:57 |
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 | 760 |
author_reputation | 152,955,367,999,756 |
root_title | "[Interview Project]: An Android Developer Interview Coding Challenge in MVP" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,015,856 |
net_rshares | 0 |