I hereby claim:
- I am jruz on github.
- I am jruz (https://keybase.io/jruz) on keybase.
- I have a public key whose fingerprint is 903C FC4A 652A 829E 11D6 CDBF CECD 4EB5 EC6A AF54
To claim this, I am signing this object:
function download() { | |
const getAssets = () => { | |
return Array | |
.from(document.querySelector(".infinite-window>div").childNodes) | |
.map(i => i.childNodes[1].childNodes[3].textContent) | |
.map(i => `BINANCE:${i}USDT`) | |
} | |
const content = getAssets().join("\n"); | |
const a = document.createElement("A"); | |
a.href = 'data:text/csv;charset=utf-8,' + encodeURI(content); |
Array.from(document.querySelectorAll("input[type=\"text\"]")).forEach(n => n.removeAttribute("onpaste")) |
const url = window.location.href; | |
const from = 'de'; | |
const to = 'en'; | |
window.location = `https://translate.google.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sp=nmt&sl=${from}&tl=${to}&u=${url}&usg=ALkJrhgFXBxmp9mZ82ra1aJs6sIW4z3EWA`; |
I hereby claim:
To claim this, I am signing this object:
# select ubunutu 64 vm | |
# partition drive | |
gdisk | |
1.boot-256M (mark as boot) | |
2.swap-2G (mark s swap) | |
3./-10G (ext4) | |
# list partitions |
# Install Gist gem https://github.com/defunkt/gist | |
gem install gist | |
# Authenticate | |
gist --login | |
# cd into the folder containig the files to gist and run | |
ls -1 | while read file ; do echo "creating gist for: $file"; gist -p $file ; done |
#install | |
pacman -Sy transmission-cli transmission-remote-cli | |
# run the daemon | |
transmission-daemon | |
# add a file | |
transmission-remote -a file.torrent | |
transmission-remote -a file.torrent -w /mnt/external/series |
# image info | |
indentify /path/image.jpg | |
# format convert | |
convert original.jpg converted.png | |
# resize | |
convert original.jpg -resize 100x100 converted.jpg | |
# gif to jpg |
# convert from .iso to .img | |
hdiutil convert -format UDRW -o ~/path/arch.img ~/path/arch.iso | |
# list drives | |
diskutil list | |
# unmount pendrive | |
diskutil unmountDisk /dev/diskN | |
# copy files with progress bar (requires brew install pv) |