Skip to content

Instantly share code, notes, and snippets.

@mtford90
mtford90 / run.sh
Last active February 22, 2023 14:27
Running Ethereum wallet in light mode on Mac OSX
# Install ethereum
brew tap ethereum/ethereum
brew install ethereum
# Run a light ethereum node
geth --syncmode="light"
# Open wallet in light mode (will need to install wallet from github first)
open -n /Applications/Ethereum\ Wallet.app --args -node-light
@vitorbritto
vitorbritto / rm_mysql.md
Last active April 23, 2024 14:21
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