Results 98 comments of josch

> This PR, as it currently stands, would be using the unsafe `load` method from js-yaml 3.x . We would need to make the change from `safeLoad` to `load` at...

I came across this problem again. This time I had an ocaml backtrace which said: ``` Raised at file "pervasives.ml", line 20, characters 22-33 ``` It would be great if...

Note to self: without codesearch this can already be done via: ``` apt-file update -a source apt-file search -a source pervasives.ml ```

Thank you for that extensive quote! That all makes a lot of sense. But having read all of that above, perlcritic is probably overly eager by warning about my use...

Also, in addition to suggesting `IO::Interactive`, you could also suggest using `POSIX::isatty` instead of `-t`.

I have similar problems when I don't use the "unshare" mode of my program but execute it directly as superuser via `sudo`. In that case, the normal user cannot run...

I'm sure there is a better way but the only workaround I found so far for this problem was the following crazy approach: ``` fallocate -l 10M cover_db.img sudo mkfs.vfat...

Funnily, I'm having the opposite problem. Devel::Cover happily persists across fork() calls and causes massive slowdowns once an exec() is done in the child process. See https://stackoverflow.com/questions/59623927/how-do-i-disable-develcover-for-forked-child-processes I wonder why...

Hi, Quoting Romain Gauthier (2014-03-05 12:09:43) > I just did the following procedure and it worked for me: > > git clone https://github.com/tOkeshu/fipes.git > cd fipes > make > make...

Debian offers the package erlang-cowboy which ships all *.app and *.beam files in `/usr/lib/erlang/lib/cowboy-0.8.6/ebin/` but the fipes build system does not seem to make use of that (neither in the...