Will Badart

Results 24 comments of Will Badart

Good questions, not sure. I think the Alpine [wiki page on creating packages](https://wiki.alpinelinux.org/wiki/Creating_an_Alpine_package) may be outdated (e.g. it doesn't give `aarch64` as an accepted value of the `arch` parameter of...

Hmm, I'm running 1.4.3 and don't see the feature I'm thinking of. To clarify: I see that quillnote documents can be toggled between "notes" and "lists" ("Convert to note"/ "Convert...

I'm also seeing this error with my `microk8s` cluster. `/etc/docker/daemon.json`: ``` { "default-runtime": "nvidia", "runtimes": { "nvidia": { "path": "/usr/bin/nvidia-container-runtime", "runtimeArgs": [] } } } ``` ``` $ kubectl -n...

Thanks @klueska! I'm a little embarrassed I missed that *minor* detail that microk8s doesn't use docker... Here's my current `/etc/containerd/config.toml` (everything that's not a comment): ``` [plugins.linux] runtime = "nvidia-container-runtime"...

I did give `microk8s enable gpu` a shot; it seems to be roughly equivalent to applying the daemonset config from this repo manually. My (admittedly not super satisfying) resolution to...

I think you're touching on something really interesting with `validate`; the type `(a -> Bool) -> e -> a -> Validation (NonEmpty e) a` captures our intuition that the failure...

It does seem to be FF-specific. Here's Chrome after following my own reproduction instructions: Something I didn't notice before is that FF seems to initially request the correct `inverted-tree.css`: Only...

I mean, it could be a browser bug, in which case I'd be happy to report it upstream. I just haven't convinced myself that it doesn't have to do with...

Trying to set up a quick dev shell with that particular commit, but I'm new to flakes and can't quite get it to click: ```nix { description = "A very...