Skip to content

Instantly share code, notes, and snippets.

@mjones129
mjones129 / instructions.md
Created December 30, 2023 15:22 — forked from matthewjberger/instructions.md
Install a nerd font on ubuntu

1.) Download a Nerd Font

2.) Unzip and copy to ~/.fonts

3.) Run the command fc-cache -fv to manually rebuild the font cache

@mjones129
mjones129 / killsnaps.sh
Created December 13, 2023 22:15
Remove old versions of snaps
#!/bin/bash
# Removes old revisions of snaps
# CLOSE ALL SNAPS BEFORE RUNNING THIS
set -eu
LANG=C snap list --all | awk '/disabled/{print $1, $3}' |
while read snapname revision; do
snap remove "$snapname" --revision="$revision"
done
@mjones129
mjones129 / CaptureScroll.js
Created February 9, 2020 08:25
capture how much a user has scrolled
//converts scroll data to +1 or -1 and prints to the console
window.addEventListener("wheel", event => {
const delta = Math.sign(event.deltaY);
console.info(delta);
});