Ryan Kramer
Ryan Kramer
### What version of Racket are you using? 8.0.0.11--2021-03-15(c0cfd32/a) ### What program did you run? ``` #lang typed/racket (struct foo ([a : Integer]) #:transparent) (define (crash) (ann (struct-copy foo "hmm")...
I mentioned [on the mailing list](https://groups.google.com/g/racket-users/c/vn3SQb6rOqA) that Typed Racket adds chaperones that seem unnecessary. I only found two examples, but if I find more I will update this item. ###...
In the following example, why does the second form typeset differently than the first? Could we change the second to match the first, or would this be a breaking change?...
Consider this simple scribble document ``` #lang scribble/manual @(define-syntax-rule (show-rb x) (racketblock (if (= 1 x) 'yes 'no))) @(show-rb 2) @(show-rb 3) @(show-rb 4) ``` You can see that the...
When I press the right shift key, `get-key-code` produces `'rshift`, but when I release the same key it produces `'shift`. I think `get-key-release-code` should return `'rshift` in this situation. This...
This is pretty useful when you can't type Japanese. (Does an English translation of the info/*.txt files already exist somewhere? EDIT - I did find the english translations)
I just tried creating an account. The POST to /create-account-submitted returned a 302 redirect to /login, and no error message was displayed. I wondered if maybe it did actually create...
I might be misunderstanding what `choose-with-frequencies` does. I was trying to make a generator that produces integers or symbols at random. I did this: ``` #lang racket (require quickcheck) (define...
Racket 8.12 CS on Windows 10 - The problem appears in DrRacket only (but I suppose the bug could still be in `define-ffi-definer`). I kind of can't believe it, but...