This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| An app that allows users to search data from the Foursquare API and then get a randomly-generated Ron Swanson quote with a Cat GIF when they view the Tips/Reviews. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Photo sent directly to mentor. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| There needs to be a brief description of the app. Users so far tend to be a little confused of the point of the app. It can go right below h1. | |
| The form can also be a litter bigger. I observed that most users' eyes go straight to the preset buttons and they don't realize that they can also search for a location. | |
| Once users get a feel for the app they seem to like it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Mad Libs - https://glitch.com/edit/#!/subdued-aries?path=server.js:15:51 | |
| AB Test - https://glitch.com/edit/#!/tan-oxygen?path=server.js:11:34 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Find the command that retrieves all restaurants. | |
| > db.restaurants.find(); | |
| //Find the command that makes the first 10 restaurants appear when | |
| //db.restaurants is alphabetically sorted by the name property. | |
| > db.restaurants.find().sort({name: 1}).limit(10); | |
| //Retrieve a single restaurant by _id from the restaurants collection. | |
| //This means you'll first need to get the _id for one of the restaurants imported into the database. | |
| > db.restaurants.findOne({}, {_id: 1}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| STEP 1: OBTAINING A REQUEST TOKEN | |
| POST https://api.twitter.com/oauth/request_token | |
| OAuth { | |
| oauth_nonce, | |
| oauth_callback, | |
| oauth_signature_method: "HMAC-SHA1", | |
| oauth_consumer_key, | |
| oauth_signature, | |
| oauth_version: "1.0" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Get all restaurants | |
| //Write a query that returns all of the restaurants, with all of the fields. | |
| SELECT * FROM restaurants; | |
| 2. Get Italian restaurants | |
| //Write a query that returns all of the Italian restaurants, with all of the fields | |
| SELECT * FROM restaurants WHERE cuisine='Italian'; | |
| 3. Get 10 Italian restaurants, subset of fields | |
| //Write a query that gets 10 Italian restaurants, returning only the id and name fields. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE users ( | |
| id serial PRIMARY KEY, | |
| first_name text, | |
| last_name text, | |
| email text NOT NULL, | |
| screen_name text NOT NULL | |
| ); | |
| CREATE TABLE posts ( | |
| id serial PRIMARY KEY, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| High-Level Statement | |
| Allows users to stay up-to-date with the status of a hospitalized loved one through an advocate providing real-time updates | |
| User Stories | |
| As a user, I should be able to sign up for MediPal. | |
| As a user, I should be able to login to MediPal. | |
| As a user, I should be able to create new events for hospitalizations. | |
| As a user, I should be able to receive an access code for other people to view hospitalization events. | |
| As a user, I should be able to allow or deny access for people to view hospitalization with access code. | |
| As a user, I should be able to determine whether or not people can post questions they have for doctor. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MVP | |
| As a user, I should be able to create new events for hospitalizations. | |
| As a user, I should be able to update the status of the person hospitalized. | |
| As a user, I should be able to share answers to questions that people have for doctor. | |
| Screen for creating a new hospitalization (all public for MVP) | |
| Screen for updating hospitalization | |
| Screen for questions from other users |