Build, install, and run the latest OpenSSH Server as a systemd service.
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
#!powershell | |
<# | |
.SYNOPSIS | |
Use exiftool to set file system datetimes values to those found within embedded media | |
tags of .mp4 and .jpg files. | |
.DESCRIPTION | |
Use exiftool (https://exiftool.org/) to set file system datetime attributes | |
FileModifyDate, FileAccessDate, FileCreateDate. |
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
#!/usr/bin/env bash | |
# | |
# https://gist.github.com/jtmoon79/c951f81f621bb87ddb60836245aca4ff | |
# | |
# Script to generate a site-to-site Wireguard IPv4 VPN tunnel | |
# configuration files, and commands for systemd services. | |
# This script only covers a narrow scope of possible networking arrangements. | |
# It may not perfectly fit the user's needs, but it may provide the user with | |
# a working example that they can modify for their needs. | |
# |
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
#!/usr/bin/env bash | |
# | |
# https://gist.github.com/jtmoon79/217e55272c55631ba6025c9f890b3dde | |
# | |
# Script to generate a client-to-site Wireguard IPv4 VPN tunnel | |
# configuration files, and commands for systemd services. | |
# This script only covers a narrow scope of possible networking arrangements. | |
# It may not perfectly fit the user's needs, but it may provide the user with | |
# a working example that they can modify for their needs. | |
# |
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
#!/usr/bin/env bash | |
# | |
# rename pdf files from paperlessemployee.com | |
# | |
set -euo pipefail | |
if [[ ${#} -ne 1 ]] && [[ ${#} -ne 2 ]]; then | |
echo "usage: | |
$(basename "${0}") SelectedPayStatements.pdf [Agency Name] |
OlderNewer