2024-10-07 17:01:52 +00:00
|
|
|
|
---
|
|
|
|
|
title: Contact
|
|
|
|
|
---
|
2023-11-14 08:19:24 +00:00
|
|
|
|
## Email
|
|
|
|
|
|
|
|
|
|
I have written my email in [BNF](http://en.wikipedia.org/wiki/Backus%E2%80%93Naur_Form):
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
my_email ::= user "@" domain
|
|
|
|
|
user ::= "reynir"
|
|
|
|
|
domain ::= subdomain "." TLD
|
|
|
|
|
subdomain ::= "reynir"
|
|
|
|
|
TLD ::= "dk"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
People say you shouldn’t put your email in plaintext on websites, because crawlers will find it and send you *SPAM* - and no one likes that!
|