Please share the extensions/Quarks you consider essential in your workflow

No specific use-case, just interested to hear what’s used regularly.

I’ve only ever used the core library as I’m pretty conservative about installing stuff on my system. Also I tend to route midi/audio to my DAW and use plugins for compression/eq/send effects.

But I’ve set a personal challenge of no DAW / VST / Hardware for the month as a way to force myself to dig deeper into SC.

Keen to hear what’s already out there before entering genius mode and making a buggy version of something that already exists.

As an aside to this question, are there any core library uGens you tend to avoid?

Thanks!

It’s my own quark, but I’d say: ddwMixerChannel. If I had to handle signal routing from scratch on every project, I might have quit SuperCollider by now.

hjh

2 Likes

Thanks @jamshark70. Sounds great, I’ll be checking that out as it was one of my primary issues to sort along with an efficient way to setup and manage control buses.

I find wslib really useful - especially SimpleMIDIFile for dealing with MIDI files, various String extensions, and ScaledUserView.
One issue is that the help files are in html, which used to be the SC help file format in the past. Nevertheless you can easily open them in a web browser.

Best,
Paul

4 Likes

I also use wslib a lot. Probably more often than i’m aware of. Right now i solved a string formatting issue with the replaceAt extension for example and realized it’s part of wslib. Many of these extensions should be part of the stock SC library in my opinion. Like SimpleMIDIFile.
Another important Quark for my workflow is Ambisonics Toolkit that i use quite frequently, waiting eagerly for higher-order support.

2 Likes

Thanks @TXMod & @emp. I’ve had a quick look at both and looks like a lot of utility there.
I’ve never looked into the subject of ambisonics, but the docs for the quark look fantastic. Thanks.

Whenever I hit some lack of some functionality, I try to create something myself. In that sense they are all essential to my workflow.

The next ones are more or less abandoned at the moment, but may become active again in the future:

  • TemporalDict (https://github.com/shimpe/temporaldict) to track evolution of key-value pairs over time and easily go back to the previous state at a certain time (I seem to remember it was in a working state)
  • Sfz (https://github.com/shimpe/sfz) the beginnings of an sfz sound font reader (I remember it could play notes already and supported microtonality but there was quite some work left - I also remember being surprised at the number of different ways an sfz soundfont can be organized and the large number of syntax differences between individual fonts which makes parsing the fonts painful)
3 Likes

Hi @shiihs, thank you! will check them out.

I can only still hear today because of SafetyNet.

4 Likes

oh wow! Thanks @Sam_Pluta . I wish I knew of this sooner. In SuperCollider, my ‘creative’ synthesis techniques are sometimes super-dangerous.

my current SuperCollider to Cubase template has all faders at -6 with a safety limiter on the master, but something on the SC side is still absolutely essential imo.

Okay, my absolutely-required list - I don’t know that I would be able to do much of anything in SC without these:

  • ServerOptionsGui (wonderful enhancements like - choosing your audio driver from a list! - this should really be rolled into the core…)
  • ATK (even when I’m just doing stereo, I usually pan in b-format -> uhj, so I’ve got ATK in nearly everything)
  • miSCellaneous_lib

I tend to create Quarks for my own core workflows as well - of those, the ones I really really couldn’t live without:

3 Likes

Modality - for controllers

1 Like

ATK

CTK

JoshMisc

wslib

MathLib

NetLib

… others less essential

I originally learned SC in CTK-centric way, and today I’m still using CTK in most projects. I also tend to use ProcMod from JoshMisc as a wrapper for Task to easily control musical sections.

I use Ambisonics in most pieces, ATK is great.

wslib, MathLib - useful for various little things (and MIDI file support)

NetLib - I think I only ever use NetAddr.myIP :slight_smile:

As for “dependencies are a hassle” - yes, they are, and users should be aware of the risk. But there are practical limits to what you can develop yourself :slight_smile:

mp

2 Likes

Present list of “must haves”: TabbedView2 until I muster time to write an enhanced EnvirGui. For some previous stuff I used the RoundSlider (?) from wslib; what is nice with that one that you can have text on the slider cursor, which for long sliders is helpful because you don’t have to move your eyes a lot to read the precise value. But for a more compact gui, it’s not that big of deal not having it.

I generally have miSC lib, wslib, and the JIT lib extensions quarks installed, but I’ve only dabbled with stuff they provide, not used them “for real” before finding that what I wanted (e.g. presets merging in the JIT lib quark) were better handled by some of my custom code. Also on the dabbled-with list: PresetInterpolator from mmExtensions; found the actual presets it supports to be too OSC-centric. Likewise, I’ve used some PSx patterns, but it turned out that due to the way the interact with the JITlib guis, you can use a Plazy wrapper for the standard Patterns most of the time with the same effect. Another example: VarGui (from miSC) has nicer visuals and grouping, but its initialization behavior was quite annoying to me. (I’ve dabbled even less with crucial lib or ddw stuff, although I’m still hoping to experiment with BP etc. at some point.)

So my usual “boom-bust” excitement cycle with some extension is that I find out that it’s not quite doing what I wanted after a (fairly short) while… (Sometimes coding the “right replacement thing” is rather time-consuming, so I hang onto some sub-optimal way of doing things because of that.)

1 Like

thank you for the heads up on these @scztt @madskjeldgaard @MarcinP @RFluff , looking into them now.

ServerOptionsGui is an instant essential for me.

I’ve had my eye on miSCellaneous_lib for a while now, and looking forward to reading through the fantastic documentation it comes with.

@scztt I tried installing ServerView and it, or one of it’s dependencies caused errors that meant I was no longer able to boot the server. Possibly something is running a bash script and not getting what it’s expecting from my system - could be a red herring tho. (happy to send you a more useful bug report if you’re interested)

yes absolutely. I’d much rather work on creative things or contribute to something that already exists.

Please do! I it’s probably related to the IconSet quark, a dependency of ServerView, and one that I just added a slightly non-standard installation mechanism for.