Jens Reimann

Results 683 comments of Jens Reimann

Ok, call that "pre-release" in the Rust world: https://doc.rust-lang.org/cargo/reference/resolver.html#pre-releases

Same for Go: https://go.dev/doc/modules/version-numbers#pre-release

> as the error mesage says you need to install pyqt5.python3-pyqt5 if you use some debian based distro Shouldn't the be a "requirement" on the, like for the other dependencies...

What I guess would help is: * Add some documentation on the actor model of Drogue Device * What is an actor * What is the lifecycle? Init, Inbox, ......

Ok, after re-checking the docs. I think it already is there.

Can you show the finalizers which are set for this namespace?

The tool does that, but only when the finalizer is the `kubernetes` finalizer. You can swap out the name of the finalizer in the script. It would be cool to...

> The directory `examples/stm32f7disco-screen` should probably be renamed to something like `examples/stm32f7disco-ltdc-screen` or something to specify that. I actually didn't realize FMC displays existed, that sounds pretty cool. Yes, that...

I just found out, it does work with `Tx`: ~~~rust let serial = Serial::new(...); let (tx, rx) = serial.split(); writeln!(tx, "Hello, {}!", name).unwrap(); ~~~ Wouldn't that be enough?

@dkasak thanks for the explanation! That really helps. > They're only meant to be used for serializing your stuff to some kind of long-term storage, not for sharing the Megolm...