💾 Archived View for gemini.bvnf.space › contact.gmi captured on 2021-12-04 at 18:04:22. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-11-30)
-=-=-=-=-=-=-
#!/bin/sh -e 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