Chris Done
Chris Done
Creating this issue as a catch-all for the comment handling situation in hindent. Redirect all issues here. Time to fix this once and for all.
One thing people sometimes want is to generate files of GHC’s bytecode. That can make for faster recompilation and even a way to build an “interpreted” exe, both of these...
I'm on version ed130c78b708ff55cf4a80b126a1bd3ba5d80eb9 of the purescript compiler in my stack.yaml. I'm looking at the performance of my own type checker which is similar to PureScript's in diminutive form. I've...
I was wondering how you support record field access vs method calls in Koka. If person.name is usually record access, and Koka has person.name.reverse for reverse(person.name), that seems to conflict....
I have a build error for haddock docs on a package. That links to [here](http://hackage.haskell.org/package/odbc-0.0.1/reports/): I know how to fix the build (install `freetds-dev` on Linux), but on the web...
I assume you’ve been using this for a project, @paf31. What’s your experience been like so far? Trade offs? What was good, bad, or surprising? I am still interested in...
I'm making a new form library like formlets, and considering the ability to embed a regex as a validator/parser which would run on the server side with regex-applicative upon submission,...
When generating results, it would be nice to provide a `--save baseline` flag that would produce e.g. ``` bench1 ██████░░░░░░ 41.65 ns bench2 ████████████ 163.9 ns bench3 ██░░░░░░░░░░ 21.25 ns...
I'd like a simple terminal comparison output a la the graphical output of Criterion. How about if I submit a PR with something like the below if you pass `--bars`?...
With this server: ```lisp (defvar server (websocket-server 9009 :host 'local :on-message (lambda (ws frame) (let* ((b64-image (websocket-frame-text frame)) ) (with-current-buffer (get-buffer-create "*image-text-output*") (insert "\nCHUNK:\n") (insert b64-image)) ) ) :on-open (lambda...