💾 Archived View for bvnf.space › contact.gmi captured on 2023-04-26 at 12:51:25. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-03-01)
-=-=-=-=-=-=-
#!/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