Skip to content

Instantly share code, notes, and snippets.

View norns_clone_all_community.py
import requests
import subprocess
community_url = "https://raw.githubusercontent.com/monome/norns-community/main/community.json"
def clone_all(url, location):
res = requests.get(url)
cat = res.json()
for entry in cat['entries']:
proj_url = entry['project_url']
View SC2-examples_1.scd
//////////////////////////////////////////////////////////////////////////
(
// analog bubbles
{
f = LFSaw.kr(0.4, 0, 24, LFSaw.kr([8,7.23], 0, 3, 80)).midicps; // glissando function
CombN.ar(SinOsc.ar(f, 0, 0.04), 0.2, 0.2, 4) // echoing sine wave
}.play)
//////////////////////////////////////////////////////////////////////////