Title: Disable yubikey autotyping
Date: 2020-11-15 14:10

I recently got a couple of [yubikeys](https://yubi.co/) because the world
is a scary place. Unfortunately, as soon as I touched one of them, it autotyped
a 45 chars random-looking string, which was *super-annoying*. Apparently, it's
a feature, and it's used for [OTP](https://developers.yubico.com/OTP/).
Since I don't use OTP, nor am happy with having random characters typed
everywhere, here is how to fix this behaviour:

```bash
$ sudo apt install -y yubikey-manager
$ ykman otp delete 1
Do you really want to delete the configuration of slot 1? [y/N]: y
Deleting the configuration of slot 1...
$
```
