To get my contact details, do one of the following:

  • type this in to your terminal:

with host(1).
$ dig +short -t txt id.erikw.me | head -1 | tr -d \" | base64 -d | sed 's/<>/\\n/g'    

or

with dig(1). apt-get: dnsutils.
$ dig +short -t txt id.erikw.me | head -1 | tr -d \" | base64 -d | sed 's/<>/\\n/g'    

  • check the HTTP response headers for this web page in your browser and look for the X-Erikw-Email key, or with the following shell commands:

with curl(1). apt-get: curl.
$ curl -sIL erikw.me/contact | grep -i x-erikw | uniq    

with wget(1). apt-get: wget.
$ wget -q -S -O /dev/null erikw.me/contact 2>&1 | grep -i x-erikw | uniq    

  • scan this QR code QR Code