This file contains 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
https://glitch.com/edit/#!/broken-opera |
This file contains 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
https://glitch.com/edit/#!/bird-pyramid | |
https://glitch.com/edit/#!/gorgeous-surprise |
This file contains 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
https://api.glitch.com/react-addbook-example/git | |
https://api.glitch.com/react-header-bar-example/git |
This file contains 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
#Short list of user stories | |
As a user, I should be able to create journeys, including name, location, and dates | |
As a user, I should be able to post journal entry to each journey or sub-journey | |
As a user, I should be able to add or delete pictures to journeys and sub-journeys | |
As a user, I should be able to share my journey with friends and to allow others to post, edit and delete their comments on my journeys and sub-journeys | |
#List Out the Screens the User Will See | |
Screen for creating journeys, adding name, location, and dates, | |
Screen for adding journal entry and pictures |
This file contains 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
#EPIC journey | |
##Epic: | |
Epic Journey app allows users to keep track of the places they visit by adding location, a description or journal of their visit, and photos or videos of their trip. Each trip can be broken down into smaller trips, like for instance, going to Baja California Sur can be broken into La Paz, Cabo Pulmo, Pozas Santa Rita, etc. with each smaller trip having it’s own location, journal entry, and photos. This way users can keep track of the places they visited, the location, their impressions of the place, and include photos. | |
##User Stories: | |
As a user, I should be able to sign up for Epic Journey | |
As a user, I should be able to log in to Epic Journey | |
As a user, I should be able to reset my password |
This file contains 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
Last login: Fri Aug 31 09:04:17 on ttys000 | |
Elenas-MacBook-Air:~ pachibook$ mongoimport --db tempTestDb --collection restaurants --drop --file ~/Projects/learn-mongo/primer-dataset.json | |
2018-08-31T09:06:48.822-0700 connected to: localhost | |
2018-08-31T09:06:48.824-0700 dropping: tempTestDb.restaurants | |
2018-08-31T09:06:49.137-0700 imported 3950 documents | |
Elenas-MacBook-Air:~ pachibook$ mongo | |
MongoDB shell version v4.0.1 | |
connecting to: mongodb://127.0.0.1:27017 | |
MongoDB server version: 4.0.1 | |
Server has startup warnings: |
This file contains 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
https://glitch.com/edit/#!/express-request-respnse-echo?path=server.js:15:27 | |
https://glitch.com/edit/#!/echo-response-attempt?path=server.js:26:2 | |
https://glitch.com/edit/#!/express-madlib-generator |
This file contains 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
fixed the toggle button | |
fixed the string word-wrap |
This file contains 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
I want to be able to find information for all national parks in any given state | |
So that I may be able to plan my vacation. |
This file contains 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
What is scope? Your explanation should include the idea of global vs. local scope. | |
Scope means where the variable lives and how it can be accessed. the value of global scoped variables var and let can be accessed and modified by any | |
function that refers to it. When you declare a variable in the global scope, it is available everywhere in your code. | |
Any variable that is declared outside of a function in JavaScript has global scope. When you declare a variable within a function, | |
that variable only lives within the function, meaning it's scope is local. This means that when you define a variable in a function that | |
has the same name as a variable in the global scope, the local variable will take precedence over the global one. | |
Why are global variables avoided? | |
Global variables should be avoided because they could inadvertently be reassigned a value by a function that refers to it, | |
even functions in a different file in which the global variable is being defined. This could create problems in the expected |