Skip to content

Instantly share code, notes, and snippets.

View Taeil2's full-sized avatar

Taeil Kwak Taeil2

View GitHub Profile
Github Pages:
https://thinkful-ei-orka.github.io/Quiz-App_Taeil-Yousef/
Github
https://github.com/thinkful-ei-orka/Quiz-App_Taeil-Yousef
Partner: Yousef Ghaddar
The relationship between clients and servers is like the relationship between people and a library.
A library stores a collection of documents, and when a person requests a book, the librarian gives it to them to read.
The only difference is that in a server, the server keeps the original documents when it gives a copy to the client.
request/response cycle diagram:
https://app.box.com/s/vet1iykvfgc0i69htt9n02ald4bo9341
My life in tech began with an interest in user interface design. I liked simple, usable, and intuitive interfaces. To pursue this, I learned about UX and user-centered design from the School of Information at UC Berkeley.
From there, I moved to a small web agency called Tecture, LLC working both as a UX designer and a front end developer. I designed and developed several websites, growing in both UX and development.
I am now attending a Thinkful bootcamp in software engineering to further develop my technical skills. I am eager to try something new where I can continue to learn and grow with others.
Outside of work, I love sports, fitness, and being active. You can find me at the gym or the outdoors most days. I also like to be healthy, cook, and play instruments. I am very globally curious. I love to explore the world and experience different cities and cultures.
Wireframes:
https://app.box.com/s/lxitwkiuke450jyizptc0q4a0uyzm5at
https://app.box.com/s/ip4buvp22l8iekkiuo06s89esj94fu3z
https://app.box.com/s/ptvzx5bh8kyjxjxog9q1ku39qkuikcgt
https://app.box.com/s/d1afdn0jcktirols3sz69ygd4pco2xfe
Does this API require authentication?
They say most requests must be authenticated.
Does this API support CORS?
Yes
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.)
The response returns the current city in context, with information such as the name of the city, the country, the member count, etc.
It also returns the list of events with a lot of information about each event such as the attendance, time created, the description, the hosts, and more.
https://www.meetup.com/meetup_api/docs/find/upcoming_events/
@Taeil2
Taeil2 / gist:05d3fee4ddff659135fa96f2584fcf43
Created June 13, 2020 15:18
Bookmarks Manager and New Tab
This is a bookmarks app that takes inspiration from Google’s new tab screen and iOS. It allows you to organize your bookmarks in a 2d layout.
@Taeil2
Taeil2 / gist:b2918a504d2544ade20483b719709552
Created June 13, 2020 15:21
Bookmarks Manager and New Tab User Stories
As a new user I want to sign up for an account - High
As a new user I want to add bookmarks - High
As a new user I want to add a note - Medium
As a new user I want to adjust my settings - Medium
As a returning user I want to store extra bookmarks in a drawer - High
As a returning user I want to add a new page of bookmarks - High
As a returning user I want to reorder my bookmarks - Medium
As a returning user I want to organize bookmarks in folders - Medium
As a returning user I want to change my background image - Low
As a returning user I want to add a bookmark for a site I am visiting (chrome extension) - Low
@Taeil2
Taeil2 / gist:ab162656bd4179713378f598993fc706
Created June 13, 2020 15:29
Bookmarks Manager and New Tab Wireframes
Name: Bookmarks Manager and New Tab
HTML Wireframes
Login Page - https://taeil2.github.io/bookmarks-manager-wireframes/
User enters a valid email and password and clicks submit -> Go to bookmarks page
User enters an incorrect email and password and clicks submit -> An error message is shown
User enters an email already taken -> The user is told that email is taken
Bookmarks Page - https://taeil2.github.io/bookmarks-manager-wireframes/bookmarks
@Taeil2
Taeil2 / Answers
Created June 15, 2020 16:14
Relationships and schema design queries and answers
1.
count
-------
4
(1 row)
2.
employee_name
-----------------
Toby Flenderson
@Taeil2
Taeil2 / Answers
Created June 22, 2020 16:34
nw-sql-drills
1.
SELECT * FROM restaurants;
2.
SELECT * FROM restaurants WHERE cuisine = 'Italian';
3.
SELECT id, name FROM restaurants WHERE cuisine = 'Italian' LIMIT 10;
4.