Skip to content

Instantly share code, notes, and snippets.

@zeptofine
zeptofine / io.Victor-IX.Blender-Launcher-V2.yml
Last active January 6, 2026 02:10
BLV2 flatpak attempt
id: io.github.VictorIX.BlenderLauncherV2
sdk: org.kde.Sdk
runtime: org.kde.Platform
runtime-version: '6.10'
base: io.qt.PySide.BaseApp
base-version: '6.10'
command: BlenderLauncherV2
finish-args:
# X11 + XShm access
- --share=ipc
@zeptofine
zeptofine / video_shuffle.py
Created October 25, 2023 03:12
A shuffler script
import argparse
import random
import tempfile
from pathlib import Path
import ffmpeg
import numpy as np
from scipy.io.wavfile import read as wavread
from scipy.io.wavfile import write as wavwrite