Skip to content

Instantly share code, notes, and snippets.

View yusuf-saif's full-sized avatar
🏠
Working from home

Yusuf yusuf-saif

🏠
Working from home
View GitHub Profile
@yusuf-saif
yusuf-saif / vanilla-js-cheatsheet.md
Created August 6, 2021 12:07 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@yusuf-saif
yusuf-saif / dom.js
Created August 4, 2021 20:19 — forked from amantheroot/dom.js
JavaScript DOM Manipulation cheat sheet by Traversy Media
// EXAMINE THE DOCUMENT OBJECT //
// console.dir(document);
// console.log(document.domain);
// console.log(document.URL);
// console.log(document.title);
// //document.title = 123;
// console.log(document.doctype);
// console.log(document.head);
// console.log(document.body);

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