Skip to content

Instantly share code, notes, and snippets.

View ticotheps's full-sized avatar

Tico S. Thepsourinthone ticotheps

View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

@ticotheps
ticotheps / user_flow_wireframe
Last active October 30, 2018 12:25
Thinkful: API Capstone Project - User Flow + Wireframe
Attached (below) in the comments are images of the user flow and the grey box wireframe for my API capstone project.
@ticotheps
ticotheps / choosing_an_api
Last active October 26, 2018 09:19
Thinkful: API Capstone Project - Choosing an API
The displayed information in this web app will serve to help users make informed decisions regarding their future career
paths by utilizing public API data from: (1) the U.S. Bureau of Labor Statistics, and (2) YouTube.
@ticotheps
ticotheps / gist:e01b64997cc1dd71d8c5f783d16810b6
Last active July 24, 2018 15:00
Thinkful - Unit 3, Lesson 1, Project 3
Tico Thepsourinthone
Thinkful - Full Stack Flex Program
Unit 3 - Interactive Web Pages with jQuery
Lesson 1 - Event-Drive DOM Manipulation
Project 3 - Event Listener Drills
Drill #1 - Cat Carousel : https://repl.it/@TicoThepsourint/Cat-carousel-jQuery
Drill #2 - Return of FizzBuzz : https://repl.it/@TicoThepsourint/return-of-fizz-buzz
@ticotheps
ticotheps / gist:21979c2a5843aa61557df35958eb9fbe
Created July 11, 2018 14:04
Thinkful - Unit 2, Lesson 6, Assignment 6
Thinkful - Full Stack Flex Program
Unit 2 - Programming in JavaScript
Lesson 6 - Objects
Assignment 6 - Challenge: Analyze a Most Frequent Word Program
let example = "Lucy is a girl. Lucy is funny. She is tiny."
@ticotheps
ticotheps / gist:1a986e5365d37b56859fef0130490dd5
Created July 9, 2018 12:57
Thinkful - Unit 2, Lesson 6, Assignment 5
Thinkful
Unit 2 - Programming in JavaScript
Lesson 6 - Objects
Assignment 5 - Objects Drills 2
Drill #1: Make Student Reports - https://repl.it/@TicoThepsourint/Make-student-reports-drill
Drill #2: Enroll in Summer School - https://repl.it/@TicoThepsourint/Enroll-in-summer-school-drill
Drill #3: Find by ID - https://repl.it/@TicoThepsourint/find-by-id-drill
Drill #4: Validate Object Keys - https://repl.it/@TicoThepsourint/validate-object-keys-drill
@ticotheps
ticotheps / gist:c895cff9d00e9442fb81c919dd987422
Created July 5, 2018 09:31
Thinkful - Unit 2, Lesson 6, Assignment 2
Thinkful
Unit 2 - Programming in JavaScript
Lesson 6 - Objects
Assignment 2 - Object Drills 1
Drill #1: Object Creator - https://repl.it/@TicoThepsourint/Object-creator-drill
Drill #2: Object Updater - https://repl.it/@TicoThepsourint/Object-updater-drill
Drill #3: Self Reference - https://repl.it/@TicoThepsourint/Self-reference-drill
Drill #4: Deleting Keys - https://repl.it/@TicoThepsourint/Deleting-keys-drill
@ticotheps
ticotheps / gist:d80bf69989db4fb2614ecdb2c004a8f5
Created June 26, 2018 21:38
Thinkful - Unit 2, Lesson 5, Assignment 3: Challenge - In Your Own Words
Thinkful
Unit 2 - Programming in JavaScript
Lesson 5 - Scope and The Problem with Globals
Assignment 3 - Challenge: In Your Own Words
1) What is scope? Your explanation should include the idea of “global” vs. “local” scope.
The term “scope” can be described as the set of rules that govern whether or not a
variable can be referenced within different parts of your code or file. In JavaScript,
the two kinds of scope that we deal with as programmers are the “global scope” and the
@ticotheps
ticotheps / gist:a948166475072b83792ae8417e6d3702
Created June 25, 2018 21:49
Thinkful - Unit 2, Lesson 4, Assignment 6: Arrays and Loops Drills
Thinkful
Unit 2 - Programming in JavaScript
Lesson 4 - Arrays and Loops
Assignment 6: Arrays and Loops Drills
Drill #1 - Max/Min (without sort) Drill: https://repl.it/@TicoThepsourint/min-and-max-without-sort-drill
Drill #2 - Compute the Average: https://repl.it/@TicoThepsourint/average-drill
Drill #3 - Fizz Buzz: https://repl.it/@TicoThepsourint/fizzbuzz-drill-js