Skip to content

Instantly share code, notes, and snippets.

@meliache
meliache / keybase.md
Created November 28, 2019 11:49
keybase.md

Keybase proof

I hereby claim:

  • I am meliache on github.
  • I am elimik (https://keybase.io/elimik) on keybase.
  • I have a public key whose fingerprint is 5469 08C7 8238 3AD0 E7D8 94EC 1B8F 95C8 125D CE31

To claim this, I am signing this object:

@meliache
meliache / openpgp.md
Last active March 17, 2021 15:10
Keyoxide PGP proof of identity
@meliache
meliache / texdoc.el
Last active February 3, 2023 19:23
# LaTeX package documentation via `texdoc` with `completing-read` support
(defun my-get-texlive-package-list ()
(let ((tlpdb-fpath (file-name-concat
(string-trim-right
(shell-command-to-string "kpsewhich -var-value TEXMFROOT"))
"tlpkg/texlive.tlpdb"))
(name-regex "^name \\([^ \n.]+\\)$"))
(with-current-buffer (find-file-noselect tlpdb-fpath 'nowarn 'rawfile)
(save-excursion
(goto-char (point-min))
(cl-loop