bolha.us is one of the many independent Mastodon servers you can use to participate in the fediverse.
We're a Brazilian IT Community. We love IT/DevOps/Cloud, but we also love to talk about life, the universe, and more. | Nós somos uma comunidade de TI Brasileira, gostamos de Dev/DevOps/Cloud e mais!

Server stats:

250
active users

#supercollider

2 posts2 participants0 posts today

had some rough time with #SuperCollider on my laptop.. was coding and trying stuff and horrible noise almost killed my ears (I'm good).. restarted, rebooted, tried again, and randomly the noise cam back startling me every time!

at the end i found the culprit: cutoff freq for low pass filter.. if it goes very much over 20k it starts screaming af! (i was at 40k).

Replied in thread

@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)

Hactar Cloud2025-03-21_zivopisana_glasbaHactar Cloud - powered by Nextcloud

Oh, hey there was a #SuperCollider Symposium last fucking week and I'm so out of the bloody loop, I never even heard about it.

It was about the future of SuperCollider.

And based in the US, so there's no fucking way I would have gone, omg. If that's the future of SC, then all it has left is past.

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

hyaline.systems/blog/linux-aud

hyaline.systemsLinux tutorial: Starting an audio program after bootTurn any computer or Raspberry Pi into a dedicated audio device, music instrument or installation, with everything audio related automatically and correctly started every time the device turns on.

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?????