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
| Answer the following questions about the Meetup API: | |
| Does this API require authentication? | |
| Yes: https://www.meetup.com/meetup_api/auth/ | |
| Does this API support CORS? | |
| Yes | |
| Find the events search endpoint documentation. Describe in detail the response format of the events search endpoint. (HINT: I might need other keywords to find this endpoint) | |
| Endpoint: Find Upcoming Events | |
| format: |
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
| Clients and Servers: Video Game Analogy | |
| Clients and servers are like playing a video game. The client is the TV screen, and the server is the console (Xbox, PlayStation, Super Nintendo, etc.) and the game disk/cartridge. When a button on the controller is pressed, the console reads the disk/cartridge to decide what changes on the TV screen. For example, if the controller’s left button is pressed, and there is nothing blocking the video game character on its left, then the TV screen will show the character move to the left. | |
| Request/Response Cycle: https://drive.google.com/open?id=11uMbw3gH5d_4E-P8vZ5iCe5fO4ijGw0O |
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://1drv.ms/u/s!AtJs2DQHLDU_yiVIHcYtYylh9JWK?e=biJKaq |
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
| Headline: | |
| My name is Ken Wright and I enjoy writing code that manipulates data and data structures. | |
| Bio: | |
| I love writing code. It gives me an opportunity to flex my creativity muscles by writing code that | |
| is flexible, easy to understand, and easy to build on top of. Writing code also gives me an | |
| opportunity to come up with interesting solutions to complex problems. | |
| Outside of writing code, I enjoy: making sculptures of animals, walking in parks and on nature paths, | |
| playing video games, and volunteering for community organizations. And I enjoy finding new | |
| activities, interests, and hobbies. |
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
| GitHub Repo: https://github.com/KindredPrime/quiz-app | |
| Live page: https://kindredprime.github.io/quiz-app/ |
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
| Questions | |
| Who is the author of A Song of Ice and Fire? | |
| • J. R. R. Tolkien | |
| • George R. R. Martin (correct answer) | |
| • J. K. Rowling | |
| • Jon Snow | |
| What is the name of the third book in the Song of Ice and Fire book series? | |
| • A Hail of Halberds | |
| • A Monsoon of Maces |
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
| // User story 1: Add items | |
| function handleNewItemSubmit() { | |
| //When a submit event occurs in the form with the "Add item" button, do the following: | |
| // prevent the default behavior of the button | |
| // grab the value of the form's input field and store it | |
| // create an object to store the input value in, and include the other keys/values that are present in the other objects in the STORE global variable | |
| // add the object to the STORE global variable | |
| // Render the shopping list | |
| } |
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://repl.it/@kindrid/most-frequent-word-analyzer-challenge |
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://repl.it/@kindrid/Object-creator-drill | |
| https://repl.it/@kindrid/Object-updater-drill | |
| https://repl.it/@kindrid/Self-reference-drill | |
| https://repl.it/@kindrid/Deleting-keys-drill |