Almar Klein

Results 1569 comments of Almar Klein

Hi @AlexElvers thanks for this PR! The `timetagger` command is already used by the `timetagger_cli` package, so we can perhaps call the command `timetagger_server`. Could you also put a comment...

Thanks for these changes! I'm holding off with merging this right now, because I plan to refactor some things, maybe splitting the server and into different repos etc. Both these...

I'm sorry but this is not enough information to provide any help. Is it possible to create example code, that is as small as possible, but that I can run...

Did you put the code to launch the app in an `if __name__ == "__main__"`? ```py if __name__ == '__main__': m = flx.App(Example).launch('firefox') flx.run() ```

Oh, I have no idea how multiprocessing works together with frozen apps. But I do know that when you "launch the pool", it spawns new processes using the same `__main__`...

Rethinking this: Let's just make a point to add each property to the constructor, with its default value. But in the class docs we simply say that *properties values can...

To add to that, the fact that Rust panics can be considered a bug in wgpu-native/wgpu-core. Eventually all errors should be reported via the error mechanism, so they become Python...

> Is it documented that `render_pass.set_bind_group()` only keeps a weak pointer to the object, and that the user is responsible for keeping the bind group alive? Are all the methods...

Thanks! Let's collect cases where this issue happens here.

Good point. I think this applies to descriptors at least, since these are just little structs that exists in memory. However, for things that are actually objects in wgpu-core, like...