Skip to content

Instantly share code, notes, and snippets.

View sly-x86's full-sized avatar

Sergei SLY Solomonov sly-x86

View GitHub Profile

Keybase proof

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:

#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done
@sly-x86
sly-x86 / visual_studio_code_status_bar_css
Created July 5, 2017 12:50
visual studio code status bar css
"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