View feedinfo.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""Examine an RSS feed retrieved from given URL.""" | |
import sys | |
from xml.dom.minidom import parseString as parse_xml | |
import feedparser | |
import requests | |
View waveformqt.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""Display waveform of an audio file.""" | |
import argparse | |
import logging | |
import sys | |
from statistics import fmean | |
from PyQt6 import QtCore, QtGui, QtWidgets | |
from PyQt6.QtCore import Qt |
View cchorus.dsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare name "CChorus"; | |
declare version "0.5"; | |
declare author "Christopher Arndt"; | |
declare license "MIT License"; | |
declare description "Versatile stereo chorus effect"; | |
import("stdfaust.lib"); | |
PI = ma.PI; | |
TWOPI = 2.0 * ma.PI; |
View CHANGES
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Updated description | |
- Updated URL | |
- Uppercase name in desktop file | |
- Install binary as "Pianoteq 8" and make a link to "pianoteq8" | |
- Link VST2 plugin shared lib to LV2 one, they are the same | |
- Support arm 32/64 bit | |
- Cleaned up unnecessary complicated install commands | |
- Use SHA256 hash sums (shorter and sufficiently secure) | |
- Removed obsolete makedepends | |
- Added soname depends |
View pthreads_cython.pyx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cython: language_level=3, boundscheck=False | |
from cython.operator cimport dereference | |
from libc.stdio cimport printf | |
from posix.unistd cimport usleep | |
cdef extern from "pthread.h" nogil: | |
ctypedef int pthread_t | |
ctypedef struct pthread_attr_t: | |
pass |
View pico_setup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# pico_setup.sh - Set up a development environment for the Raspberry Pi Pico | |
# | |
# See the "Getting started with Raspberry Pi Pico" guide for reference: | |
# | |
# https://www.raspberrypi.com/documentation/microcontrollers/c_sdk.html | |
# | |
# The script will: | |
# |
View PKGBUILD-uhhyou.lv2-git.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Milkii Brewster <milkii on Freenode IRC> | |
# Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de> | |
_pkgname=uhhyou.lv2 | |
pkgname=$_pkgname-git | |
pkgdesc='Various synth, effect and CV LV2 plugins (git version)' | |
pkgver=r508.e5eee4c | |
pkgrel=1 | |
arch=(x86_64) | |
url='https://github.com/ryukau/LV2Plugins' |
View .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcm-linux_*.tar.gz | |
pkg/ | |
src/ | |
*.pkg.tar.* | |
*.src.tar.* |
View midi_send_all.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import logging | |
import sys | |
import time | |
from rtmidi.midiutil import open_midioutput | |
from rtmidi.midiconstants import * | |
log = logging.getLogger("midi-send-all") |
View parse_srcinfo.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import json | |
import sys | |
from subprocess import CalledProcessError, run | |
ARRAY_FIELDS = ( | |
"arch", | |
"arch", | |
"b2sums", |
NewerOlder