Skip to content

Instantly share code, notes, and snippets.

View tonigtg's full-sized avatar

TD GTG tonigtg

View GitHub Profile
@tonigtg
tonigtg / k8s-lab.md
Created January 8, 2026 04:05
K8S labs
Aspect Current (Tunnel) Native via Tailscale Resilient Native Tunnel Optimized
Tailscale Down Impact None High Medium None
Performance Medium High High Medium
Multi-node Ready Yes Yes (via TS) Yes Yes
External Access Yes Yes Yes Yes
Complexity Low Medium Medium Low
MTU 1230 1280 1280 1230
@tonigtg
tonigtg / datatype_util.go
Created November 7, 2023 08:46
JsonList Generic in golang
package datatype_util
import (
"encoding/json"
"errors"
)
// JsonList represents a JSON-encoded list in a string format.
// It uses a generic type T to allow for any type supported by json.Unmarshal.
type JsonList[T any] string