Piotr Podusowski

Results 45 comments of Piotr Podusowski

+1 I was surprised as well that I need to call it explicitly instead of something more like a gmock-style. Cases where someone didn't want an assertion, but it fired...

OpenStreetMap (and others in the future) widget for egui. https://github.com/podusowski/walkers

Hi, my team has very similar case, although we're not storing kube config in git but want to use the one user has in his home. I was thinking that...

I was rather thinking that Floki could just expand the variables in the yaml. I could then do: ``` docker_switches: - "-v${HOME}/.kube:/root/.kube" - "-v${PWD}/.kube:/root/.kube" ``` (sorry if I got the...

For a long time, I have a plan to simply [accept an collection of tiles, instead of just single one]( https://github.com/podusowski/walkers/blob/8dd5c60582b8062a3966b10de0613f793564d3d0/walkers/src/map.rs#L47). Although it might not exactly be your case, since...

Blocked by https://github.com/06chaynes/http-cache/pull/76

I think I would just swap `drag_gesture_enabled` with some enum saying which buttons it should to. But I wonder, does egui even support two finger drag?

> When coming from a web page, a valid [HTTP Referer](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referer). This seems to be working out of the box. ![image](https://github.com/podusowski/walkers/assets/2226778/0088b7b8-0d9e-40f1-a4d8-0b6018dc87c1)

The idea seems sound, though I think I would start with a min/max pair (say `struct ZoomLevels`) which is returned from `Tiles`. Also, your PR is mixed with this `click`...

Getting position under the mouse is a nice example though.