Daniel Wolf
Daniel Wolf
Consider the following parameterized test for a trivial function `square`: ```rust fn square(i: i32) -> i32 { i * i } #[rstest] #[case::negative_value(-5, 25)] #[case::zero(0, 0)] #[case::positive_value(3, 9)] #[case::large_value(10000, 100000000)]...
Several Coqui documents (such as the [deployment docs](https://stt.readthedocs.io/en/latest/DEPLOYMENT.html) and the latest [release notes](https://github.com/coqui-ai/STT/releases/tag/v1.4.0)) reference a "model zoo" living at https://coqui.ai/models. However, this page seems to be gone. Has it moved?
Hi! I've been using QueryJS for some weeks now, and I really like how you combine the LINQ philosophy with JavaScript conventions and iterables. QueryJS looks rather mature to me....
I believe that `stringify-object` doesn't correctly escape special characters in strings. Consider the following program: ```js const stringifyObject = require('stringify-object'); const s = 'tab: \t newline: \n backslash: \\'; console.log(JSON.stringify(s));...
I'm confused about the Git repositories of eSpeak NG. There's [rhdunn/espeak](https://github.com/rhdunn/espeak) and there's [espeak-ng/espeak-ng](https://github.com/espeak-ng/espeak-ng). * Both repos appear to be maintained; both seem to have very similar code. * Both...
Consider the following code: ```ts const error = new CancellationError(null); const s = String(error); ``` * Expected result: "CancellationError: Operation cancelled [...]" * Actual result: "Error: Operation cancelled [...]" It...
The constructor of `CancellationError` has the parameter `reason: any`, forcing me to pass a value. In most situations, I don't care about *why* an operation was cancelled, so most constructor...
I'm using the AMD64 AppImage of SourceGit 2025.17 on Ubuntu 24.04.2 LTS. It's working great, but about 3-4 times per day, the application window simply disappears and I have to...
Currently, the most user-friendly progress output supported by Rhubarb Lip Sync is an ASCII art progress bar written to the console. That makes it hard for integrations into third-party applications...
### Version - [x] I'm using version 1.17.2 ### Known issues - [x] I've checked Known issues ### Existing issues - [x] I've checked Existing issues ### Advanced Preferences -...