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
Project: Refractor tractor | |
Group Member Names: Kevin Johnson, Mandy Alford, Ed Stoner | |
Goals and Expectations for the Project (What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?): | |
Getting comfortable with the new technologies, getting comfortable with someone else's codebase, effectively collaborating and practicing good github workflow and improving pull request ettiquette. | |
Team strengths & collaboration styles (consider discussing your Pairin qualities here): |
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. What all will I be expected to do on the quiz app at the end of this module? | |
2. How does the jQuery event object differ from the regular javascript event object? | |
3. Is jQuery a dying library? | |
4. How often is it used in professional codebases? | |
5. Can you integrate some jQuery with react or a different javascript framework? | |
11/16 - Kevin Johnson, 5 questions about jQuery going into the module. |
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
addItems()- | |
// event listener on the shopping list form | |
// on submit event.preventdefault | |
// find the new shopping list entry and save the value to a variable, itemName | |
// append a new li card to the shopping list | |
// interpolate the itemName in the li | |
toggleCheckedItems()- | |
// event listener on the toggle button | |
// on click find the closest li to that click |
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. In the sorcerer's stone, how many obstacles were left out at the end of the movie compared to the book? There were 5 total | |
in the movie. Fluffy being the first. | |
a-0 | |
b-1 | |
c-2 *** correct answer | |
d-3 | |
2. In the chamber of secrets, what plant helped students to recover from the paralysis from the basilisk? | |
a-gillyweed | |
b-mandrake *** correct answer |
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
https://kevdev90.github.io/potter-trivia/ | |
https://github.com/KevDev90/potter-trivia |
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
My anaolgy to describe the relationship between clients and servers is a restaurant. A client is a customer in this scenario, whereas the waiter is the server. When a customer goes to a restaurant, this is similar to a request. The customer is requesting service from the waiter. The waiter, in response, comes to the customer and takes initial drink and appetizer orders. The customer tells the waiter, who then takes the order (request) back to the kitchen to be handled appropriately. While the cooks are putting together the appetizer, the waiter would be preparing the drinks. The waiter then returns what the customer ordered, a response to the customer. The customer would then order their main course (another request). The same thing would occur as with the drinks and appetizers. After the customer has eaten their food, they would request the check. The waiter would process (handle) their request and return a bill in response. The customer would then request that the money be picked up for the payment to be pr |
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
Visit the YouTube API documentation discussed above and find the subscription list endpoint documentation. List 1 required parameter and 2 optional parameters for this endpoint. For each parameter listed, state the data type and give an example of the allowed values. | |
1. Requred parameter- part | |
2. Optional parameters - forChannelId, maxResults | |
Visit the Google Maps Geocoding API documentation found here: https://developers.google.com/maps/documentation/geocoding/intro. Construct the full URL for requesting the geographic coordinates of The Statue of Liberty in JSON format. Do the same for your own address. | |
1.https://maps.googleapis.com/maps/api/geocode/json?address=Statue+Of+Liberty,+New+York,+NY&key=YOUR_API_KEY | |
2.https://maps.googleapis.com/maps/api/geocode/json?address=9222+E+Arbor+Cir,+Englewood,+CO&key=YOUR_API_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
1.Does this API require authentication? | |
Most requests must be authenticated. Unless otherwise specified, response payloads are returned in JSON format. | |
2.Does this API support CORS? | |
The Meetup API supports the CORS specification which allows browser clients hosted on a domain other than api.meetup.com to communicate directly with the API. | |
3.Find the events search endpoint documentation. Describe in detail the response format of the events search endpoint. (HINT: You may need other keywords to find this endpoint.) | |
GET /find/groups - contains many properties such as approved: boolean, category: '', city '' etc.. that all provide additional | |
attributes to search events through. |
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
Help users see what ski resorts in colorado are experiencing quality snowfall by taking data from the weatherbit api. Then based on a user's resort selection, use data from the yelp api to recommend restraunts in that resorts vicinity. |
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. As a new user, I want to compare the different colorado ski resorts based on their weather forecasts. | |
2. As a new user, I want to be able to select a resort whose weather most matches my preferences. | |
3. As a new user, I want to recieve dining recommendations based on my resort selection. | |
4. As a new user, I want to recieve lodging recommendations based on my resort seledtion. | |
5. As a new user, I want to add dining lodging selections to "My saved activites" | |
6. As a returning user, I would like to access my saved dining and lodging selections. | |
7. As an administrator, I want to build out an app with a nice UI and no bugs. | |
8. As keyboard-only user, I want to be able to reach the main navigation links with a keyboard so that I can determine the different areas of the site. | |
9. As a screen reader user, I want to hear the text equivalent for each image conveying information so that I don’t miss any information on the page. | |
10. As a user who has trouble reading due to low vision, I want to be able to make the te |