This file contains 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
# localhost.py | |
# | |
# brew install mkcert python3 | |
# mkcert -install | |
# > Add cert to trusted keychain | |
# mkcert localhost 127.0.0.1 ::1 | |
# | |
# pip3 install service_identity pyopenssl twisted[http2] | |
# | |
# DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" |
This file contains 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 | |
#========================== | |
# For writing to help file. | |
#========================== | |
write_help_header() | |
{ | |
echo "## $1" >> $TMPDIR/README.md | |
} |
This file contains 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 | |
# Use Examples | |
# ./ssh-keygen Additional comments | |
# ./ssh-keygen "(Work)" | |
ROUNDS=100 | |
if hash networksetup 2>/dev/null; then | |
# Mac only: Computer Name | |
COMMENT="$(networksetup -getcomputername) $@" |