Skip to content

Instantly share code, notes, and snippets.

View songrgg's full-sized avatar
🎯
Focusing

Songrong Jiang songrgg

🎯
Focusing
View GitHub Profile
@songrgg
songrgg / gist:fd7deeb65cd7eb3b581e69ff68a1ab75
Created March 17, 2022 13:56 — forked from jwebcat/gist:5122366
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