Just another collection of CheatSheets.
living document – constantly updating
Cheat Sheets
So far:
- Docker
- Kubernetes
- Nginx
- Markdown
- JavaScript
- Ruby
- SQL
- Command Line
- Python
- Firebase
- Unity Mirror
- Solidity
- Email Development
- Algorithms & Data Structures
Theory
Helpers
Boilerplates
Find them in my boilerplate project.
Common
OSX Bash script not executed "command not found".
sudo chmod a+x ./app/build.sh
Install nodejs on ubuntu
https://github.com/nodesource/distributions/blob/master/README.md#debinstall
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs
Kill open port in OSX
sudo lsof -i :<port>
sudo kill -9 <port PID>