KlarkC

Results 98 comments of KlarkC

@kevincox it's also happening on v16 (used by v2 api). A workaround, when importing nixpkgs: ```nix import inputs.nixpkgs { inherit system; # required by npmlock2nix config.permittedInsecurePackages = [ "nodejs-16.20.1" ];...

+1 for nix-serve and nix-serve-ng, doing remote copies through `nix copy` also is a problem, with nix `min-free` and `max-free`, it automatically gc derivations that has been just copied to...

LGMT, MERGE THIS > :warning: DO NOT REWRITE TO RUST.

I have no idea why, but this works: ```yaml name: CI on: push: branches: [master] pull_request: branches: [master] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with:...

Yeah, 32fa32c73cf4297dee0da2cedf6c9c674281d55f adds the code block `/src/Setup/GetTool.purs`, but it's interesting to see that on Windows it uses npm without `sudo`. I'll try to change it and see what happens in...

Nop. I'm guessing here, but I believe the origin of the bug is npm not being installed by default. Even so, the action should not rely in this npm. Because...

It should be "tig" it sounds much more ferocious.

@jamesdbrock have you made any progress on this so far? I'm looking for an alternative to PureScript that does not involve grpc Node bindings, but it seems I don't have...

Pros: - Bugfree, side-effect free code evaluation - Better documentation of the API Cons: - We'll need to use monad trasformer to lift from `Effect` sometimes (have no idea if...

We can eliminate the need of a monad transformer using qualified do: ```purescript count :: Unwrap "count" Int count = ref 0 -- ?bind ma \a -> ?bind (foo a)...