Skip to content

Instantly share code, notes, and snippets.

View gernotstarke's full-sized avatar

Dr. Gernot Starke gernotstarke

View GitHub Profile
@gernotstarke
gernotstarke / Makefile
Created January 1, 2022 09:45
Makefile for authoring markdown with a (BibTeX-based) citation manager like Zotero
# For a description of this file, please see:
# https://www.innoq.com/en/blog/markdown-with-zotero-workflow
#------------------------------------------------------------
# what's the name of the generated output file(s)
OUTPUT=out
# what's the name of the markdown source file
SOURCE=principles-content.md
@gernotstarke
gernotstarke / find-changed-files-in-git.sh
Created October 22, 2015 16:25
find heavily changed files in git repository
git log --since="90 days ago" --pretty=format:"" --name-only | \
grep "[^\s]" | \
sort | uniq -c | \
sort -nr | head -10
### Keybase proof
I hereby claim:
* I am gernotstarke on github.
* I am gernotstarke (https://keybase.io/gernotstarke) on keybase.
* I have a public key whose fingerprint is CBFF C090 5C75 E28C 00EF 0893 AD66 24D8 37E5 D251
To claim this, I am signing this object:
@gernotstarke
gernotstarke / emacs-left-alt-as-meta
Created September 18, 2013 20:00
Emacs (Mac OS) configuration to use left-ALT as META. Put this line into .emacs or emacs.d/user.el
(setq ns-right-alternate-modifier nil)