Skip to content

Instantly share code, notes, and snippets.

View ShirishRam's full-sized avatar

Shirish Ramchandran ShirishRam

View GitHub Profile
@ShirishRam
ShirishRam / oh-my-zsh-steps.txt
Last active December 6, 2020 08:34
Oh My Zsh
# Pre-requisites
1. zsh (5.0.8 or higher)
1. git (2.4.11 or higher)
2. curl or wget
# Install Oh My Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Install powerlevel10k Zsh theme
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
@ShirishRam
ShirishRam / mysql_python.md
Last active October 19, 2023 19:03
Installing MySQL, MySQL connector, MySQL Python client on Mac OS HighSierra

Installing MySQL Python client on Mac using Homebrew and pip

Verify if MySQL server is installed:

$ brew info mysql Expected output: mysql: stable 8.0.12 (bottled)

If you don't have MySQL installed, then run below command:

$ brew install mysql

If you don't have brew installed, then run below command: