Blog: 2026-05-16: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

16 May 2026

  • curprev 22:5722:57, 16 May 2026Razzi talk contribs 454 bytes +454 Created page with "<pre> function display_bpm set -U beats (gdate +%s.%3N) $beats[1..3] if test (count $beats) -lt 4 return end set diffs \ (math $beats[1] - $beats[2]) \ (math $beats[2] - $beats[3]) \ (math $beats[3] - $beats[4]) set avg (math "($diffs[1] + $diffs[2] + $diffs[3]) / 3") set bps (math 1 / $avg) set bpm (math "$bps * 60") if test $bpm -gt 55 printf "%.0f " $bpm end end </pre>"