James Brock
James Brock
```purescript deleteAt :: forall a. Int -> NonEmptyList a -> Maybe (List a) deleteAt i (NonEmptyList (x :| xs)) | i == 0 = Just xs | otherwise = L.Cons...
Also `alterAt`?
Do you think it would be good for the package list to include information like this? If that information did not come from the GitHub API?
> @jamesdbrock can move https://github.com/purescript-open-community/purescript-open-foreign-generic to https://github.com/purescript-contrib ? Or we could move this package to https://github.com/rowtype-yoga ? That might be a better place for it. But also, I think there...
So, I suspect the reason that the Sage kernel isn't working for me is that when I run my Jupyter Docker Stacks images, I run as a user other than...
Actually, maybe the problem isn't the __jovyan__ user. This happens: ``` (base) jovyan@a50de8f62016:~$ jupyter kernelspec list Available kernels: ir /opt/conda/share/jupyter/kernels/ir julia-1.3 /opt/conda/share/jupyter/kernels/julia-1.3 python3 /opt/conda/share/jupyter/kernels/python3 haskell /usr/local/share/jupyter/kernels/haskell (base) jovyan@a50de8f62016:~$ conda activate...
I tried [`conda activate --stack sage`](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#nested-activation) but I get the same results, I still lose the `ir` and `julia` kernels.
There seems to be some controversy over how conda has recently changed: https://github.com/conda/conda/issues/9152
This issue definitely has nothing to do with whether or not the user is __jovyan__.
I'm surprised that activating `sage` and then running the `jupyter` from the `sage` environment does not make the Sage kernel available in Launcher: ```bash (base) jovyan@0672a8b50846:~$ which jupyter /opt/conda/bin/jupyter (base)...