Pierre Fenoll

Results 238 comments of Pierre Fenoll

Another advantage of complying with XDG: when trying to get some space off of your disks you can often trash `~/.cache`. So I'm asking for cargo to put a project's...

Still standing today: ```golang // Generated by curl-to-Go: https://mholt.github.io/curl-to-go // curl --upload-file ./hello.txt https://transfer.sh/hello.txt resp, err := http.Get("https://transfer.sh/hello.txt") if err != nil { // handle err } defer resp.Body.Close() ```...

How is it that different from โ†ด ? ```go // Generated by curl-to-Go: https://mholt.github.io/curl-to-go // curl https://api.example.com/upload \ // --user api:YOUR_API_KEY \ // --data-binary @file.jpg \ // --dump-header apiresponse.txt //...

Note: `` are also valid ``` digraph "0000/addition.slx" { "Block#2":out_1->"Block#1":in_1; "Block#3":out_1->"Block#1":in_2; "Block#1":out_1->"Block#4":in_1; subgraph "System#0" { "Block#1" [ label=< Add in_1out_1 in_2out_2 >, margin=0, shape=none ]; "Block#2" [ label=, margin=0, shape=none...

Oh I'm not trying to report an issue, I'm just saying one can apparently use `` for multiline labels. But now that I think about it, it may only concern...

In addition dependencies should be built with an empty docker context. The Dockerfile generated on the fly should first look for hashed dependencies available over the network (i.e. does the...

Ah thanks for the heads up on your `xx` project. My whole point here however is to end up achieving a global build cache for Rust crates by expressing the...

I know this works: ```shell docker run --rm -t erlang:alpine /bin/sh -xc 'apk update && apk upgrade && apk add git curl make && curl --fail --output /usr/local/bin/rebar3 https://s3.amazonaws.com/rebar3/rebar3 &&...

Can it be that you used code compiled with a different major version of OTP? A cache not evicted? I donโ€™t know if there are garanties on the backwards compatibility...

I concur on staying on Hypothesis' expressive side however it would be helpful to have a way to prioritize which statem actions to run most. For instance you'd want the...