Ben Millwood
Ben Millwood
Currently, more or less every module exports everything. This is bad for modularity and stability. We need to work out what people actually use and what is useful and export...
Documentation for most functions is sparse. It would be nice to improve it.
05:19:28 #haskell: < ion> @tell benmachine It would be nice if each step http://www.srcf.ucam.org/~bm380/cgi-bin/stepeval.cgi displayed the definition of the function applied in the step in a column to the right....
Hi! I was trying to understand how the `Url.Parser` code worked in advance of potentially making some other contributions. I was trying to set the `visited` field in a `State`...
Related to #188, in lieu of a breaking API change.
I think instead of `connectHost` and `connectPort`, the connection details should include `connectAddr` which is a [`SockAddr`](https://hackage.haskell.org/package/network-3.1.2.7/docs/Network-Socket.html#t:SockAddr). This would help avoid confusion about what `connectHost` does or whether it needs...
- the travis-ci link (links to https://travis-ci.com/sras/elminator which is a 404 for me, on [line 9](https://github.com/sras/elminator/blob/9a1344c531b75fbc6d4e96049fc8514a23fc0032/README.md?plain=1#L9) and again on [line 170](https://github.com/sras/elminator/blob/9a1344c531b75fbc6d4e96049fc8514a23fc0032/README.md?plain=1#L170)), - the sample generated code link (links to https://bitbucket.org/sras/elminator-test/src/master/elm-app/src/Autogen.elm...
My reproduction: `GenSrc.hs`: ```haskell {-# LANGUAGE DeriveAnyClass #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DerivingStrategies #-} module GenSrc where import GHC.Generics (Generic) import qualified Elminator as Elm data P =...
My use case is that I'd like to directly include an SVG in an HTML page via use of the `` tag. The support is _nearly_ there - I can...
The README mentions that some of these optimizations already exist upstream in `numpy`, but that you need to pass `optimize=True` to access them. This is useful! The docs for [`torch.einsum`](https://pytorch.org/docs/stable/generated/torch.einsum.html)...