Stephen Chang
Stephen Chang
example to draw a vertical dashed gray line ```racket (line 0 100 (pen "gray" 4 "short-dash" "butt" "bevel")) ```
Still investigating but I'm frequently getting this (codemirror?) error: `Uncaught TypeError: Cannot read properties of undefined (reading 'chunkSize')`
Imported from https://github.com/stchang/macrotypes/pull/29
Spun off from here: https://github.com/racketscript/racketscript/issues/210
It doesn't like the `(require "wordle-words.rkt")`. Seems to be due to using `--stdin` flag in combination with an absolute path `require` Error message is: `resolve-module-path-index: can't resolve "self" with non-path...
e.g., some cloud storage like google drive (as suggested by https://github.com/vishesh/racketscript-playground/issues/5#issuecomment-299672208)
Double return of a connection results in two copies of the connection in the idle connection queue. This results in an error when trying to disconnect the conns: ``` (define...
Repeatedly releasing and leasing (from the same thread) results in starvation due to hitting the max number of threads because the old conns never finish getting returned (this is assuming...