💾 Archived View for gemini.bvnf.space › contact.gmi captured on 2024-05-10 at 10:23:42. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-01-08)
-=-=-=-=-=-=-
#!/bin/sh -e PRONOUNS="they/them" PROTOCOL="${1:-email}" me="ben@bvnf.space" case "$PROTOCOL" in email) echo "$me" ;; xmpp) echo "$me" ;; finger) echo "$me" ;; irc) echo "phoebos" ;; *) echo "usage: $0 protocol" >&2 ;; esac