A #SuperCollider package for midi controllers. Use this to connect any midi controller to Supercollider and control stuff. It has midi learn, an automatic gui, mappings you can save/load from disk, etc.

A #SuperCollider package for midi controllers. Use this to connect any midi controller to Supercollider and control stuff. It has midi learn, an automatic gui, mappings you can save/load from disk, etc.
#Helsinki people: reminder that Object Permanence, the #Algorave Helsinki festival, is happening next week!
we start on friday 16.5. with a free workshop on #SuperCollider and #Strudel. you can still sign up!
and on 17.5. we have nine live sets!
Here we go: a short #SuperCollider #liveStream, this time trying out Peertube!
https://davbot.media/w/ave94ZLeG9Qkvef1BEBskL
My HarmonicToolkit package for #supercollider now supports chord progressions so you can easily turn a string like "I V vi IV" into a series of chords (or arpeggiated chords).
https://scsynth.org/t/new-package-harmonic-toolkit-for-supercollider/11613/16?u=madskjeldgaard
I've published a new #supercollider package for harmonic hacking.
Use it to easily turn a melody into a series of chords, or some chords into arpeggios. Or both. Or other kinds of harmonic shenanigans.
It makes it a lot simpler to work with chords, harmonies and arpeggios. It makes it so much simpler and easier to think harmonically in SC.
#supercollider #ambient #harmony #generativemusic #experimentalmusic
You can buy the full 12 hours of Empty Cloud right now with a 25% discount code: empty25
Share with your friends or colleagues or enemies.
if you are at #eh22 #easterhegg2025 and would like to talk about #SuperCollider, hit me up.
(Also generally, you can talk to me. Unless I'm hiding in the quiet area.)
I hear it's #FairTradeMusicFriday!
Here's my music. First, the_emergent is my project for everything #experimental & #ambient and the stuff I make with #SuperCollider:
https://mirlo.space/the-emergent
https://emergent.bandcamp.com
roots & engines is my place for #EBM-ish #electronic beats & sounds: https://mirlo.space/roots-and-engines
https://rootsandengines.bandcamp.com
Here's a little ambient livecoding for you: https://davbot.media/w/5yvBXkbWiJLPmXRoCnXAJM
#SuperCollider #livecoding #ambient
I released a piece of cat-inspired noise: https://mirlo.space/the-emergent/release/ch
Sketch for a kinetic sound sculpture made @soundartlab_dk using found materials around Struer: A bin (cut up and used as an arm), sheets of rock found at the local beach, scrap metals and a cymbal.
Thanks to Sound Art Lab.
Omg! Want want want. But I am broke…
#arc #monomearc #monome #osc #controller #interactiondesign #ui #ux #supercollider #maxmsp #puredata @llllllll
@fileneed @TodePond the event consisted of 1) a from-scratch session at the beggining and there were 5 entries (one was a pair programming in hydra by two femme looking persons, then @blazp, myself, both on #SuperCollider impro, oskar on hydra, and simon ('new face' from #strudel workshops (by msn gf) who did realy improessive job in strudel). then "intervention" by fileneed with nudel. after that 2) a debut performance by a local band (guitars, drums, vocal, synth), and then 3) strudel performance by "msn gf" (wow), and mine, and then blaž's, all of us about 30-45 minutes.
here are some photos and videos: https://hactar.tmp.si/s/Efm9MGe5AmXpZx5 (please don't distribute)
4 out of 4 tracks for my OS9 EP are done
O, hi, we wrote a new blog post!
If you want to turn a Raspberry Pi or Linux computer into a music instrument or an installation piece, then you need to consider how to start your software when power is turned on. This is surprisingly hard, but we've made it a bit easier with a small guide with tips and tricks and an example of booting directly into a #SuperCollider program once powered on.
#linux #raspberrypi #musicproduction #supercollider #puredata
12 HOURS OF RADIO
The Lake Radio is playing all 12 hours of Empty Lake today (Thursday the 6th of March) from 12:00AM CET.
TUNE IN: https://thelakeradio.com/
Thanks to Sound Art Lab and Koda Kultur.
Now on StackOverflow: https://stackoverflow.com/questions/79484276/supercollider-inheritance
help!
#SuperCollider
What the fuck, #SuperCollider???
....
root = MooRoot(this, "Jason");
....
*new { |moo, name|
"MooRoot.new".postln;
name.postln;
^super.new.init(moo, name);
}
init {|moo, name|
"MooRoot init".postln;
name.postln;
....
MooRoot.new
Jason
MooRoot init
nil
---
How did "Jason" get nilled out between *new and init?????