From 284bab38bbf85376673ce20dcd235a9bc00f5bec Mon Sep 17 00:00:00 2001 From: Richard Kim Date: Thu, 13 Oct 2022 12:47:43 -0400 Subject: [PATCH 1/2] Create Restaurant-Randomizer.md --- Projects/1-Beginner/Restaurant-Randomizer.md | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Projects/1-Beginner/Restaurant-Randomizer.md diff --git a/Projects/1-Beginner/Restaurant-Randomizer.md b/Projects/1-Beginner/Restaurant-Randomizer.md new file mode 100644 index 00000000..c5e1f651 --- /dev/null +++ b/Projects/1-Beginner/Restaurant-Randomizer.md @@ -0,0 +1,23 @@ +# Restaurant Randomizer + +**Tier:** 1-Beginner + +For those indecisive people who have a hard time deciding where to eat... This would be an application that will randomly select a place for you to eat using an API. + +## User Stories + +- [ ] Users should be able to click on a button that will select a random restaurant from an external API (see below) +- [ ] The app should display: **Restaurant Location**, **Type of Food**, **Price** and a **Picture** of the venue +- [ ] By clicking the button again, another restaurant should be generated + +## Bonus features + +- [ ] Users should have the option to input custom settings like preferred type of foods and distance + +## Useful links and resources + +- [OpenTable Public API](https://opentable.herokuapp.com/) + +## Example projects + +- [Restaurant Picker by Jake Murphy](http://ww38.restaurant-picker.com/) From 71da6ba592a2081dee4fa077d36f2389319c247d Mon Sep 17 00:00:00 2001 From: Richard Kim Date: Thu, 13 Oct 2022 13:55:30 -0400 Subject: [PATCH 2/2] Create Hangman-Game.md --- Projects/2-Intermediate/Hangman-Game.md | 40 +++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Projects/2-Intermediate/Hangman-Game.md diff --git a/Projects/2-Intermediate/Hangman-Game.md b/Projects/2-Intermediate/Hangman-Game.md new file mode 100644 index 00000000..690aa1dc --- /dev/null +++ b/Projects/2-Intermediate/Hangman-Game.md @@ -0,0 +1,40 @@ +# Hangman Game + +**Tier:** 2-Intermediate + +Hangman is a word puzzle game that allows the user to guess missing +letters one at a time to solve the missing word or phrase. + +A user will select a letter from A - Z on a keyboard displayed on the +screen. If true, the selected letter will be disabled from the keyboard +and will display in the correct spot in the word/phrase. If false, the +selected letter will be disabled from the keyboard and a piece of a +stick figure will be displayed. If the missing word/phrase is solved +before all the pieces of the stick figure is shown you win, and vice versa. + +## User Stories + +- [ ] User can see a number of blank spaces that represents the missing letters + and a keyboard with all the letters of the alphabet on it +- [ ] User can guess the word/phrase by clicking on a letter one at a time +- [ ] Letters will be disabled from the keyboard after it is clicked on +- [ ] User can see the letter appear in all places of the word/phrase + where the letter exists +- [ ] User can see the stick figure appear piece by piece for every + wrong guess +- [ ] User will need to solve the puzzle before the whole hangman appears + +## Bonus features + +- [ ] User can click the 'HINT' button to get help solving the puzzle +- [ ] User can click the 'SHUFFLE' button to generate a new random word/phrase +- [ ] User can be added to a TOP SCORER list + +## Useful links and resources + +- [How to Play Hangman - YouTube video](https://www.youtube.com/watch?v=cGOeiQfjYPk) + +## Example projects + +- [HangMan Game](https://thewordsearch.com/hangman/) +- [Create Your Own Hangman Game](https://www.hangmanwords.com/create)