Skip to content

Instantly share code, notes, and snippets.

@elliotkim916
elliotkim916 / 3 Drills
Created April 4, 2018 00:32
REACT Communication Drills
https://glitch.com/edit/#!/jade-seagull?path=src/components/surprise.js:1:0
https://glitch.com/edit/#!/lavender-coach?path=src/components/rate-calculator.js:1:0
https://glitch.com/edit/#!/cyber-olive?path=src/components/live-search.js:1:0
@elliotkim916
elliotkim916 / Glitch Links
Created March 29, 2018 23:35
Component Drills Solutions
@elliotkim916
elliotkim916 / SleepLogger
Created March 20, 2018 15:26
Feature changes for SleepLogger Application
- Fix Date.
- Fix views when viewing on mobile device.
- Fix views and security when viewing on different browsers such as Mozilla Firefox.
- Add a multiple question where the choices are how the user felt when waking up.
- Make sure colors are darker, easy and relaxing to the eyes.
- Add icons to buttons to make them stand out and easy to spot.
@elliotkim916
elliotkim916 / 1. App Idea
Last active February 22, 2018 23:30
Node Capstone Details
App Name - Get Sleep, or Sleep Log
App Idea - User will be able to log how many hours of sleep they get per day, logging the hours and a short statement of
how the sleep was. When the user first creates their account, they provide their age and are then informed how many hours of sleep
they should get per day. Based on this information, users can compare this number with how much sleep they are getting per day, and
by seeing their logs of sleep, they can precisely see how much sleep they are getting and lacking.
@elliotkim916
elliotkim916 / Mongo Basic Drills
Created February 9, 2018 03:33
Mongo Basic Drills
// Get All
db.restaurants.find();
// Limit & Sort
db.restaurants.find().
... sort({name: 1}).
... limit(10);
// Get by ID
db.restaurants.find({_id: ObjectId("59074c7c057aaffaafb0e20b")});
@elliotkim916
elliotkim916 / Links to Glitch Apps
Created January 24, 2018 00:39
REQUEST & RESPONSE DRILLS
@elliotkim916
elliotkim916 / User Feedback, feature changes
Created January 11, 2018 18:49
Music Savor App - Thinkful Capstone 1
- Make the show and hide button more obvious, can be confusing for some users.
- Make all text more visible behind background.
- Use icon next to 'learn more' and 'buy tickets' to indicate to user that once clicked, new page will open.
- If artist doesn't exist, show user that the artist doesn't exist.
- Show a little bit of info, like a tease after the user does a search of an artist, and then below it have the show
more button, gives the user the choice if he/she wants to see more, and makes the show more button less confusing.
@elliotkim916
elliotkim916 / User Flow
Created December 12, 2017 22:05
Userflow and Wireframe
https://slack-files.com/T02D02A55-F8DRNPK61-e4035d5d3c
@elliotkim916
elliotkim916 / Study Finder
Created December 12, 2017 01:13
High Level Definition of my App Idea -
Help users find a cafe/coffee shop to study and get work done by showing locations closest to them, letting users know
how packed the location is to help determine if the location is worth going to, showing users if the location has
free WiFi, and showing users how to get there.
@elliotkim916
elliotkim916 / Cat Carousel HTML
Created November 18, 2017 22:35
Event Listener Drills