- Download the latest zsh package: https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
server { | |
listen 4444 ssl http2; | |
listen [::]:4444 ssl http2; | |
server_name CHANGE_SERVERNAME; | |
ssl_certificate /usr/syno/etc/certificate/system/default/ECC-fullchain.pem; | |
ssl_certificate_key /usr/syno/etc/certificate/system/default/ECC-privkey.pem; | |
ssl_trusted_certificate /usr/syno/etc/certificate/system/default/ECC-fullchain.pem; | |
add_header Strict-Transport-Security "max-age=15768000; includeSubdomains; preload" always; |
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
/* bling.js */ | |
window.$ = document.querySelectorAll.bind(document); | |
Node.prototype.on = window.on = function (name, fn) { | |
this.addEventListener(name, fn); | |
}; | |
NodeList.prototype.__proto__ = Array.prototype; |
Password-store keeps your passwords (or any other sensitive information) saved in GnuPG encrypted files organized in ~/.password-store
. For more information about GPG, consult the GNU Privacy Handbook.
To get started, install pass
and generate a keypair.
$ brew install pass
$ gpg --gen-key
$ gpg --list-keys
!/usr/bin/expect -f | |
set timeout 30 | |
log_user 0 | |
puts stderr "Generating OTP" | |
spawn oathtool --totp YOUR_SECRET_KEY_HERE | |
expect -re \\d+ | |
set otp $expect_out(0,string) | |
puts stderr "Connecting to VPN server $server" |