Skip to content

Instantly share code, notes, and snippets.

View danlucian's full-sized avatar

Lucian R danlucian

View GitHub Profile
@danlucian
danlucian / nvmCommands.js
Created April 27, 2025 19:33 — forked from chranderson/nvmCommands.js
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
@danlucian
danlucian / build.gradle
Created June 15, 2020 05:30
SDK dependency for build.gradle
dependencies {
compile 'net.danlucian.psd2.ing:oauth2-sdk:0.0.1-SNAPSHOT'
}