Skip to content

Instantly share code, notes, and snippets.

@Maximilan4
Maximilan4 / go.mod
Created March 10, 2025 09:51
Reloadable go app with tableflip and systemd notifications
module tft
go 1.23
require (
github.com/cloudflare/tableflip v1.2.3 // indirect
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect
)
@Maximilan4
Maximilan4 / main.go
Created February 15, 2022 14:06
rot13 implementation
package main
import (
"io"
"os"
"strings"
)
type rot13Reader struct {
r io.Reader