philippeitis
philippeitis
https://www.libraw.org/docs/API-datastruct.html#libraw_thumbnail_t I've implemented functionality for this in my own fork (though it wouldn't be possible to merge it directly, since I've updated to the latest version of libraw for CR3...
It seems like the CelebA datasets don't filter out non-matching sizes, which causes problems when trying to run the notebooks provided in `/reproducability` - the default behaviour seems to download...
When trying to run the provided Docker commands, `.` raises errors, and replacing with $PWD is an equivalent fix and should work on most Linux distributions. It also seems like...
## Description This allows the List to select many items, and it also allows the list to either make visible an initial selected item, or a specified target item. Addresses...
I'm building a TUI application, where I'd like the option to allow selecting multiple items in my list - for instance, deleting them, or editing many items at once. However,...
I implemented some of the functions in triangulation.py in C for a considerable speed boost in several situations. They may not support all list types that are used, but I...
It might be a good idea to test on all operating systems, since they have differences in memory management and file operations which might cause bugs. It should run the...
It is possible to index user provided crates like so: ```console export RUSTDOCFLAGS="-Zunstable-options --output-format=json" cargo +nightly doc ``` Alternatively, in Rust: ```rust std::process::Command::new("cargo") .arg("+nightly") .arg("doc") .env("RUSTDOCFLAGS", "-Zunstable-options --output-format=json") .env("CARGO_TARGET_DIR", &index_dir)...
It would be helpful to include sample benchmark results (probably as X times speedup at each size, maybe in graph format?) in the README so that users could have context...
```shell Updating crates.io index Compiling google-compute1 v5.0.1+20220224 (/.../google-apis-rs/gen/compute1) Finished dev [unoptimized + debuginfo] target(s) in 43.67s ``` This produces a 181MB (debug) / 168MB (release) library file. This issue is...