Merge branch 'master' of https://github.com/florinpop17/app-ideas
commit
1f5c9458e3
@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
# Game suggestion app
|
||||||
|
|
||||||
|
**Tier:** 2-Intermediate
|
||||||
|
|
||||||
|
An app where users can create polls where voters can suggest any games available on [IGDB](https://www.igdb.com/) to play on a stream or a gaming get-together. IGDB (Internet Game Data Base) has a handy [API](https://www.igdb.com/api) for getting games and implementing some kind of AJAX search for it would be necessary.
|
||||||
|
|
||||||
|
## User Stories
|
||||||
|
|
||||||
|
- [ ] User can create polls
|
||||||
|
- [ ] User can vote on polls (add games)
|
||||||
|
- [ ] User can see the poll results as a top 10 or 5 list of the most voted games
|
||||||
|
|
||||||
|
## Bonus features
|
||||||
|
|
||||||
|
- [ ] Poll admin can restrict the voting to a certain tag or genre
|
||||||
|
- [ ] User can login and see their old polls
|
||||||
|
|
||||||
|
## Useful links and resources
|
||||||
|
|
||||||
|
- [IGDB API documentation](https://api-docs.igdb.com/)
|
||||||
|
|
||||||
|
## Example projects
|
||||||
|
|
||||||
|
- [Strawpoll, one of the most popular polling apps](https://www.strawpoll.me/)
|
@ -0,0 +1,30 @@
|
|||||||
|
# GitHub Profiles
|
||||||
|
**Tier:** 2-Intermediate
|
||||||
|
|
||||||
|
APIs allow you to use the real world data that drives platforms like GitHub. You can communicate with the remote servers and get data that you can use to build an app.
|
||||||
|
|
||||||
|
In this project you create a search app that uses GitHub API to retrieve user information when a valid username is input. It should display avatar, username, followers count, repository count, top 4 repositories based on forks and stars.
|
||||||
|
|
||||||
|
## User Stories
|
||||||
|
|
||||||
|
- [ ] User can enter a username
|
||||||
|
- [ ] User can click on search button to retrieve information
|
||||||
|
- [ ] User can see the avatar, username, followers and repository count of searched user
|
||||||
|
- [ ] User can see the top 4 repositories of searched user
|
||||||
|
- [ ] User should get an alert if the username is not valid
|
||||||
|
|
||||||
|
## Bonus features
|
||||||
|
- [ ] User can toggle dark/light mode
|
||||||
|
- [ ] Selected mode should persist when user comes back to the app again
|
||||||
|
|
||||||
|
## Useful links and resources
|
||||||
|
To get the data you need to communicate with GitHub API. you can either
|
||||||
|
|
||||||
|
- [Read Docs](https://developer.github.com/v3/)
|
||||||
|
- [Check API directly](https://api.github.com/users/chaharshivam)
|
||||||
|
|
||||||
|
To get data from API you can check [fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) in javascript
|
||||||
|
|
||||||
|
## Example projects
|
||||||
|
|
||||||
|
- [GitHub profiles](https://chaharshivam.github.io/github-profiles/?#) ([repo](https://github.com/chaharshivam/github-profiles))
|
Loading…
Reference in new issue