Chas Emerick

Results 63 issues of Chas Emerick

e.g. `transition my top to -100px` does nothing; the `-100px` needs to be wrapped in stringy quotes to yield the desired behaviour. Indicated as a bug in discord, so here's...

Echoing a very similar issue (#194), this doesn't appear to work with version 4.4: ```ocaml type foo = A type bar = B of foo [@opaque] | C [@@deriving show]...

Deriving's [show plugin](https://github.com/ocaml-ppx/ppx_deriving#plugin-show) allows one to use `@printer` to specify custom printers, e.g. from that README: ```ocaml type file = { name : string; perm : int [@printer fun fmt...

enhancement

I had need of a topographical sort that additionally reported which edge happened to offend in the case of a cyclic graph. To get there, I added this to my...

Some parsers have demonstrated difficulty with colon-prefixed plain scalars within flow sequences, e.g.: ```yaml [[], :@] --- [[], :%] --- [[], :^] --- [[], :$] --- [[], ::] --- [[],...

The first of these two patches adds authentication to the server, and the second trivially adjusts the message function to use it (as an example). I could easily imagine the...

Breaking
Bug
Security

7888 is "free", at least in IANA. Most users want to put an nREPL port on their app, and that should always be on a typical port. Auto-selection of a...

Enhancement

In a development environment, one often has many nREPL servers running, sometimes more than one per project. This means that it's sometimes difficult to keep track of which ports are...

Java
Feature Request

...particularly important where less sophisticated clients and polling-oriented transports are involved (e.g. HTTP). (from https://dev.clojure.org/jira/browse/NREPL-15)

Enhancement
Good First Issue

(Originally proposed in #28, which couldn't be applied due to the 0.2.0 rewrite landing.) Basic outline: 1. Once in a CLJS REPL, `:cljs/pause` would be intercepted and shift the REPL...