Viktor Kronvall

Results 46 comments of Viktor Kronvall

Wish list of improvements: - [ ] Interactive collapsing of nodes (with remapping of links to the representative) - [ ] Filter out only (k-steps removed) neighbors (plus their ancestors)...

Gradients based on [this example](https://observablehq.com/@d3/hierarchical-edge-bundling/2) ![calligraphy](https://user-images.githubusercontent.com/217918/167017788-fc5ba8ef-91b2-4058-8a3f-718396df0523.svg)

I've been looking at some examples and I now think that a zoomable circle packing tree of the packages/modules like in [this example](https://bl.ocks.org/mbostock/7607535) with edge bundling like in [this example](https://vega.github.io/vega/examples/edge-bundling/)...

I modified the edge bundling example above by just using a normal hierarchical tree, showing all hierarchical levels and added functionality to only show the direct neighbors when a node...

> There is probably a reason for this, but why isn't it possible to provide `safeLink` with two proxies upfront to make a link-maker like this: > > ``` >...

> Not an expert in type level programming but brief research seems to indicate that AllowAmbiguousTypes can be useful together with TypeApplications (and ScopedTypeVariables). Yes I agree that it can...

It requires a recompilation but it usually works if you specify ``` { reinstallableLibGhc = true; } ``` as a module.

I solved this issue with the following overrides: ```nix final.poetry2nix.overrides.withDefaults (self: super: { flit-scm = self.callPackage ./flit-scm.nix { }; exceptiongroup = super.exceptiongroup.overridePythonAttrs (old: { nativeBuildInputs = old.nativeBuildInputs ++ [ self.flit-scm...

I don't feel confident in deciding how this should be documented. I personally don't use channels. I have a local flake registry with flakes from my system flake. I understand...

I was thinking that calling `nix-store --query --binding allowSubstitues ` would be sufficient. ```nix derivation { name = "no-subsititute"; system = "x86_64-linux"; builder = "builder"; allowSubstitutes = false; } ```...