Skip to content

Instantly share code, notes, and snippets.

@nathankwok
nathankwok / setup.sh
Created February 29, 2020 01:19 — forked from bradp/setup.sh
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install
@nathankwok
nathankwok / nathan.zsh-theme
Last active May 28, 2022 00:05
zsh theme for iterm2
# Based on af-magic.zsh-theme
# Repo: https://github.com/andyfleming/oh-my-zsh
# Direct Link: https://github.com/andyfleming/oh-my-zsh/blob/master/themes/af-magic.zsh-theme
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
*~
.DS_Store
## JetBrains IDE
.idea/
*.jar
*.zip
*DS_Store

Keybase proof

I hereby claim:

  • I am nathankwok on github.
  • I am nathankwok (https://keybase.io/nathankwok) on keybase.
  • I have a public key ASCP343mmOziwfhFU_n6dTCi2iRRoI2zGNXRSaIyPzPqxQo

To claim this, I am signing this object:

@nathankwok
nathankwok / Postgres_upgrade.md
Last active December 21, 2017 21:53 — forked from giannisp/gist:ebaca117ac9e44231421f04e7796d5ca
Upgrade PostgreSQL 9.6.5 to 10.0 using Homebrew (macOS)

After automatically updating Postgres to 10.0 via Homebrew, the pg_ctl start command didn't work. The error was "The data directory was initialized by PostgreSQL version 9.6, which is not compatible with this version 10.0."

Database files have to be updated before starting the server, here are the steps that had to be followed:

need to have both 9.6.x and latest 10.0 installed, and keep 10.0 as default

brew unlink postgresql
brew install postgresql@9.6
brew unlink postgresql@9.6