Skip to content

Instantly share code, notes, and snippets.

View capital-G's full-sized avatar

Dennis Scheiba capital-G

View GitHub Profile
@capital-G
capital-G / analyze_log.py
Created September 7, 2024 23:02
Analyze runtime of SuperCollider test CI
import re
import sys
import pandas as pd
# please insert a *recent* "View raw logs" URL of a macOS/linux test run here
# as the url is only valid within a timeframe, the URL needs to have been generated recently
#
# paste the URL into here or pass it as an argument
LOG_URL = ""
@capital-G
capital-G / autoKr.scd
Created February 14, 2022 16:06
SC: Automatic transformation of arguments to NamedControls
q = q?();
q[\autoKr] = {|ugen, prefix=nil, rate=\ar, args=nil, specs=nil|
var argumentList = [];
var defaultArgs = ();
var method;
// TODO specs are not working? :/
args = args?();
specs = specs?();