Skip to content

Instantly share code, notes, and snippets.

View Thann's full-sized avatar
✈️
Preserving my Freedom on Gitlab!

Jon Knapp Thann

✈️
Preserving my Freedom on Gitlab!
View GitHub Profile
@Thann
Thann / BPM.sh
Last active February 9, 2023 05:11
Beats per minute calculator for the command line.
#!/bin/sh
# Calculates Beats per Minute and confidence.
# Trigger function on ctrl+c
trap ctrl_c_handler INT
function ctrl_c_handler() {
echo -e "\n -> $index beats in $(echo "scale=2; $delta_sum /1"| bc) seconds. "
exit 0
}
@Thann
Thann / acunote-dark.css
Created February 19, 2014 23:31
userstyles
tr, #main {
background-color: #a7a7a7 !important;
}
a.issue_number_link {
color: black !important;
}
.task_properties,
.task_properties a {
color: #555;
}