James Brock

Results 280 comments of James Brock

@dcoutts I also have a use case for unboxable types, and I'd like to look at your "hacked up implementation." Would you please push your branch to Github, or publish...

I was also looking for this primitive, @JustinChristensen . I implemented it and named it [`anyTill`](https://hackage.haskell.org/package/replace-megaparsec/docs/Replace-Megaparsec.html#v:anyTill). `anyTill` is used to implement [`breakCap`](https://hackage.haskell.org/package/replace-megaparsec/docs/Replace-Megaparsec.html#v:breakCap).

I also hit this problem with the `yaml` package.

When I add `inputs.pypi-deps-db.follows = "nixpkgs";` to [this template](https://github.com/Quoteme/mach-nix-template/blob/8166e59123efc81efb2770eee5af0a7dc237d023/python/flake.nix) ``` pypi-deps-db = { url = "github:DavHau/pypi-deps-db"; inputs.nixpkgs.follows = "nixpkgs"; inputs.mach-nix.follows = "mach-nix"; follows = "nixpkgs"; }; ``` then it seems...

There is ambition to rework the entension system in JupyterLab 3.0. https://github.com/jupyterlab/jupyterlab/issues/8038 > We want major features in 3.0 to entice users to upgrade. Some possibilities include: > * Extension...

See also https://github.com/jupyterlab/jupyterlab/issues/7525

JupyterLab 3.0 is here, with the new extension build system, which I don't yet understand. https://jupyterlab.readthedocs.io/en/latest/getting_started/changelog.html#v3-0 > In JupyterLab 3.0, a new recommended way of distributing and installing extensions as...

Here's a good issue to watch https://github.com/jupyterlab/jupyterlab/issues/9118

> TODO > > 1. Add checks that tags are numbers Yeah that's probably a good idea. I used to think that this was a waste of CPU cycles but...