Skip to content

Instantly share code, notes, and snippets.

View caseyocampo's full-sized avatar

Casey Ocampo caseyocampo

View GitHub Profile

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

@caseyocampo
caseyocampo / style.css
Last active April 28, 2022 10:47
Background Gradient
/* "to left" / "to right" - affects initial color */
.selector {
background: linear-gradient(to left, var(--black) 50%, #ffffff 50%)
right;
background-size: 200%;
transition: 0.2s ease-out;
}