-
Open the Terminal
-
Use
mysqldump
to backup your databases -
Check for MySQL processes with:
ps -ax | grep mysql
-
Stop and kill any MySQL processes
-
Analyze MySQL on HomeBrew:
brew remove mysql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('font-awesome/css/font-awesome.css'); | |
document.body.innerHTML = '<i class="fa fa-fw fa-question"></i>'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NUMBER1 := 10 | |
NUMBER2 := 5 | |
#Addition | |
ADD := $(shell echo ${NUMBER1}+${NUMBER2} | bc) | |
#Subtraction | |
SUBTRACT := $(shell echo ${NUMBER1}-${NUMBER2} | bc) | |
#Multiplication |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Open Terminal, then goto this folder: cd ~/Library/Developer/Xcode/Archives | |
2. Perform delete all folders and files: rm -rf * | |
You may need root permission to perform delete. |