Rado Buranský
Rado Buranský
I'd love to have an option to model physical disintegration of tape. https://en.wikipedia.org/wiki/Sticky-shed_syndrome Motivation: https://en.wikipedia.org/wiki/The_Disintegration_Loops Do you already have an idea what and where in the code would have to...
https://github.com/scylladb/java-driver/blob/b3f3ebaf161b21e5c4840ec294595d4e4b39d9bf/driver-core/src/main/java/com/datastax/driver/core/TokenRange.java#L293 I would expect that if I merge ]A,B] with ]A,C] where C>B then I get ]A,C] and not the full ring.
https://github.com/libsndfile/libsndfile/blob/c81375f070f3c6764969a738eacded64f53a076e/cmake/CMakeAutoGen.cmake#L4 `CMAKE_MODULE_PATH` is a list of directories, not a single path.(https://cmake.org/cmake/help/latest/variable/CMAKE_MODULE_PATH.html). This leads to error like this: `CMake Error: Not a file: .../cmake/modules;.../libsndfile/cmake/CMakeAutoGenScript.cmake`
Current version `0.9.0` of the library produces JAR file which contains `com.typesafe.config`, `com.google.*` which causes runtime issues for the consumers of this library due to classpath conflicts. Please relocate/shade/rename these...
In case of variable `src_ratio` the caller must provide more (at least 2?) input samples otherwise `ratio` stays the same. I think the reason is linear interpolation on this line:...