This file contains hidden or 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
''' | |
2021-09-05 | |
Outputs a CSV file with the counts of plugins in VCV Rack patch files. | |
''' | |
import os | |
import json | |
import csv | |
def get_list_of_vcv_rack_patches(patches_directory): |
This file contains hidden or 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
--- maps: S2E4 dynamic mutation | |
-- just friends emulator in ASL | |
function init() | |
output[1](oscillate( dyn{freq=800}:mul(0.8) + 120, dyn{lev=5}:mul(0.98))) | |
end | |
HLUT = {1,2,3,4} -- list of harmonics to 'Intone' toward | |
-- v (0..1): 0 == all at f, 1 == all at HLUT multiples of f. | |
function intone(f, v) |
This file contains hidden or 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
--- bouncy | |
-- tiny demo of ASL's dyn, generating a stream of bass notes from crow | |
-- little sequins of frequencies | |
PIT = sequins{ 110 | |
, 110*1.5 | |
, 110*1.25 | |
, 110*1.666 | |
, 110*1.333 | |
} |
This file contains hidden or 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
git diff -p \ | |
| grep -E '^(diff|old mode|new mode)' \ | |
| sed -e 's/^old/NEW/;s/^new/old/;s/^NEW/new/' \ | |
| git apply |