Skip to content

Instantly share code, notes, and snippets.

@darkuncle
darkuncle / The_Rules.md
Last active March 26, 2026 22:16
The Rules - guidelines learned through hard experience in operations

(subject to additions, but rarely changes)

rule 0: It has to work.

rule 1: As simple as possible.

rule 2: Use the right tool for the job.

rule 3: Everything is a tradeoff. (see Rule 41)

@LevPewPew
LevPewPew / .eslintignore
Last active February 16, 2022 07:37
starter config for TS CRA on Github
# Ignore everything:
/*
# Except src:
!/src
@chranderson
chranderson / nvmCommands.js
Last active April 10, 2026 15:56
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