Audun Skaugen

Results 5 issues of Audun Skaugen

We are using tonic, prost and tracing in a service handling customer data. All of our endpoint handler functions look like for example ```rust #[instrument(skip(self))] async fn handle_search_files( &self, request:...

We have some geometry code which would benefit from avoiding self-intersections after simplification. I tried to switch from the rdp algorithm to the `simplify_vw_preserve` function, and wrote some property tests....

Arbitrary impls for nested data often needs access to some kind of random numbers. To avoid exposing rand types, a simple uniformly distributed float on the unit interval is often...

This is proof of concept for how we might support multiple outputs from a single transformation. The idea is that you write sql like ```sql select struct(fields for asset) as...

The `Container` class already had a `ContainerApply` write version, but the member classes didn't. Since we added state fields, the read and write versions now differ, so split them. Also...