Skip to content

Instantly share code, notes, and snippets.

Name of your app - Restaurant Finder
Link to live static version - https://rfinder-static-client-laurasikora.vercel.app/
Link to repo on GitHub:
API- https://github.com/lauras12/rfinder-static-api
Client- https://github.com/lauras12/rfinder-static-client
The user feedback: Indicate who you spoke to, - I spoke to my three friends who are all mid-level web developers
what you learned, - I learned a lot. They made me think outside the box in terms of coding up the application. I would've never thought to allow people to search by two options but if someone doesn't know their town if they are visitng, being allowed to selected a town is nice. It also allows you to select other towns to view resturants in the area
and what if anything you did in response to the feedback - I added the search by city name instead button
@lauras12
lauras12 / Restaurant Finder
Created February 2, 2021 17:58
Wireframing your app Capstone 2
https://repl.it/repls/folder/Restaurant%20Finder
https://ibb.co/tD2G7Nm
Role Task Importance
As a new user I want to sign up for an account High
As a new user I want to be able to search for resturants High
As a new user I want to be able to view locations of resturants High
As a new user I want to be able to share selected store Low
As a new user I want to leave reviews for resturants Medium
As a returing user I want to be able to search for resturants High
As a returing user I want to be able to view locations of resturants High
As a returing user I want to be able to share selected resturants High
As a returing user I want to leave reviews for resturants High
For my second Capstone Project I want to build a Resturant Locator for people to find and rate resturants in their area.
@lauras12
lauras12 / MoreQuestions.txt
Created November 24, 2020 16:10 — forked from rtanubra/MoreQuestions.txt
Node Practice Interview
https://courses.thinkful.com/mi-fundamentals-v1/checkpoint/1
--Referring to the fundemental section
RESTful APIs
Representational State Transfer. Software architecture style
Set of constraints that governs a specific set of web APIs
The information and decisions you would write in a good api documentation.
Main concerns of Rest:
@lauras12
lauras12 / Northeast Kingdom Grocery Finder
Created October 13, 2020 19:21
Wireframing your app
https://repl.it/repls/folder/NorthEast-Kingdom-Wireframes
user flows- https://ibb.co/tD2G7Nm
Role Task Importance
As a new user I want to sign up for an account High
As a new user I want to be able to search for stores High
As a new user I want to be able to view locations of stores High
As a new user I want to be able to share selected store Low
As a new user I want to leave reviews for stores Medium
As a returing user I want to be able to search for stores High
As a returing user I want to be able to view locations of stores High
As a returing user I want to be able to share selected store High
As a returing user I want to leave reviews for stores High
@lauras12
lauras12 / gist:2291a442436be8da7888120ef8a76497
Last active October 15, 2020 21:49
Northeast Kingdom Grocery Finder
For my capstone project, I want to create a Northeast Kingdom Hike Finder. In northern Vermont, there are a lot of fun places to hike. I want to create a place for people who are visiting norther Vermont or people who live there and easy way to see what hikes are in the area.
@lauras12
lauras12 / Relationships and schema design
Created September 29, 2020 16:55
Checkpoint 18 Assignment
-- How many people work in the Sales department?
SELECT
COUNT(e.id)
FROM
employee e
JOIN
department d
ON e.department = d.id
WHERE