Brian Tarricone

Results 116 comments of Brian Tarricone

I'm looking to resize partitions on my 2012 N7, and found this issue. Not sure if this is useful information at this point, but it looks like for some reason...

Sorry for the delayed response. I pulled the last 33 sectors off and have dropped it [here](https://files.spurint.org/n7-alt-gpt.img). I tried to make a dummy disk image with a valid primary GPT...

@alanplatt I haven't. My interest in messing with the hardware has faded a bit. I put PostmarketOS on it (which doesn't require the system partition; you can install it on...

@dangee1705 I don't see a need for a `static` keyword just yet. Using `fun` is enough to disambiguate between instance and class methods.

Hehe, yeah, in the end it's not that important. `class fun` would work; since `fun` is a keyword it can't be an actual class name, so there's no ambiguity.

Ah, I see! Ok, I'll take a crack at that. Thanks for the quick reply!

Hmm, gtk4-rs doesn't seem to have `FileChooserImpl` either, but it does have impls for interfaces, unlike gtk3-rs, so I'll take a look. One thing I'm noticing that I don't quite...

Ok, I think I understand. But I am now not sure this is doable. It looks like `GtkFileChooserIface` is defined in `gtk/gtkfilechooserprivate.h`. So the autogenerated bindings in the `gtk-sys` crate...

I just got curious about this myself when looking into cancellation for futures running via `MainContext.spawn()`/`.spawn_local()`. My use case here is a file/folder-view widget. I want to asynchronously enumerate and...

Makes sense. I think in the case where someone manually cancels the GIO operation (using the `gio::Cancellable` that is still yet to be exposed), there's nothing extra to do, right?...