Skip to content

Instantly share code, notes, and snippets.

View apassiondev's full-sized avatar
🏠
Working from home

Andrea Ho apassiondev

🏠
Working from home
  • Vietnam
View GitHub Profile
@igorjs
igorjs / rest-api-response-format.md
Last active May 26, 2024 19:03
REST API response format based on some of the best practices
@chranderson
chranderson / nvmCommands.js
Last active June 8, 2024 20:44
Useful NVM commands
// check version
node -v || node --version
// list locally installed versions of node
nvm ls
// list remove available versions of node
nvm ls-remote
// install specific version of node
@jwebcat
jwebcat / gist:5122366
Last active March 25, 2024 18:25 — 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