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
FROM alpine:3.14.2 | |
LABEL maintainer="Mathias Fredriksson <[email protected]>" | |
RUN apk add --no-cache \ | |
bzip2 \ | |
ca-certificates | |
ARG RESTIC_VERSION='0.12.1' | |
RUN wget -O - https://github.com/restic/restic/releases/download/v${RESTIC_VERSION}/restic_${RESTIC_VERSION}_linux_amd64.bz2 \ | |
| bzip2 -d >/usr/local/bin/restic \ |
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
# /etc/cron.d/samba-timemachine-zfs-snapshot | |
# Create snapshots after completed Time Machine backups. | |
# Runs every two minutes to allow creating backups only after cleanup is | |
# completed. | |
*/2 * * * * root /usr/local/bin/timemachine-zfs-snapshot.sh rpool/share/timemachine |
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
# This is a custom tabulation command implemented fully in zsh that | |
# produces simple output suitable for zsh-histdb. | |
# | |
# The `column` command on macOS has a silly limitation max 2048 line | |
# length, it's unsuitable for tabulating long paths and commands. It | |
# also produces somewhat unexpected results with regards to column | |
# length and placement. | |
# | |
# Features: | |
# - Right indent for number columns |
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
# This setup works pretty well for OPL with a network link that travels through | |
# two UniFi switches and connects to a Samba server running inside Docker. The | |
# host OS is Debian with a ZFS filesystem and the container OS is also Debian. | |
# Latest Samba (4.11+). | |
[global] | |
# ====================== | |
# General Samba settings | |
# ====================== | |
log level = 1 |
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
#!/usr/bin/env expect -f | |
# Description: Expect script to automate WireGuard upgrade on UniFi Security Gateway | |
# Author: Mathias Fredriksson <[email protected]> | |
# This script assumes non-interactive ssh login. | |
# Usage upgrade.expect <[user@]usg> <https://github.com/Lochnair/vyatta-wireguard/releases/download/${RELEASE}/wireguard-${BOARD}-${RELEASE}.deb> | |
set timeout 60 |
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
#!/usr/bin/env zsh | |
# gpg-yubikey-sign | |
# | |
# This script lets you use any of your unexpired subkeys connected to | |
# your public key (0xDEADBEEFCAFEBAAD) to sign git commits. It will also | |
# display "Waiting for YubiKey touch..." to remind you that an action is | |
# required. | |
# | |
# Add this script to your PATH and configure git to use it for gpg | |
# signing. |
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
// This example gives permission to access geolocation | |
// and fetches the current position via JavaScript. | |
// Tested on: cdp v0.18.7 and Chrome Canary 70.0.3532.0, | |
// and seems to work in both headless and headfull mode. | |
package main | |
import ( | |
"context" | |
"fmt" | |
"log" |
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
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"net/http" | |
"time" | |
"github.com/mafredri/cdp" |
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
javascript:(function(){window.location='https://translate.google.com/translate?sl=auto&tl=en&js=y&prev=_t&hl=en&ie=UTF-8&edit-text=&u='+encodeURIComponent(window.location.href)})();void(0); |
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
# Creates remarkable_backup-(date).tar.gz with todays date, backs up /home/root. | |
( | |
ssh [email protected] 'tar cf - .' \ | |
| gzip >remarkable_backup-$(date '+%Y-%m-%d').tar.gz | |
) 2 >err.log | |
cat err.log |
NewerOlder