Matt Parker
Matt Parker
It's very annoying when hitting `C-c C-b` finally ends up with no errors and closes down the error frame. If I don't create a new small frame, a fresh error...
I have a list of 1100 users and I tried to make a `button` for each one (using `clickEl`) that returned the userId to a parent element, which I would...
I'm working on a nifty way to do forms, which will also hopefully be able to handle text inputs that update every key press. However, I ran into my form...
Routing
Have you thought about a clever way to do routing with Concur? I'm planning on using something like `servant-router` to parse a Servant API in the client and then load...
The ghcjs version compiles perfectly, but now I'm trying to get the regular ghc version compiling so I can use it with ghci in emacs. `concure-core` compiles with ghc, but...
Sometimes C functions return null pointers. The default marshaller for ForeignPtr's in c2hs still adds a finalizer for null pointers, which causes the application to crash when the memory is...
"default" specifies a default for a key if it's not found. For the pattern matching generation, we can probably just transform the default to the bare attrib, but for `:datoms`...
I would like to add Bitvector support to LH so that we can use bitwise operations in LH type signatures. I made a feeble first attempt using `BV` from the...
I'm using 'streaming 0.1.4.5' and `foldl 1.4.3` and I'm doing three FoldM's over a Streaming stream. When I combine them together using `(,,) fold1 fold2 fold3` and run the fold,...
It would be nice if, when you loaded a file, all the imports in the file would be in scope in the repl, so you could access anything that code...