Christoffer Sawicki

Results 34 comments of Christoffer Sawicki

When you want to transform both keys and values I think it makes sense to use `clojure.walk/postwalk` directly, like this: `(postwalk #(if (keyword? %) (->snake_case_string %) %) {:fooish-bar :fooish-bar})`. I...

I think I've figured it out. Leiningen does only spawn a second VM (with `javaagent` set) when run from inside a project directory. Running `lein repl` from outside a project...

Even project-less Leiningen invocations have a project map, but without the `#{:group :license :name :root :version :url :description}` keys. I don't know if this is how Leiningen should work. I'll...

@technomancy: I wonder about this: When I run `lein repl` inside a project directory it spawns a second VM with the configured `:jvm-opts`/`:java-agents` set. If I run it outside a...

I think setting `2` should unlock BuildKit for you; see https://dmp.fabric8.io/#config-image-build and https://docs.docker.com/engine/api/v1.38/#tag/Image/operation/ImageBuild. Having built-in support in docker-maven-plugin would be nice though!

Nice! I think me and @jamesliu4c missed this because there's no mention of this functionality on https://lyz-code.github.io/yamlfix/.

Nice! Switching over `compile` to https://github.com/Constellation/escodegen would probably be the simplest way to add support for source maps.

I'm not familiar enough with Rust to provide a PR that implements `__hash__` for List but I would really appreciate such an addition. :)

Sure! I want an immutable list implementation in an application I'm developing and since `rpds-py` is already a (currently transitive) dependency via `jsonschema` it's appealing to use instead of adding...

> Unfortunately, I do not see any documented version parameters in the official API documentation. > https://docs.docker.com/engine/api/v1.40/#operation/ImageBuild There's now a documented `version` parameter (since February 2024). Value 2 enables BuildKit....