Results 226 comments of Simonas Kazlauskas

The RFC mentions unidiff as being a standardized format in some form or shape. You also mentioned “Looking at the unidiff standard” in one of your earlier comments. Is there...

Pixels are unitless (much like e.g. radians) and you cannot convert between pixels and infirmation without knowledge of bit depth (bits per pixel). On Fri, Jul 20, 2018, 06:25 Fahmi...

The latitude and longitude are both dimensionless units.

I'll see if I can get to this later. Got to get my application working first before I tackle minor improvements ^^

`audio/x-raw,rate=88200` when passed to `gst-launch-1.0` is a shortcut for `capsfilter caps=audio/x-raw,rate=88200`. This shortcut in my experience doesn't (always?) work with `gst_parse_launch` either, so changing quodlibet's code might not actually solve...

My comments: * Looking at the implementation of `kqueue` notifier, the notifications are still not really-asynchronous. Instead, it seems, like system is polled, quite literally, ever so often, despite all...

> There's a few cases of notify (or other libraries) initialising without issue on a FUSE mount, but then never reporting events because the FUSE driver doesn't support them. Falling...

Yeah, I don't believe you can get away by using a cargo feature here and will have to make users of this crate to indicate their preference through API in...

Notably, there is no profile that’s less than minimal AFAICT?

I managed to do it by just doing: ``` # install rustup (with rustc and cargo for the host) rustup component add rust-src --toolchain nightly --target ${{ matrix.rust_target }} #...