Michael Maier
Michael Maier
I just encountered [this](https://forum.nim-lang.org/t/2355) problem myself: > Dippo: I can barely read the output window because the background of this window (element) is dark grey and the text in it...
Operators like `filter` and `map` take an `iterable` but return an `array`. All values of the `iterable` have to be iterated during evaluation. The following example will run out of...
The name of `FluentComposer::forArray` is misleading because it does not only accept arrays but also `Traversable`. I would expect a type hint `array` for the parameter. `FluentComposer::forValue` should assert that...
Is there something against releasing version 1.0.0 (see [How do I know when to release 1.0.0?](https://semver.org/#how-do-i-know-when-to-release-100))?
I try to benchmark MySQL in Docker. I tried the Docker Image [severalnines/sysbench](https://hub.docker.com/r/severalnines/sysbench/), which installs `sysbench` in a Debian environment like this **[Dockerfile](https://github.com/ashraf-s9s/sysbench-docker/blob/a6da5972cad251eeaaf75107ee82e5b8b7502fcb/Dockerfile)** ```Dockerfile FROM debian:latest MAINTAINER Severalnines RUN apt-get...
I'm trying to modify the index.html of the Docker image. I create a copy of the original file of the container (using `docker cp`) on my host, modify it (add...
Tag values of type string are limited to 1024 characters (see [src/Jaeger/Span.php](https://github.com/jonahgeorge/jaeger-client-php/blob/11f8f21547bf3e7b23abb8e1048eb87bf0cd9031/src/Jaeger/Span.php#L448-L450)). No error or warning is logged, when this happens, which would be helpful. Is there a specific reason...
Thanks to #28 it is possible to install additional packages using `--build-arg ADDITIONAL_PACKAGE=`. However, you can only install packages from the default repositories defined in `/etc/apk/repositories`. ## Possible Solution Add...
I wrote my own operator `subscribe_with_latest_from` as a function that composes existing operators. However, it takes much long to compile. This example takes almost 6 seconds to compile on my...