Julian Rohrhuber
Julian Rohrhuber
> Perhaps an example would help me understand what you had on mind? briefly. ```supercollider resourceManagers { ^[UGenBufferResourceManager] } ``` should better be something like: ```supercollider hasBuffer { ^true }...
> This requires the synth def know all the server's resources, meaning ugen author's can't make their own server side resources. What I don't understand is why does the optimizer...
Thank you for the detailed explanation, this will remain very useful. Just one question for now: > As you can see, for even such a simple example the current approach...
One thing I am worried about – you are putting a lot of work into this! There is a trade-off between the runtime and build-time of SynthDefs: the optimisation of...
> If any one has any more code examples they'd like me to test, let me know and I'll add them here! A "hard" example with respect to synth def...
Yes, I think it is good to separate implementation and language level here. If we cross the boundary, this should be done in a special topic (which should be at...
thank you for the work! I hope my comments helped a bit.
@prko, and all, I'll be away from computers for a month, so don't wait for me, I'm fine with reading up on it later. Thanks!
you could add: ```supercollider b = (\one: 1, \two: 2); b[\one]; // this of course works a = ("one": 1, "two": 2); a["one"]; // doesn't work... c = ("one": 1,...
Yes, I agree this should be done.