Skip to content

Instantly share code, notes, and snippets.

View f-o's full-sized avatar
:octocat:

Fox f-o

:octocat:
  • Lolland
  • 05:37 (UTC +02:00)
View GitHub Profile
@f-o
f-o / Jigidi-Magic-Stripes.js
Last active December 31, 2024 20:07
Userscript to streamline Jigidi solving
// ==UserScript==
// @name Jigidi Magic Stripes
// @namespace me.danq.com.jigidi.magicstripes
// @match https://www.jigidi.com/solve/*
// @grant GM_getValue
// @grant GM_setValue
// @version 1.1
// @author Dan Q <https://danq.me>
// @description 23/03/2023, 14:32:30
// ==/UserScript==
@f-o
f-o / trim.sh
Created May 23, 2026 21:02
Simple bash script to help trim video files.
#!/usr/bin/env bash
# --- Flag parsing ---
SUBS=false
POSITIONAL=()
for arg in "$@"; do
case "$arg" in
--subs|-s) SUBS=true ;;
*) POSITIONAL+=("$arg") ;;