Skip to content

Instantly share code, notes, and snippets.

View maitandat1507's full-sized avatar
😉
Enjoy life at the moment!

Mai Tấn Đạt maitandat1507

😉
Enjoy life at the moment!
View GitHub Profile
@vitorbritto
vitorbritto / rm_mysql.md
Last active November 29, 2025 23:47
Remove MySQL completely from Mac OSX

Remove MySQL completely

  1. Open the Terminal

  2. Use mysqldump to backup your databases

  3. Check for MySQL processes with: ps -ax | grep mysql

  4. Stop and kill any MySQL processes

  5. Analyze MySQL on HomeBrew:

    brew remove mysql
    
@arttuladhar
arttuladhar / git_brushup.md
Last active September 1, 2022 13:30
Basic GIT Commands for everyday use.

List of super userful Git Commands to use everyday.

Config / Setup

# Setting Global Username/Email
git config --global user.name "Aayush Tuladhar"'
git config --global user.email "aayush.tuladhar@gmail.com"'

# Clone a Repo from URL