Skip to content

Instantly share code, notes, and snippets.

View sajithnsilvame's full-sized avatar
:octocat:
Focusing

Sajith Nishantha Silva sajithnsilvame

:octocat:
Focusing
View GitHub Profile
@bradtraversy
bradtraversy / typescript-crash.ts
Last active July 3, 2024 04:28
Basic intro to TypeScript (From YouTube Crash Course)
// Basic Types
let id: number = 5
let company: string = 'Traversy Media'
let isPublished: boolean = true
let x: any = 'Hello'
let ids: number[] = [1, 2, 3, 4, 5]
let arr: any[] = [1, true, 'Hello']
// Tuple

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