Skip to content

Instantly share code, notes, and snippets.

View yoonhoGo's full-sized avatar
😎
Cool

Yoonho Go yoonhoGo

😎
Cool
View GitHub Profile
@keimlink
keimlink / nvm_vs_volta.md
Last active June 3, 2024 09:57
nvm vs Volta

nvm vs Volta

A comparison of nvm and Volta to manage Node.js projects (without Yarn).

Bootstrapping a Project

Bootstrapping a Project with nvm

nvm install
@serithemage
serithemage / aws-study-resource.md
Last active August 29, 2024 07:18
AWS 학습 자료집

AWS 학습 링크집 시리즈

@mihow
mihow / load_dotenv.sh
Last active September 16, 2024 17:00
Load environment variables from dotenv / .env file in Bash
# The initial version
if [ ! -f .env ]
then
export $(cat .env | xargs)
fi
# My favorite from the comments. Thanks @richarddewit & others!
set -a && source .env && set +a
@irazasyed
irazasyed / homebrew-permissions-issue.md
Last active September 4, 2024 07:23
Homebrew: Permissions Denied Issue Fix (OS X / macOS)

Homebrew Permissions Denied Issues Solution

sudo chown -R $(whoami) $(brew --prefix)/*