Skip to content

Instantly share code, notes, and snippets.

View KindredPrime's full-sized avatar

Ken Wright KindredPrime

  • Chantilly, VA
View GitHub Profile
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:
@KindredPrime
KindredPrime / HowWebAppsWork.txt
Created May 20, 2020 17:00
An analogy for clients and servers, and a diagram of the request/response cycle
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
@KindredPrime
KindredPrime / PortfolioLayoutPlans.txt
Created May 7, 2020 20:21
Plans for the layouts of my portfolio from Thinkful's Module 9 Checkpoint 2
https://1drv.ms/u/s!AtJs2DQHLDU_yiVIHcYtYylh9JWK?e=biJKaq
@KindredPrime
KindredPrime / Portfolio Assets and Content.txt
Last active May 5, 2020 21:46
The assets and content for the portfolio in Thinkful's Module 9, Checkpoint 1
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.
@KindredPrime
KindredPrime / Quiz App Submission
Created May 1, 2020 00:29
Links to the GitHub repo and live page for the Quiz App for Thinkful's Module 8
GitHub Repo: https://github.com/KindredPrime/quiz-app
Live page: https://kindredprime.github.io/quiz-app/
@KindredPrime
KindredPrime / Quiz App
Created April 28, 2020 21:26
Content, Assets, and Wireframes for the Quiz App for Thinkful's Module 8
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
@KindredPrime
KindredPrime / shoppingListUserStories.txt
Last active April 21, 2020 18:48
Shopping List User Stories (Pseudocode)
// 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
}
@KindredPrime
KindredPrime / Grokking.txt
Created April 8, 2020 21:11
A link to my repl.it with my comments for the Grokking assignment from Thinkful's Module 5, Checkpoint 13
https://repl.it/@kindrid/most-frequent-word-analyzer-challenge
@KindredPrime
KindredPrime / ObjectBasicsDrills.txt
Created April 5, 2020 22:05
Object basics drills from Thinkful's Module 5, Checkpoint 12
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