https://css-tricks.com/snippets/css/system-font-stack/
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
| javac -d bin/ src/*.java | |
| java -cp bin ClassFileName | 
| // first, Add the file to git ingnore | |
| git rm -r --cached . // this does not remove the file from local disk, but will remove the file when pull | |
| git add . | |
| // git commit ... | 
https://css-tricks.com/snippets/css/system-font-stack/
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
Sublime Text: Package Install: Babel
VSCode: Install extension: Sublime Babel
Run shopt -s extglob once in shell
And then can use !(something) to mean: anything that is not "something"
Ref: https://unix.stackexchange.com/questions/164025/exclude-one-pattern-from-glob-match
Objective: Make the screen stay on forever for a raspberry pi
$ sudo cp /etc/lightdm/lightdm.conf /etc/lightdm/lightdm.conf.bkp
$ sudo vim /etc/lightdm/lightdm.conf
Then Add a line under this section:
[SeatDefaults]
| Objective: | |
| Archive a git repository including with all commit history into one file. | |
| To bundle: | |
| ``` | |
| git bundle create /path/to/destination/bundle/file --all | |
| ``` | |
| To unbundle: | |
| ``` | 
| No percentage borderRadius | |
| actionSheetOptions options: [] must be array | 
| $('body').append('<div id="a"></div>'); | |
| START = 40; | |
| INTERVAL = 5; | |
| for (let i = START * 10000; i < (START + INTERVAL) * 10000; i++) { | |
| let hash = (i).toString(36); | |
| $('#inputHash').val(hash); | |
| if (i % 1000 == 0) { | |
| console.clear(); | |
| console.count('x1000'); | |
| console.log(i % 1000); | 
| Dark Mode Color Scheme | |
| BG: 282C35 | |
| TEXT: E6E6E7 | |
| BLUE: 4DB4B7 |