From cce6a88066ced7854d5a989d9d3bb5d97eccdd55 Mon Sep 17 00:00:00 2001 From: TatuLaras <34749827+TatuLaras@users.noreply.github.com> Date: Fri, 4 Oct 2019 12:37:19 +0300 Subject: [PATCH 1/3] New App: game suggestion app --- .../2-Intermediate/Game-Suggestion-App.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Projects/2-Intermediate/Game-Suggestion-App.md diff --git a/Projects/2-Intermediate/Game-Suggestion-App.md b/Projects/2-Intermediate/Game-Suggestion-App.md new file mode 100644 index 00000000..5557942f --- /dev/null +++ b/Projects/2-Intermediate/Game-Suggestion-App.md @@ -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/) \ No newline at end of file From 865846221b4713e20a23e98b801560b317aa8ed4 Mon Sep 17 00:00:00 2001 From: TatuLaras <34749827+TatuLaras@users.noreply.github.com> Date: Fri, 4 Oct 2019 12:41:38 +0300 Subject: [PATCH 2/3] Added game suggestion app to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 985960c7..2464ce01 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,7 @@ required to complete them. | [Emoji Translator App](./Projects/2-Intermediate/Emoji-Translator-App.md) | Translate sentences into Emoji | 2-Intermediate | | [Flashcards App](./Projects/2-Intermediate/FlashCards-App.md) | Review and test your knowledge through Flash Cards | 2-Intermediate | | [Flip Art App](./Projects/2-Intermediate/Flip-Art-App.md) | Animate a set of images | 2-Intermediate | +| [Game Suggestion APP](./Projects/2-Intermediate/Game-Suggestion-App.md) | Create polls to decide what games to play | 2-Intermediate | | [HighStriker Game](./Projects/2-Intermediate/HighStriker-Game.md) | Highstriker strongman carnival game | 2-Intermediate | | [Markdown Previewer](./Projects/2-Intermediate/Markdown-Previewer.md) | Preview text formatted in GitHub flavored markdown | 2-Intermediate | | [Markdown Table Generator](./Projects/2-Intermediate/Markdown-Table-Generator.md) | Convert a table into Markdown-formatted text | 2-Intermediate | From 51681cc870944d0120b3852d22caec51c564b997 Mon Sep 17 00:00:00 2001 From: TatuLaras <34749827+TatuLaras@users.noreply.github.com> Date: Fri, 4 Oct 2019 12:42:25 +0300 Subject: [PATCH 3/3] Fixed my typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2464ce01..a769440f 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ required to complete them. | [Emoji Translator App](./Projects/2-Intermediate/Emoji-Translator-App.md) | Translate sentences into Emoji | 2-Intermediate | | [Flashcards App](./Projects/2-Intermediate/FlashCards-App.md) | Review and test your knowledge through Flash Cards | 2-Intermediate | | [Flip Art App](./Projects/2-Intermediate/Flip-Art-App.md) | Animate a set of images | 2-Intermediate | -| [Game Suggestion APP](./Projects/2-Intermediate/Game-Suggestion-App.md) | Create polls to decide what games to play | 2-Intermediate | +| [Game Suggestion App](./Projects/2-Intermediate/Game-Suggestion-App.md) | Create polls to decide what games to play | 2-Intermediate | | [HighStriker Game](./Projects/2-Intermediate/HighStriker-Game.md) | Highstriker strongman carnival game | 2-Intermediate | | [Markdown Previewer](./Projects/2-Intermediate/Markdown-Previewer.md) | Preview text formatted in GitHub flavored markdown | 2-Intermediate | | [Markdown Table Generator](./Projects/2-Intermediate/Markdown-Table-Generator.md) | Convert a table into Markdown-formatted text | 2-Intermediate |