Skip to content

Instantly share code, notes, and snippets.

View fabiofidanza's full-sized avatar

fabiofidanza

View GitHub Profile
@fabiofidanza
fabiofidanza / zzimia.js
Last active December 11, 2023 16:26
ZziMia™ — Hide your events title from your Google Calendar when you have to share your availability with other folks
let link = document.createElement('link');
link.href = "https://fonts.googleapis.com/css2?family=Redacted+Script:wght@700&display=swap";
link.rel="stylesheet";
document.body.appendChild(link);
document.querySelectorAll('*[data-eventchip]').forEach( (e) => {
e.style.fontFamily = "Redacted Script";
e.style.fontWeight = "700";
@fabiofidanza
fabiofidanza / convertera.sh
Created March 20, 2024 17:23
Convert all wavs in a folder to mp3 + ogg
for f in *.wav; do ffmpeg -i "$f" -c:a libmp3lame -q:a 2 "${f/%wav/mp3}" -c:a libvorbis -q:a 4 "${f/%wav/ogg}"; done
@fabiofidanza
fabiofidanza / reverse-table-rows.css
Created April 3, 2024 20:13
Reverse table rows order
table {
transform: scaleY(-1);
}
tr {
transform: scaleY(-1);
}