Results 802 comments of Julian Rohrhuber

This is now almost fixed … just adding/removing parentheses leaks a little: ```supercollider t = Steno.push(2); t.filter(\f, { |in, e| BPF.ar(in, 600 * (e[\index] + 1), 0.01) * 8 });...

The coloring in the post window is currently quite inconsistent. So we need to fix that first. When you post something that has several lines, it will highlight the first...

Yes, I can reproduce this. Must be an initialisation bug indeed.

A multichannel lag value is not supported. Effectively, this is what happens: ```supercollider // nothing is scheduled ( var latency = 1!3; thisThread.clock.sched(latency, { "hello".postln }); ) // and this...

yes, there we have implemented the multichannel expansion. Would be nice to have for midi as well in the future.

hm, ok, that's also a possibility.

I do think they should use `Function:play`. It is clear and in many situations very adequate. I'd just find it more adequate if it were not fading in ;). But...

- uniformity in the UGen system - easy comparison between any number of slightly differen systems ``` ( Fb1_ODEdef(\exp_decay_2, { arg t, y, mod, dampen = 1; [ y[0].neg *...

> As written in my post, it **is** already the case that you can write it in one line, see the version below ! Ah now I understand, that is...

Yes, of course, you can also always do a collect on the set of arguments if a UGen doesn't expand. It is mainly a uniformity argument. > It sounds indeed...