Skip to content

Instantly share code, notes, and snippets.

View hafeez-syed's full-sized avatar
:octocat:
dont stop learning

Hafeez Syed hafeez-syed

:octocat:
dont stop learning
  • Melbourne, Australia
View GitHub Profile
@hafeez-syed
hafeez-syed / typescript-user-settings
Created May 29, 2017 14:20
Typescript user settings
{
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib",
//"editor.fontFamily": "Roboto Mono",
"editor.fontSize": 16,
"editor.quickSuggestions": true,
"editor.parameterHints": true,
"editor.wordBasedSuggestions": true,
"editor.selectionHighlight": false,
"editor.suggestOnTriggerCharacters": true,
@hafeez-syed
hafeez-syed / NVM - Node LTS
Last active October 22, 2019 11:01
Install Node LTS via NVM and move global packages along
1. # LIST node versions remote
```
$ nvm ls-remote
```
2a. # OPTION1 - INSTALL new version of node via NVM
```
$ nvm install v1.1.1
```