Skip to content

Instantly share code, notes, and snippets.

View SpotlightKid's full-sized avatar

Christopher Arndt SpotlightKid

View GitHub Profile
@SpotlightKid
SpotlightKid / notes.md
Created February 17, 2021 19:42
Kurztipp: SF2 Soundfonts mit Polyphone nach SFZ konvertieren und in sfizz laden
@SpotlightKid
SpotlightKid / prequests.py
Created January 18, 2021 22:51
urequests.py from pfalcon/pycopy-lib fixed for current upstream micropython
import usocket
class Response:
def __init__(self, f):
self.raw = f
self.encoding = "utf-8"
self._cached = None
def close(self):
@SpotlightKid
SpotlightKid / joystick2midi.py
Last active April 11, 2024 13:10
Convert joystick axis position into MIDI Control Change value in-/decrements using pygame.joystick and python-rtmidi
#!/usr/bin/env python
"""Convert joystick axis position into MIDI Control Change value in-/decrements."""
import os
import sys
import pygame
from rtmidi.midiutil import open_midioutput
@SpotlightKid
SpotlightKid / lua.env
Last active October 27, 2020 15:08
Lua environment variables for multiple version support
# Lua dev
LUA_DIR="$HOME/share/lua"
LUA_CDIR="$HOME/lib/lua"
if which lua5.1 >/dev/null 2>&1; then
if which luarocks >/dev/null 2>&1; then
LUA_PATH_5_1="$(luarocks --lua-version 5.1 --local path --lr-path)"
LUA_CPATH_5_1="$(luarocks --lua-version 5.1 --local path --lr-cpath)"
fi
@SpotlightKid
SpotlightKid / stereocrossdelay.dsp
Last active October 23, 2020 15:44
A FAUST stereo delay with feedback and cross-mixing
declare name "StereoCrossDelay";
declare description "A stereo delay with feedback and cross-mixing";
declare author "Christopher Arndt";
declare license "MIT license";
import("stdfaust.lib");
MAX_DELAY = 2.0;
time_l = ba.sec2samp(hslider("[0]Delay Left[symbol: delay_l][unit: ms]", 250.0, 0, MAX_DELAY * 1000, 0.1) * 0.001 : si.smoo);
@SpotlightKid
SpotlightKid / PKGBUILD-kicad-packages3d-git.sh
Last active October 15, 2020 22:49
Updated PKGBUILD for kicad-packages3d-git
# Maintainer: Frederic Van Assche <[email protected]>
# Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de>
_pkgname=kicad-packages3d
pkgname="${_pkgname}-git"
pkgver=r2020.10.06.27d653ce
pkgrel=1
pkgdesc="KiCad component 3D model libraries from the official git repo"
arch=('any')
url="https://github.com/KiCad/kicad-packages3D"
@SpotlightKid
SpotlightKid / .gitignore
Last active October 8, 2020 16:58
Updated PKGBUILD for python2-lupa 1.9
pkg/
src/
lupa-*.tar.gz
python2-lupa-*.pkg.tar.xz
python2-lupa-*.pkg.tar.zst
@SpotlightKid
SpotlightKid / Makefile-cython-embed.make
Created October 7, 2020 20:43
Makefile for creating a standalone program via Cython from a *.py / *.pyx file
# Makefile for creating a standalone program via Cython from a *.py / *.pyx file
PYX ?= main.pyx
PROG ?= $(basename $(PYX))
PYTHON ?= python
PYVERSION = $(shell $(PYTHON) -c 'import sys;print("%d.%d" % sys.version_info[:2])')
PYMAJOR = $(shell $(PYTHON) -c 'import sys;print(sys.version_info[0])')
PYPREFIX = /usr
INCLUDES = -I$(PYPREFIX)/include/python$(PYVERSION)
@SpotlightKid
SpotlightKid / pitchdetect.py
Last active September 4, 2020 13:52
Detect pitch of audio files
"""Detect pitch of audio files.
Requires:
* [aubio](https://pypi.org/project/aubio/)
* [NumPy](https://pypi.org/project/numpy/)
"""
import statistics
@SpotlightKid
SpotlightKid / bash_aliases.sh
Last active December 19, 2024 16:41
Some handy bash aliases / functions I don't see elsewhere often
# configure some commands via env variables
# (usually located in another file)
# export EDITOR=micro
# export VISUAL=$EDITOR
# export XEDITOR="geany"
# export BROWSER=xdg-open
# To open any file type via app registered in desktop system
alias xo='xdg-open'