ritschwumm
ritschwumm
i'm afraid this won't be fixed, capsule at least in this repo is pretty much dead.
the CPSed reader sounds interesting, do you know where i could find a description of this technique?
sounds like a rounding issue to me - i'd guess if https://github.com/JorenSix/TarsosDSP/blob/master/src/core/be/tarsos/dsp/io/TarsosDSPAudioFloatConverter.java#L400 and https://github.com/JorenSix/TarsosDSP/blob/master/src/core/be/tarsos/dsp/io/TarsosDSPAudioFloatConverter.java#L411 used a conversion factor of 32768 instead of 32767, this would work as expected
if you ask me, using a conversion factor of 32767 is problematic anyway: 16 bit signed can represent values within [-32768,+32767], and i'd expect audio signals represented as a floating...
@johnynek well, all this _is_ about parsing a (slightly fancy) json string into a data structure, isn't it? @michel-steuwer i think the "slightly fancy" will be a problem here: what...
i have code for this lying around somewhere. way too soon afterwards though, code like this began annoying me: ```scala import tags._ val x = div() x.id = "foo" x.className...
that could easily be done with a simple type class
do we need a typeclass for "this is a monad, but it's the one for the wrong applicative "? probably a very stupid idea...
i don't think that should be necessary
btw, weak refs can lead to interesting problems when your dependency graph changes often and the garbage collector does not remove obsolete nodes fast enough so they keep calculating useless...