Damiano Albani
Damiano Albani
It would be nice to have `alien` support the C `bool` type, automatically cast from/to Lua's native `boolean`.
While looking for an alternative to the native Python client due to a "limitation" (https://github.com/eclipse/paho.mqtt.python/issues/348), I stumbled upon the hidden Python (2.7) module in https://github.com/eclipse/paho.mqtt.c/tree/master/test/python. As far as I could...
[S3] Default MIME type is "application/octet-stream" vs. "binary/octet-stream" with AWS CLI's s3api
My understanding is that the Java SDK sets by default a `Content-Type: application/octet-stream` header if none is provided by the user when adding an object. https://github.com/aws/aws-sdk-java/blob/master/aws-java-sdk-s3/src/main/java/com/amazonaws/services/s3/AmazonS3Client.java#L4147 On the other hand,...
While trying to use the `mbcheck` program (from the `node-mbtiles` package), I've discovered that the `metadata` table is empty in the MBTiles databases produced by MapProxy. There is indeed a...
Hello, Starting from a very simple integer-related contract: `int,(-1 | 1)` I've tried to write the same kind of contract, but for string values, e.g.: `string,(a | b)` Unfortunately, that...
I'm not absolutely sure I understand the CI setup correctly, but I suppose the Build/Test workflow should now include tasks for `gcc-10` and `clang-14`, given that packages for Ubuntu 22.04...
### Description of the change This PR adds the ability to define a new ingress for the admin area of Keycloak, separate from the existing ingress for the general "public"...
### Name and Version bitnami/keycloak:24 ### What is the problem this feature will solve? Keycloak 24 introduces changes when it comes to proxy configuration. See in particular: - https://www.keycloak.org/server/reverseproxy#_proxy_modes >...
I've come to `mungehosts` via http://jasani.org/2014/11/19/docker-now-supports-adding-host-mappings/, but I am wondering if the result of this two year old discussion is any different today, with newer versions of Docker available?
It would be nice to have Flask-Debugtoolbar display the values of the parameters used in SQLAlchemy queries, instead of the current "%(param_X)s" situation. Thanks!