Skip to content

Instantly share code, notes, and snippets.

View vnbubba's full-sized avatar
🇻🇳
from Vietnam

Hoang-Anh Pham vnbubba

🇻🇳
from Vietnam
View GitHub Profile
@michaellihs
michaellihs / tmux-cheat-sheet.md
Last active June 22, 2024 15:52
tmux Cheat Sheet
@jwebcat
jwebcat / gist:5122366
Last active June 20, 2024 13:35 — forked from lemenkov/gist:1674929
Properly download from github using wget and curl
wget --no-check-certificate --content-disposition https://github.com/joyent/node/tarball/v0.7.1
# --no-check-cerftificate was necessary for me to have wget not puke about https
curl -LJO https://github.com/joyent/node/tarball/v0.7.1