Yukun Guo

Results 18 issues of Yukun Guo

Just a feature request: Similar to what [some]( https://github.com/Microsoft/vscode/issues/21362#issuecomment-282651162) [editor]( https://github.com/atom/autocomplete-plus/issues/42#issuecomment-131981261)'s autocomplete does, when the user types in all lowercase letters, behaves case insensitively by default. But if the input...

enhancement

When working on some HiDPI application, I find I have to manually scale the `size` attribute of `nwg_resource` for loading Bitmaps/Icons/ImageLists properly. This PR tries to fix it.

`cargo clippy` reports this warning for PartialUi derive macro: ```plain warning: the method `build` doesn't need a mutable reference | 25 | #[derive(Default, NwgPartial)] | ^^^^^^^^^^ | = note: `#[warn(clippy::unnecessary_mut_passed)]`...

I can't compile the example in the NWG guide: ```rust #[derive(NwgUi)] struct MyUi { #[nwg_control(flags: WindowFlags::WINDOW | WindowFlags::VISIBLE)] window1: nwg::Window, } ``` Error message: "Compressed flags must str, got Binary"....

I would like to be able to probe the metadata of a bunch of images quickly, similar to what [imagesize](https://docs.rs/imagesize/latest/imagesize/) does but with the potential to extract more info like...

kind: slow

How to access nested fields when some key contains dots? `['valid.key.with.dot']` doesn't work.

bug
help wanted

Tested this program on an H.264 video and all the `direct_spatial_mv_pred_flag` fields of B frames are displayed as `0`. But if I directly run `h264bitstream`'s `h264_analyze` on the same file,...

I'd like to try redis-async with the latest async/await syntax. After the removal of `async-await-preview` feature, the only viable option seems to be adding a `git` dependency from Tokio's `master`...

For example, can two `git merge`s run simultaneously? If a `git pull` modifies the directory during the execution of `statusMatrix`, do we still get consistent result? Do we have to...

question

Some methods of `CGContext` accept an argument `image: &CGImage`. `CGImage` will automatically call `CGImageRelease` when it is dropped. The problem is, sometimes we don't actually own the CGImage. For example,...