Results 351 comments of Samuel Ainsworth

Turns out that the upgrade to node 12.3.1 from 11.8.0 was the issue. Downgrading to 11.8.0 fixed the compile. This still presents a problem for me though since I need...

Here's another way to trigger this: ```haskell passports = sepBy1 passport (try (endOfLine *> endOfLine *> pure ()) (endOfLine *> eof *> pure ())) ``` which gets rid of the...

That's fair, but it feels like this error message falls into the category of things that "should never happen".

Following some debugging based on https://github.com/target/lorri/blob/master/contrib/daemon.md#verify-the-setup I found: ``` ❯ systemctl --user is-enabled lorri.socket enabled ❯ systemctl --user is-active lorri.socket inactive ``` After stopping all existing manually started daemons and...

I was just thinking about doing something like this actually. I was planning setting up a public repo that builds images (with nixos-generators) for all the usual platforms in CI,...

Just ran into this issue in #74. It would be nice just to get a more informative error message here, possibly linking to this issue. Right now it's really inscrutable.

Anyone have a sense of where in the code this kind of bug might be lying? I'm not super familiar with VSCode extension development but if this is just a...

IIUC they also offer [`tower_http::request_id::MakeRequestUuid`](https://docs.rs/tower-http/latest/tower_http/request_id/struct.MakeRequestUuid.html) to automatically generate IDs. Not sure exactly what the ergonomics of that are, however.

Solution proposal: Scan for all binaries in the `~/.vscode-server` directory tree, and patch each of them if they have not been patched already.

The script ```sh #! /usr/bin/env nix-shell #! nix-shell -i sh -p file patchelf libpath=$(nix eval --raw --impure --expr 'with import {}; lib.makeLibraryPath [ stdenv.cc.libc stdenv.cc.cc curl icu libunwind libuuid lttng-ust...