Skip to content

Instantly share code, notes, and snippets.

@crra
crra / mydealz_links.js
Created December 30, 2020 15:17
[greasemonkey, bookmarklet] links from mydealz.de if defined in the link title without redirect over their affiliate service
@crra
crra / hook.sh
Created November 3, 2020 15:52
Git-hook implemented as bash-script that adds a string to message based on the filetype
#!/usr/bin/env bash
# Simple git hook that appends/prepends a commit message with a tag
set -o errexit
set -o errtrace
set -o nounset
set -o pipefail
declare -r tag="#docu"
declare -r filefilter="\.(html|adoc)$"