Skip to content

Instantly share code, notes, and snippets.

View zofy29's full-sized avatar

Thanh Nguyen zofy29

View GitHub Profile
@zofy29
zofy29 / poetry.ps1
Created July 9, 2024 03:19 — forked from bollard/poetry.ps1
Installing / uninstalling Poetry on Windows (Powershell)
# install
powershell -Command { $env:POETRY_HOME="D:/Poetry"; (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python - }
# uninstall
powershell -Command { $env:POETRY_HOME="D:/Poetry"; (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python - --uninstall }
@zofy29
zofy29 / rbenv-install-system-wide.sh
Created December 23, 2020 13:57 — forked from v1nc3ntlaw/rbenv-install-system-wide.sh
rbenv install ruby 1.9.3-p448 on Ubuntu 12.04 LTS
#
# Run as root
# $ bash <(curl -s https://raw.github.com/gist/1631411)
#
# Update, upgrade and install development tools:
apt-get update
apt-get -y upgrade
apt-get -y install build-essential git-core curl \
libssl-dev \