mitchmindtree
mitchmindtree
For future reference, a nice write-up on using ffmpeg for video playback in python: http://zulko.github.io/blog/2013/09/27/read-and-write-video-frames-in-python-using-ffmpeg/
Yeah that sounds totally reasonable, agreed! The only thing I'd push back on is: > Otherwise, you create a lot of enum variants for something that we will eventually just...
Thanks @d0cd! I'll keep an eye out for these other sites where we should be exiting with nice errors too. I noticed that the whole process is actually `panic!`ing on...
I just encountered a VM `panic!` during a call to `deploy` while working on #29025: ``` thread `main` panicked at /home/mindtree/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/snarkvm-circuit-environment-4.4.0/src/testnet_circuit.rs:152:29: assertion `left == right` failed: Constant constraint failed: (0...
It looks like we're not actually able to `catch_unwind` the vm deploy step as the `panic!` occurs within a non-unwind-safe context. Here's the full backtrace for context: ``` thread `main`...
Opened: - https://github.com/ProvableHQ/snarkVM/issues/3055 - https://github.com/ProvableHQ/leo/issues/29035 > That would be great, though please do not try to comprehensively replace all panicking code. Just focus on resolving this specific Leo issue. For...
Fwiw, you can kind of emulate this behaviour by providing an implementation for [`Behavior::simplification_options`](https://docs.rs/egui_tiles/latest/egui_tiles/trait.Behavior.html#method.simplification_options) that specifies [`all_panes_must_have_tabs`](https://docs.rs/egui_tiles/latest/egui_tiles/struct.SimplificationOptions.html#structfield.all_panes_must_have_tabs) as `true`. This way you can keep around the single-tab view as a...
Hi @Roee-87! Any chance you have an update on this? I daily drive Linux, and have been commenting out this condition everytime I run the tests 😅 The tests seem...
> The tests seem to work fine on Linux - perhaps we can change the condition to at least support Unix for now? Addressed in #29032.
OK, I've been doing a deep dive into the situation here over the past day, and I am still gauging the scope of this. ## Problem: `halt` The source of...