Generated with https://github.com/alex1770/wordle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iex ((New-Object System.Net.WebClient).DownloadString('https://git.io/fhNsh')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
LINKS='http://mirror.math.princeton.edu/pub/ubuntu-iso/19.04/ubuntu-19.04-desktop-amd64.iso http://mirrors.layeronline.com/ubuntu-releases/19.04/ubuntu-19.04-desktop-amd64.iso http://mirrors.xtom.com/ubuntu-releases/19.04/ubuntu-19.04-desktop-amd64.iso http://mirror.easyspeedy.com/ubuntu-iso/19.04/ubuntu-19.04-desktop-amd64.iso http://mirrors.dotsrc.org/ubuntu-cd/19.04/ubuntu-19.04-desktop-amd64.iso' | |
aria2c --dir / -o /dev/null --allow-overwrite=true --file-allocation=none $LINKS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# generates a self-signed secp256r1 tls key + certificate | |
if [ -z "$1" ] || [ -z "$2" ]; then | |
echo "usage: $0 <key.pem> <cert.pem>" 2>& 1 | |
exit 1 | |
fi | |
openssl req -new -newkey ec -pkeyopt ec_paramgen_curve:prime256v1 -x509 -nodes -batch -days 36500 -out "$2" -keyout "$1" |
OlderNewer