Simon Skorokhodov

Results 7 comments of Simon Skorokhodov

Sorry for bothering. Do you have any thoughts about the PR?

Thanks for the response. I agree with you about the option name. The other names I considered are: - `multilevel` - `expect_command` - `in_order` (as in `clojure.tools/cli`) It's also possible...

It also doesn't work without quotes :) ```dockerfile FROM rust:1.54.0-buster WORKDIR /earthly ENV RUSTFLAGS='-C linker=x86_64-linux-gnu-gcc' ENV CC='gcc' ENV CC_x86_64-unknown-linux-gnu gcc-x86-64-linux-gnu ENV CC_x86_64_unknown-linux-gnu gcc-x86-64-linux-gnu build: RUN echo 1 > 1.txt ```...

I think, Docker's `ENV` is more like `env` utility, allowing to set any name to any value, which is a legal requirement for an arbitrary program. Bash follows the [POSIX...

Hi @ptaoussanis, If I remember correctly, the problem is generating a custom response to a `HEAD` request. It's impossible to respond with the expected body length without providing the body....

Hi! The short answer is - yes, but it's not directly supported by `defun`. You will have to write some extra code. --- One way to do this coming to...

No examples, sorry. But I can’t imagine any other way of using `defun` than just defining a bunch of functions and nesting them as you would do with `defn` :)...