pull/596/merge
Richard Kim 2 years ago committed by GitHub
commit 9a305b82a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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/)

@ -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)
Loading…
Cancel
Save