Cheat sheets - to be updated, a bit messy
Some external resources to other cheat sheets commonly used and unorganized notes
DevOps
Devops tools: https://github.com/collections/devops-tools
https://github.com/graphite-project/graphite-web Draw graphic easily
https://github.com/grafana/grafana Close to netinfo statistic
Google VSAQ security assessment questionnaire https://github.com/google/vsaq
CKA preparation
https://github.com/kelseyhightower/kubernetes-the-hard-way https://kubernetes.io/docs/tasks/
Programming stuffs
Nodejs cheatsheet
https://gist.github.com/LeCoupa/985b82968d8285987dc3
Node programing: Style: https://github.com/felixge/node-style-guide
editorconfig: https://github.com/felixge/node-style-guide/blob/master/.editorconfig
Tester: jsfiddle good site to manipulate js codes
Book: http://chimera.labs.oreilly.com/books/1234000000262/ch02.html#side-effects
Quick ref: http://htmlcheatsheet.com/js/ https://www.cheatography.com/acwinter/cheat-sheets/javascript-basic-advanced-and-more/ Explained: https://github.com/krishnr/JavaScript-cheat-sheet Notbad, some new stuffs: https://www.codementor.io/johnnyb/javascript-cheatsheet-fb54lz08k Comlicated (MDN): http://overapi.com/javascript Good tutorial: https://xpepermint.gitbooks.io/nodejs-cheatsheet/content/ Nodejs: https://gist.github.com/LeCoupa/985b82968d8285987dc3
New Syntax: () => (a, b) => a + b; //input => output let, const for (let current of arr) { /* current will be the current element */ }