I hereby claim:
- I am sly-x86 on github.
- I am sly_x86 (https://keybase.io/sly_x86) on keybase.
- I have a public key whose fingerprint is 5254 0A89 A14E 9BF3 0692 4E80 4979 9302 6A8B D297
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| while : | |
| do | |
| clear | |
| git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
| sleep 1 | |
| done |
| "workbench.colorCustomizations": { | |
| "statusBar.background" : "#1A1A1A", | |
| "statusBar.noFolderBackground" : "#212121", | |
| "statusBar.debuggingBackground": "#263238" | |
| } |
| #!/bin/bash | |
| find ./ -name "*.php" -o -name "*.html" -o -name "*.css" -o -name "*.js" -type f | | |
| while read file | |
| do | |
| echo "- $file" | |
| mv $file $file.icv | |
| iconv -f WINDOWS-1251 -t UTF-8 $file.icv > $file | |
| rm -f $file.icv | |
| done |