Keybase proof
I hereby claim:
- I am Kartones on github.
- I am kartones (https://keybase.io/kartones) on keybase.
- I have a public key whose fingerprint is 183E 1F5A 1324 8786 6422 4300 3601 C4A0 ED24 F41D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
sudo pip install --upgrade youtube-dl
youtube-dl <VIDEO-URL> --extract-audio --audio-format mp3
sudo apt-get install ffmpeg
javascript:%20var%20el,%20i,%20size;%20%20for(i=0,%20size=document.styleSheets.length;%20i<size;%20i++)%20{%20void(document.styleSheets.item(i).disabled=true);%20}%20%20el%20=%20document.getElementsByTagName('script');%20%20while%20(el.length%20>%200)%20{%20%20void(el[0].parentNode.removeChild(el[0]));%20%20}%20%20el%20=%20document.getElementsByTagName('link');%20%20while%20(el.length%20>%200)%20{%20%20void(el[0].parentNode.removeChild(el[0]));%20%20}%20%20el%20=%20document.getElementsByTagName('iframe');%20%20while%20(el.length%20>%200)%20{%20%20void(el[0].parentNode.removeChild(el[0]));%20%20}%20%20el%20=%20document.getElementsByTagName('*');%20%20for%20(%20i=0,%20size=el.length;%20i%20<%20size;%20i++)%20{%20%20void(el[i].style.cssText%20=%20'');%20%20} |
pip install pystatsd
python -c 'import pystatsd; pystatsd.Server(debug=True).serve()'
localhost:8125
From https://pypi.python.org/pypi/pystatsd/ Kudos to @rochoa
CTRL
+ SHIFT
+ p
: Command panelCTRL
+ p
: File searchCTRL
+ r
: Method search inside current fileCTRL
+ g
: Go to line #CTRL
+ SHIFT
+ [
: Fold codeCTRL
+ SHIFT
+ ]
: Unfold codeALT
+ SHIFT
+ 2
: Double column/file modeALT
+ SHIFT
+ 1
: Single column/file modecurl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET "http://hostname/resource"
curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET "http://hostname/resource"
rename 's/\.JPG$/\.jpg/' *.JPG
rename 's/\.JPEG$/\.jpg/' *.JPEG
rename 's/\.jpeg$/\.jpg/' *.jpeg
mogrify -format jpg *.png
mogrify -resize 1600x1280\> -quality 90 *.jpg
rm *.png
git checkout -b __newbranch__
: get a new branch and switch to itgit checkout -b __branchname__ / __branchname__
: get a local copy of a remote existing branchgit checkout __branchname__
: switch branchgit checkout --orphan __branchname__
: create branch without full historygit log -n X -p
: show X last commits with diffsgit log __branchA__ ^__branchB__
: commits in branch A that aren't in branch Bgit log --pretty=oneline --stat --all __foldername__
: modified files under a given foldergit fetch
Magic words:
psql -U postgres
Some interesting flags (to see all, use -h
or --help
depending on your psql version):
-E
: will describe the underlaying queries of the \
commands (cool for learning!)-l
: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)