TheSlowGrowth

Results 25 comments of TheSlowGrowth

After some digging through the code, I fould out that you can inject custom middlewares into the http server like this: `karma.config.js`: ```javascript function CrossOriginIsolationMiddlewareFactory(config) { return function crossOriginIsolation(req, res,...

It could be worth checking out the topology preserving transform (TPT) version of the SVF: https://www.native-instruments.com/fileadmin/ni_media/downloads/pdf/VAFilterDesign_2.1.0.pdf Pages 110 and following. From my experience the TPT version it doesn't have any...

Would you feel comfortable writing a little unit test for this? I think the ADSR class could really benefit from that.

Im not suggesting to add a dependency on JUCE. Rather I'd use the jassert macro from JUCE as an inspiration for our own implementation. JUCE has a lot of the...

> Perhaps a negative frequency value or something? That's a good point. Please make sure that you are properly clamping the parameters to their legal ranges. If you haven't done...

I found this line of code in the clouds port: // TODO // Why doesn't dry audio get reverbed? The reason is that this is a feature of the parasites...

According to [this FAQ entry](https://www.gnu.org/licenses/gpl-faq.html#CanIUseGPLToolsForNF) the GPL only covers the tools themselves and their source code, not the content/files/programs you generate using those tools. The CMake file that is generated...

> Are you thinking that this would be a layer on top of fatfs Yes definitely. For the production code, fatfs functions would be wrapped into the `FileIoLayer` (or whatever...

This may already be fixed with #472

And at some point, we add support for *.c++ files endings? Hmmm... Wouldn't it make sense to specify the file ending directly in the CPP_SOURCES list instead?