Skip to content

Instantly share code, notes, and snippets.

View itsfolf's full-sized avatar
💜
Pawgers

Folf itsfolf

💜
Pawgers
View GitHub Profile
@itsfolf
itsfolf / pronouns.sh
Created January 19, 2026 16:29
PoDNS bash
#!/bin/sh
# pronouns.sh - query pronouns over DNS
set -euo pipefail
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
@itsfolf
itsfolf / pronouns.nix
Created January 19, 2026 16:58
PoDNS Nix
# pronouns.nix - query pronouns over DNS
# usage: nix eval --raw --impure --expr 'import ./pronouns.nix { domain = "example.com"; }'
{
pkgs ? import <nixpkgs> { },
domain ? null,
}:
let
inherit (pkgs) lib;
inherit (lib) strings lists;