Skip to content

Instantly share code, notes, and snippets.

View Thersis94's full-sized avatar

Thersis94

  • Denver, CO
View GitHub Profile
@Thersis94
Thersis94 / Shopping List Pseudocode Assignment
Last active July 17, 2019 03:35
Shopping List Pseudocode Assignment
function handleNewItemSubmit() {
//This function will be responsible for adding new items to our shopping list
//It will take the input upon submit and create a variable to hold the input value
//This will then run a function that creates a object to hold this value and push it to the store array
}
function handleItemCheckClicked() {
//This function will be responsible for when users click the check button on a list item
@Thersis94
Thersis94 / DOM Traversal questions
Created July 17, 2019 04:13
DOM Traversal questions
1. How do you save information so that when a user leaves the page it will come back next time they visit?
2. How do you implement A11y into DOM traversal and manipulation?
3. What are the best practices?
4. What is reflow?!
5. How could you stop further propagation of an event?
@Thersis94
Thersis94 / Quiz app info and wireframe.txt
Last active July 19, 2019 04:27
Quiz app info and wireframe
Quiz topic: 90s Music
Quiz questions
1. Who sang "How do I live"
2. Who sang "Un-Break My Heart"
3. Who sang "Foolish Games/You Were Meant For Me"
4. Who sang "(Everything I Do) I Do It For You"
5. What band played "Too Close"
6. What band played "Truly Madly Deeply"
@Thersis94
Thersis94 / Quiz App
Created July 22, 2019 00:37
Justins Quiz App
https://github.com/Thersis94/quizapp
https://thersis94.github.io/quizapp/
@Thersis94
Thersis94 / Portfolio Wireframe
Created July 24, 2019 04:34
Portfolio Wireframe
Headline
Developers: An organism that turns coffee into code.
Bio
Hi, I'm Justin. I've been an audio engineer for seven years. I'm pretty good at it. Not great, but pretty good.
Now, the obvious question; Why did a "pretty good" audio engineer transition into a full stack developer?
Well, the answer is simple, I fell in love with coding. I started tinkering around with Python in my spare time.
Before I knew it, my hobby became something I wanted to pursue professionally.
I will add more to the bio as I complete the Thinkful course
@Thersis94
Thersis94 / Client Server Analogy
Created July 30, 2019 13:21
Client Server Analogy
The Client/Server relationship is a lot like service at a restaurant.
The customer/client makes a request for a specific service like ordering a drink, appetizer or a main course.
The server is represented by the waiter who will deliver the requested services to the customer.
While many services may be provided by other entities the server is responsible for delivery to the customer.
@Thersis94
Thersis94 / Reading API Documentation
Created July 31, 2019 04:23
Reading API Documentation
Youtube API
part - Required
forChannelId - optional
maxResults - optional
Google Maps API
https://maps.googleapis.com/maps/api/geocode/json?place_id=ChIJd8BlQ2BZwokRAFUEcm_qrcA
&key=AIzaSyCghNqE49xx16oGe8pjmX9xm0gq3QDRLCQ&outputFormat=json&address=New York, NY 10004 - Statue of Liberty
I would like to create an app that allows a user to input cocktail ingredients that they have on hand and then generates a list of cocktails that they can create.
As well as instructions for making the drinks.
In order to achieve this I am going to be using the https://www.thecocktaildb.com/api.php
@Thersis94
Thersis94 / Cocktail Website User Stories
Created August 3, 2019 18:46
Cocktail Website User Stories
New User - Search by drink name - High
New User - Search drinks by ingredients - High
New User - Filter search by Alcohilic or non-Alcoholic - Medium
New User - See a random drink - Low
Returning User - Search by drink name - High
Returning User - Search by ingredients - High
Returning User - See recently added drinks - Medium
Returning User - See popular drinks - Medium
@Thersis94
Thersis94 / User Flow and Wireframe for API Hack App
Created August 3, 2019 19:41
User Flow and Wireframe for API Hack App
Picture of user flow and wireframe in the comments.