Skip to content

Instantly share code, notes, and snippets.

View sneak's full-sized avatar

Jeffrey Paul sneak

View GitHub Profile
{
allowUnsupportedSystem = true;
allowUnfree = true;
fonts = pkgs: with pkgs; {
enableFontDir = true;
fonts = [
ibm-plex
noto-fonts
noto-fonts-cjk
@sneak
sneak / local.cf
Created July 17, 2015 07:26
spamassassin config
# datavibe.net spamassassin local config as of 2015-07-17
# Add *****SPAM***** to the Subject header of spam e-mails
rewrite_header Subject *****SPAM*****
# Save spam messages as a message/rfc822 MIME attachment instead of
# modifying the original message (0: off, 2: use text/plain instead)
report_safe 1
add_header all RelaysUntrusted _RELAYSUNTRUSTED_
#!/bin/bash
set -x
RAWDISKS=$(
cd /dev/disk/by-id ;
ls -1 nvme-SAMSUNG* | grep -v part
)
FULLPATHS=""
@sneak
sneak / cleanup-mm.sh
Created December 8, 2022 13:14
mattermost message retention crontab
#!/bin/bash
CID="$(docker ps | grep srv-captain--mm-postgres | awk '{print $1}')"
CMD="
delete from posts where createat < extract(epoch from (now() - interval '1 months'))::int8 * 1000;
delete from reactions where postid not in (select id from posts);
delete from fileinfo where postid not in (select id from posts);
"
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>berlin.sneak.runit</string>
<key>ProgramArguments</key>
<array>
<string>/nix/store/z19ahyrb7fgzsmysxiz81q7q55m6sza2-runit-2.1.2/bin/runsvdir</string>
@sneak
sneak / webkittime.go
Created September 22, 2020 00:19
webkit time conversion
package main
import (
"fmt"
"time"
)
func main() {
//2020-09-21 22:49:02
const wk int64 = 13245202142853170
@sneak
sneak / grub.conf
Last active April 18, 2020 13:46
/boot/efi/EFI/grub/grub.conf
set timeout=1
set default=0
insmod part_gpt
insmod fat
insmod efi_gop
insmod efi_uga
insmod cryptodisk
insmod luks
insmod zfs
#!/bin/bash
dracut \
-v \
--no-compress \
--force \
--show-modules \
--kernel-cmdline "root=zfs:AUTO rootfstype=zfs" \
/boot/5.4.28-gentoo/initrd.dracut 5.4.28-gentoo-x86_64
@sneak
sneak / ntp.conf
Created January 11, 2020 21:25
ntpd stratum 1 timeserver config
driftfile /var/lib/ntp/ntp.drift
leapfile /usr/share/zoneinfo/leap-seconds.list
# Enable this if you want statistics to be logged.
statsdir /var/log/ntpstats/
statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable
# ifupdown has been replaced by netplan(5) on this system. See
# /etc/netplan for current configuration.
# To re-enable ifupdown on this system, you can run:
# sudo apt install ifupdown
#auto wlx801f02ee7727
#iface wlx801f02ee7727 inet dhcp
# wpa-ssid "eeqj.de"
# wpa-psk "REDACTED"