Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 1.66 KB

README.md

File metadata and controls

67 lines (50 loc) · 1.66 KB

Just another collection of CheatSheets.
living document – constantly updating

Cheat Sheets

So far:

Helpers

Meta Files

React

Theory

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>