Skip to content

Instantly share code, notes, and snippets.

suprise
live
https://psychedelic-willow.glitch.me/
code
https://glitch.com/edit/#!/psychedelic-willow
rate calculator
live
https://wool-detail.glitch.me
code
NavBar
https://imminent-beat.glitch.me/
AddressBook
https://six-golf.glitch.me/
I was told that the background on the input elements was confusing and hard to read text on top of it.
Also I was given feedback on user flow and how I should best let the user know they needed to add meals before
they could use the random meal button.
Shortened user stories list
As a user, I should be able to enter and save new favorite meal information
As a user, I should be able to view a list of favorite meals I have saved
Screens
Enter a meal/Edit a meal
View meals
View one random meal
User Flows
As a user, I should be able to log in
As a user, I should be able to enter and save new favorite meal information
As a user, I should be able to view a list of favorite meals I have saved
As a user, I should be able to click a button that randomly picks a meal for that night
As a user, I should be able to sort the meals by cuisine
Short list of user stories:
As a player, I can message other players
As a player, I can view my information such as role or abilities
As a player, I can keep track of information that has been revealed to me
As a user, I can see how much time is left until the night ends
Screens the user will interact with:
Profile
Messaging interface
Notes
Epic
To facilitate games of EiMM with minimal need for moderation.
User Stories
I can register a profile and log in
I can host a game or join a game that is hosted by someone else
As a host, I can view players and assign roles, abilities, and alias’
As a host, I can remove players for inappropriate behaviour or other reasons
As a player, I can message other players
As a player, I can keep track of information that has been revealed to me
1. Get all restaurants
SELECT * FROM restaurants
2. Get Italian restaurants
SELECT * FROM restaurants
WHERE cuisine = 'Italian';
3. Get 10 Italian restaurants, subset of fields
SELECT id, name FROM restaurants
WHERE cuisine = 'Italian'
Show all restaurants
db.restaurants.find()
Show first ten sorted by name
db.restaurants.
find().
sort({name: 1}).
limit(10);
Find by _id
https://elite-hammer.glitch.me/
https://titanium-act.glitch.me/