Skip to content

Instantly share code, notes, and snippets.

View atom2ueki's full-sized avatar
☮️

Tony Li atom2ueki

☮️
View GitHub Profile
@atom2ueki
atom2ueki / gist:0f2f8b8ba6f0413f523a324d71a50604
Created May 30, 2019 09:05 — 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