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 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 |
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
| 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 |
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 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. |
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
| 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 |
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
| 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/ |
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
| 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. |
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
| 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 |
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
| 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 |
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. | |
| count | |
| ------- | |
| 4 | |
| (1 row) | |
| 2. | |
| employee_name | |
| ----------------- | |
| Toby Flenderson |
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. | |
| SELECT * FROM restaurants; | |
| 2. | |
| SELECT * FROM restaurants WHERE cuisine = 'Italian'; | |
| 3. | |
| SELECT id, name FROM restaurants WHERE cuisine = 'Italian' LIMIT 10; | |
| 4. |
OlderNewer