Coder Social home page Coder Social logo

hidden-founders-mobile-challenge's Introduction

Hidden Founders Mobile coding challenge

A challenge proposed by Hidden Founders (challenge on github here)

Overview

The challenge consists of making an Android or Ios Application listing the top trending repositories on Github in the last 30 days using Github REST API.
As user we should be able to :

  • See top trending repositories on github ordered by stars number desc and by one repository per row
  • See for each repo/row the following details :
    • Repository name
    • Repository description
    • Numbers of stars for the repo.
    • Username and avatar of the owner.
  • to keep scrolling and new results should appear (pagination).

I used that endpoint https://api.github.com/search/repositories?q=created to get json data from github.

Coding context

Development tools

I used Jetbrains Intellij IDEA to make that application, but you are free to use your favorite IDEA, you just need to search about how to import an Intellij IDEA project into your IDEA.

How to compile

Assume you have those dependencies in your gradle if using a gradle project

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:26.+'
    compile 'com.android.support:design:26.+'
    compile 'com.android.support:support-vector-drawable:26.+'
    compile 'com.android.support:support-v4:26.+'
    compile 'com.mcxiaoke.volley:library:1.0.19'
    testCompile 'junit:junit:4.12'
}

volley library is used for network interaction

If you don't use the code in a gradle project you may download the required libraries files from the net to add them to the project.

Perspectives

There are many things to improve in that application such as the images caching system, use of recycleview instead of listView to display repositories,...

hidden-founders-mobile-challenge's People

Contributors

molobala avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.