Skip to content

Instantly share code, notes, and snippets.

View raabf's full-sized avatar
🇪🇺

Fabian Raab raabf

🇪🇺
View GitHub Profile
@raabf
raabf / keybase.md
Last active March 17, 2018 15:40
Prove and information about my keybase.io account

Keybase proof

I hereby claim:

  • I am raabf on github.
  • I am raabf (https://keybase.io/raabf) on keybase.
  • I have a public key ASA8pD5oz0BYHs9e9rqkR0UGaOiVaPIhn7MLyATVPYVxyQo

To claim this, I am signing this object:

@raabf
raabf / restart-gpg-agent.sh
Created January 7, 2017 16:03
restarts the gpg-agent. often necessary because it is so faulty program.
#!/bin/bash
# restarts the gpg-agent
# often necessary because it is so faulty program
killall gpg-agent || true
gpg-agent --daemon
@raabf
raabf / view-sshfp.sh
Created October 1, 2016 15:10
Views Fingerprints of your OpenSSH Server
#!/bin/bash
# Source: http://superuser.com/a/1030779/341696
# standard sshd config path
SSHD_CONFIG=/etc/ssh/sshd_config
# helper functions
function tablize {
awk '{printf("| %-7s | %-7s | %-47s |\n", $1, $2, $3)}'
}