Skip to content

Instantly share code, notes, and snippets.

View Taeil2's full-sized avatar

Taeil Kwak Taeil2

View GitHub Profile
@Taeil2
Taeil2 / yourName-surefoot-application-1.md
Last active September 23, 2020 18:41
yourName-surefoot-application.md

/* Form Validation Code */

/* This function checks for any errors on form submit. If there are errors, it displays the errors. Otherwise, it submits the form.

I'm assuming the error styles that are currently in use stay there, so I'm not adding any additional styles. */

$(function() {
  $('.wpcf7-form').submit(function(e) {
    // declare variables and error messages

let errorFound = false;

Show a map result on the bottom of the screen on mobile
Make sure mobile and desktop sites are consistent
Looks good overall
My Clientele
https://myclientele-f5.vercel.app/
https://github.com/thinkful-ei-orka/myclientele-f5-client
https://github.com/thinkful-ei-orka/myclientele-f5-api
My Clientele
https://myclientele-f5.vercel.app/
https://github.com/thinkful-ei-orka/myclientele-f5-client
@Taeil2
Taeil2 / gist:d9bef348e8c0d40c6b2313fcf52a417f
Last active August 24, 2020 16:58
3rd Capstone statement
My Clientele
My Clientele is a service that allows people to keep track of their clients and records on them. A user will add clients to their schedule, view their clients on a map, and create reports of client status with photos.
@Taeil2
Taeil2 / Back End Questions
Last active July 27, 2020 14:37
Spaced Repetition Questions
Which database tables are created in the migrations?
user, language, word
What are the endpoints for user registration, login and refresh?
/user (post), /auth/token (post), auth/token (put)
What endpoints have been implemented in the language router?
/ (get), /head (get), /guess (post)
What is the async and await syntax for? (Hint)
Implemented feedback:
Show more of what the app does in the landing page.
Provide demo credentials.
Add a favicon
Features to add:
drag and drop between page and drawer
drag and drop into folder
Bookmarks Manager
Live app - https://bookmarks-manager-front.vercel.app/
Client Repo - https://github.com/Taeil2/bookmarks-manager-front
API Repo - https://github.com/Taeil2/bookmarks-manager-back
Chris Angelico
@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.
@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