Emil Ernerfeldt

Results 812 comments of Emil Ernerfeldt

Oh no… I need to do the resize-corner interaction on top of the scroll area, or they will fight with each-other

The scope info (names etc) wasn't being saved to the .puffin file, so a fresh puffin_viewer would show no scopes. This silent error will be less silent with https://github.com/EmbarkStudios/puffin/pull/245

My repro: connect puffin_viewer to a server with `--url 127.0.0.1:8585`, hit save, then try to load the saved ~.rrd~ `.puffin` in a new puffin_viewer process. Didn't work before this PR,...

Sorry, I meant `.puffin`. I tried my repro again, and now it works on `main` O.o. This is very weird. Before I ended up with this broken file: [broken.puffin.zip](https://github.com/user-attachments/files/21604620/broken.puffin.zip) Maybe...

The work-around is as simple as adding an extra dependency on `wgpu` with default features enabled: ```toml wgpu = { version = "27.0.1", default-features = true } ``` I'll see...

We discussed today a bit on how to handle _mono components_, i.e. the common case of single-instances (e.g. scalars). We want to make this as ergonomic as possible. * We...

This is the direction I'm heading: ```rs pub struct ChunkSchema { chunk_id: ChunkId, entity_path: EntityPath, columns: Vec, … } impl From for ArrowSchema { … } impl TryFrom for ChunkSchema...

What's still to be done is the dataframe portion of this. Should sync with @timsaucer here.

Also some misc cleanup: * [ ] `Chunk::to_chunk_batch` should be infallible

Let's start simple: * Add a `Cookbook` header to rerun.io/docs * Just write markdown. Low bar: no code testing etc * Maybe add a GitHub label to tell CI to...