These commands allow you to generate CSRs, Certificates, Private Keys and do other miscellaneous tasks.
openssl req -out CSR.csr -new -newkey rsa:2048 -nodes -keyout privateKey.key
// Playbook - http://play.golang.org/p/3wFl4lacjX | |
package main | |
import ( | |
"bytes" | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/rand" | |
"encoding/base64" |
//----------------------------- MISC -------------------------------\\ | |
//------------------------------------------------------------------\\ | |
sv_cheats "1" | |
sv_showimpacts "0" | |
sv_showimpacts_time "2.5" | |
//---------------------------- BINDS -------------------------------\\ | |
//------------------------------------------------------------------\\ | |
bind "SPACE" "demo_togglepause" // pause/play demo | |
bind "c" "r_cleardecals" // get rid of bulletholes and black residue from grenade explosions |
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
ffmpeg -y -i input.mp4 -vf fps=10,scale=716:-1:flags=lanczos,palettegen palette.png | |
ffmpeg -i input.mp4 -i palette.png -filter_complex "fps=10,scale=716:-1:flags=lanczos[x];[x][1:v]paletteuse" output.gif |
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
/* Hide Reddit username new design (2018-) */ | |
div[class*="s1ilcdod-18 dsBbYg"] { | |
visibility: hidden; | |
} | |
/* Hide Reddit username old design (pre-2018) */ | |
span[class="user"] { | |
visibility: hidden !important; | |
} |
{ | |
"background" : "#282828", | |
"black" : "#282828", | |
"blue" : "#458588", | |
"brightBlack" : "#928374", | |
"brightBlue" : "#83A598", | |
"brightCyan" : "#8EC07C", | |
"brightGreen" : "#B8BB26", | |
"brightPurple" : "#D3869B", | |
"brightRed" : "#FB4934", |