JosefWN
JosefWN
Related question: I just implemented gzip compression in my project, but since I use both httprouter.Handle and http.Handler (static files, r.NotFound), I had to duplicate the code a bit: ```...
That's what I thought at first, too, but I couldn't seem to pass a http.FileServer to it as such: ``` go r.NotFound = C(http.FileServer(http.Dir("../static"))).ServeHTTP ```
I'm fairly new to Go, so I'm sorry if it's an easy problem that I'm over-complicating. Both input and output types of C are httprouter.Handle, so I would need both...
Sorry for the long post, figured I would share my experiences, since I've been working on rendering for the past week or so. > I don't really understand the need...
I have forked @ibrierley's `flyTo` and included rotation which I needed. It's relatively straight-forward to extend the `MapControllerImpl` creating an `AnimatedMapController`, although it requires https://github.com/fleaflet/flutter_map/pull/1357 to function. Perhaps we could...
> @JosefWN If you get a spare moment, we'd love to have this as a plugin :) I could do it if @ibrierley doesn't have time, although he wrote 99%...
> My main issue was I didn't want chunks of code in the core that only one person knew for maintenance reasons. Yeah, it's also not idiomatic/intuitive to "manually" animate...
> Why don't we expose the curve parameter and let the devs choose it according to their like? Good point! Swapped the `easeOut` function for a `Curve` in my example...
Whoops, sorry, thanks for moving it! I'm using this particular container: https://hub.docker.com/layers/jitsi/jvb/stable-6726/images/sha256-e8edd2fdf42caf89434c906c566e1049b39271e6d4be363cc682c36c12a5b31c?context=explore From within the container itself: ``` # java -version openjdk version "11.0.13" 2021-10-19 OpenJDK Runtime Environment (build 11.0.13+8-post-Debian-1deb11u1)...
I executed `lscpu` inside the docker container of the bridge, and Kubernetes has no constraints on the resources, so the whole machines' resources should be available to all containers. I...