Engineers looking to learn from their predecessors, from abstract methods of thought to concrete applied practices.
Effective Java - Joshua Bloch
- Java Best Practices. Useful reference to keep handy
Typescript Deep Dive - Basarat Syed
| #!/bin/bash | |
| # Source variables from the cfg file. | |
| source new-boot.cfg | |
| # Google Chrome | |
| wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| sudo apt install -y ./google-chrome-stable_current_amd64.deb | |
| rm ./google-chrome-stable_current_amd64.deb | |
| # Update APT && Steam |
| { | |
| "title": "Example Gantt", | |
| "items": [ | |
| { | |
| "key": "foo", | |
| "title": "first activity", | |
| "description": "activity stuff", | |
| "dependencies": "", | |
| "start_date": "4/20/2000", | |
| "duration": 7, |
| #!/bin/bash | |
| pkill glava | |
| GEOMETRY=$(xrandr | grep "Screen 0" | tr "," "\n" | grep current | awk 'BEGIN {FS = " "} {print $2,$4 }') | |
| glava --desktop -r "setgeometry 0 0 $GEOMETRY" & |