Skip to content

Instantly share code, notes, and snippets.

View caongocthai's full-sized avatar

Harry Cao caongocthai

View GitHub Profile
@mohanpedala
mohanpedala / bash_strict_mode.md
Last active October 18, 2024 17:21
set -e, -u, -o, -x pipefail explanation
@vsouza
vsouza / .bashrc
Last active September 21, 2024 12:31
Golang setup in Mac OSX with HomeBrew. Set `GOPATH` and `GOROOT` variables in zshell, fish or bash.
# Set variables in .bashrc file
# don't forget to change your path correctly!
export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin