You may need to configure a proxy server if you're having trouble cloning
or fetching from a remote repository or getting an error
like unable to access '...' Couldn't resolve host '...'.
Consider something like:
| git commit -m "Short comment" -m $'Long description first line \n Second Line \n Third line' |
| #!/bin/bash | |
| mkdir -p decode | |
| for f in *.txt | |
| do | |
| base64 --decode "$f" > "decode/$f" | |
| done |
Assume that you want to set 127.0.0.1:10809 as HTTP proxy and 127.0.0.1:10808 as SOCKS proxy.
| /* | |
| * This is free and unencumbered software released into the public domain. | |
| * | |
| * For more information, please refer to <https://unlicense.org> | |
| */ | |
| //Regular text | |
| #define BLK "\e[0;30m" | |
| #define RED "\e[0;31m" | |
| #define GRN "\e[0;32m" |
| <?php | |
| // Content-type in github webhook settings should be x-www-form-urlencoded | |
| // It's better to be exported as an environment variable or in a .env file. | |
| define("GITHUB_WEBHOOK_SECRET", "write your github webhook secret here"); | |
| $body = file_get_contents("php://input"); | |
| function verifySignature($body) | |
| { |
| REM Batch extract audio of a specific language (Farsi) from MKV files - Using mkvmerge | |
| FOR /F "delims=*" %%A IN ('dir /b *.mkv') DO "C:\Program Files\MKVToolNix\mkvmerge.exe" -o "farsi_audio_%%A.mka" -D -S -a fa "%%A" | |
| PAUSE |