Live data from Hacker News

Rerun 0.9 – a framework for visualizing streams of multimodal data

rerun.io

11–20 of 27 posts

Re: Rerun 0.9 – a framework for visualizing streams of multimodal data

#13
post #12
post #11

i found out about this today unrelated to this post

Cool! Where was that? (I’m on the Rerun team so curious)

Not parent but came across it yesterday as well, in these comments: https://news.ycombinator.com/item?id=37770008 (Show HN: A nom parser for the Starcraft 2 Protocol Replay format)

Re: Rerun 0.9 – a framework for visualizing streams of multimodal data

#15
post #13
post #12

Earlier quoted context omitted.

Cool! Where was that? (I’m on the Rerun team so curious)

Not parent but came across it yesterday as well, in these comments: https://news.ycombinator.com/item?id=37770008 (Show HN: A nom parser for the Starcraft 2 Protocol Replay format)

Ah yeah that was definitely a usecase we hadn’t thought of. Really cool project!

Re: Rerun 0.9 – a framework for visualizing streams of multimodal data

#16

Earlier quoted context omitted.

The `re_ui` crate is responsible for most of the non-default styling. Here's the method where it it gets applied, which probably serves as a good reference for extending the look and feel of an egui application: https://github.com/rerun-io/rerun/blob/release-0.9.0/crates/...

Any plans to spin it out as an egui UI library?

That would be awesome if they did. I decided to create an enhancement request: https://github.com/rerun-io/rerun/issues/3706

Re: Rerun 0.9 – a framework for visualizing streams of multimodal data

#17
post #14

Heads up, this blog doesn't seem to work on Safari. I see a couple errors in the console, but the culprit appears to be `SyntaxError: Invalid regular expression: invalid group specifier name`

Thanks for the heads up! Looking into it. Haven't been able to reproduce yet on mobile or desktop safari but that error message helps

Re: Rerun 0.9 – a framework for visualizing streams of multimodal data

#18
post #2

The creator of Rerun (Emil Ernerfeldt) also created egui [1], an immediate GUI library for Rust. The library is similar to Dear ImGui but it is written in Rust and can be used for desktop and web apps (compiles to WASM and uses WebGL, demo [2]). Desktop apps can target OpenGL (does not display correct colors on macOS, does not work in VirtualBox on Windows) or WGPU (uses native APIs for each platform, works without a…

Egui is great, and the eframe way of writing small apps is so nice!

I cranked out my own custom video player (for tagging video) the other day using it and the ffmpeg bindings. Very pleasant experience.

Re: Rerun 0.9 – a framework for visualizing streams of multimodal data

#19

Earlier quoted context omitted.

The `re_ui` crate is responsible for most of the non-default styling. Here's the method where it it gets applied, which probably serves as a good reference for extending the look and feel of an egui application: https://github.com/rerun-io/rerun/blob/release-0.9.0/crates/...

Any plans to spin it out as an egui UI library?

You can just use the crate. I’m using it in personal projects:

re_ui = "0.6.0"

Post reply on HN