The best way to get in touch with me is by email, at
[email protected]
.
My public key is available here, if you like.
If, like me, you forget how to use gpg
…
# import my public key
gpg --import ./web/public.key
# encrypt a message that only I can read (identify my key in the prompt)
gpg --encrypt your_message.txt
# create a key-pair for yourself (follow defaults)
gpg --generate-key
# export the public key into a file, to share with others
gpg --export -a "your public key name" > my_public.key