Skip to content

Instantly share code, notes, and snippets.

View 0xtelmo's full-sized avatar
🏴‍☠️

Telmo Goncalves 0xtelmo

🏴‍☠️
  • Portugal
  • 13:25 (UTC +01:00)
View GitHub Profile
@0xtelmo
0xtelmo / vscode.json
Created February 3, 2021 11:58
Auto Fix ESLint
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true
}
@0xtelmo
0xtelmo / node_modules
Last active July 27, 2020 12:45
Remove all node_modules from folder
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
@0xtelmo
0xtelmo / falsy.js
Created April 20, 2020 23:00
Get rid of falsy values
const arr = [1, 2, false, 4, undefined, null, 1];
arr.filter(Boolean); // [1, 2, 4, 1]
cf592b4bbd3e097c6dc8dfcba6f54e34d74eb2cd635354cffc8b9d1a7ef1cdb26efe6f93317a29193f24009319d06bc4c9287f39aa06ee734f250a7e6bf27fbd