This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:DEFBCFD001B445C1C3751CA06AE703B3E171C686]
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:DEFBCFD001B445C1C3751CA06AE703B3E171C686]
I hereby claim:
To claim this, I am signing this object:
playlist=/home/<user>/.config/retroarch/playlists/Sony - PlayStation.lpl | |
find /home/<user>/roms/Sony\ PlayStation/ -iname *.cue | while read f; do | |
echo $f; | |
echo $f >> "$playlist" ; | |
echo `basename "$f"` >> "$playlist"; | |
echo DETECT >> "$playlist" ; | |
echo DETECT >> "$playlist" ; | |
echo `crc32 "$f"`"|crc" >> "$playlist"; | |
echo `basename "$playlist"` >> "$playlist"; | |
done |
ffmpeg -i <mp3>.mp3 -loop 1 -framerate 30 -i <png>.png -filter_complex "[a:0]showwaves=mode=p2p:r=30:size=465x353:,format=rgba,colorkey=black,colorchannelmixer=rr=0.003:gg=0.435:bb=0.133[fg];[1:v][fg]overlay=shortest=1,format=yuv420p,scale=852:-1,crop=iw:480[vid]" -map "[vid]" -map 0:a -c:a copy -shortest -c:v libx264 -preset fast -crf 32 /tmp/test.mkv |
locker.sh & | |
nm-applet & | |
startxrandr & | |
skype & | |
pidgin & | |
pasystray & | |
compton & | |
hsetroot -add '#000000' -add '#808090' -add '#000000' -gradient 180 | |
diff <(xsel) <(xsel -b) |
watch 'echo " [ `curl -s https://www.bit2c.co.il/Exchanges/BtcNis/Ticker.json` ]" | json_xs -t yaml' |
# -*- coding: utf-8 -*- | |
#!/bin/bash | |
for pkg in "$@"; do | |
echo -n "${pkg}: " | |
curl -s "http://www.israelpost.co.il/itemtrace.nsf/trackandtraceJSON?openagent&lang=EN&itemcode=${pkg}" | | |
python2 -c "import sys, locale, json; print (u' '+ json.load(sys.stdin)['itemcodeinfo'].split('<script')[0]).replace('<br>','').encode('utf8')" | |
done |
<?php | |
$loader = require __DIR__ . '/vendor/autoload.php'; | |
$client = new Aws\S3\S3Client( | |
[ | |
'credentials' => [ | |
'key' => $key, | |
'secret' => $secret | |
], | |
'region' => 'eu-west-1', | |
'version' => 'latest', |
<?php | |
/** | |
* Use this to send data with multidimensional arrays and CURLFiles | |
* `curl_setopt($ch, CURLOPT_POSTFIELDS, build_post_fields($postfields));` | |
* | |
* @param $data | |
* @param string $existingKeys - will set the paramater name, probably don't want to use | |
* @param array $returnArray - Can pass data to start with, only put good data here | |
* | |
* @return array |