Skip to content

Instantly share code, notes, and snippets.

@jensklose
jensklose / gpg_filenames.md
Created February 17, 2022 21:06
How to find the matching filename to a secret key in GPG

GPG

List secret keys with matching filename ID

gpg -K --with-keygrip

Keybase proof

I hereby claim:

  • I am jensklose on github.
  • I am jensklose (https://keybase.io/jensklose) on keybase.
  • I have a public key ASCpfhOgMGPdF81GbK3vuWPejo1wXpp_qZ-86SZAZWVeKQo

To claim this, I am signing this object:

@jensklose
jensklose / host-init.sh
Last active August 16, 2019 00:24
Inital provision of an ubuntu 18.04 host with git and docker
#!/bin/bash
# This system should run ONLY:
#
# git - to handle version control for system files
# docker - to handle ALL services
#
apt-get update || exit 1
if [ -z "`which git`" ]; then
@jensklose
jensklose / hal.raml
Last active May 29, 2017 18:49
RAML 1.0 HAL type
#%RAML 1.0 Library
types:
# https://tools.ietf.org/html/draft-kelly-json-hal
LinkObject:
displayName: HAL Link Object
type: object
description: An object with link information
properties:
href: string