Skip to content

Instantly share code, notes, and snippets.

View hillonyechekwa's full-sized avatar
👨‍💻
Rebuilding my portfolio and blog along with a weird application

Hill Onyechekwa hillonyechekwa

👨‍💻
Rebuilding my portfolio and blog along with a weird application
View GitHub Profile
@hillonyechekwa
hillonyechekwa / History\-7a9cdecc\771U.json
Last active October 6, 2023 15:19
Visual Studio Code Settings Sync Gist
{
"sync.gist": "a3f544090a1c08751ecbbf54fc6ed1d3"
}
@hillonyechekwa
hillonyechekwa / vsc_js_snippets.json
Created August 22, 2019 08:32 — forked from bradtraversy/vsc_js_snippets.json
VSCode JavaScript Snippets
{
"Console Log": {
"prefix": "cl",
"body": "console.log($1);",
"description": "Console Log"
},
"Named Function": {
"prefix": "nfn",
"body": ["function ${1:functionName}($2) {", " $3", "}"],
"description": "Named Function"

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@hillonyechekwa
hillonyechekwa / eslint_prettier_airbnb.md
Created August 22, 2019 08:29 — forked from bradtraversy/eslint_prettier_airbnb.md
ESLint, Prettier & Airbnb Setup

VSCode - ESLint, Prettier & Airbnb Setup

1. Install ESLint & Prettier extensions for VSCode

Optional - Set format on save and any global prettier options

2. Install Packages

npm i -D eslint prettier eslint-plugin-prettier eslint-config-prettier eslint-plugin-node eslint-config-node