Re: [racket-users] Split-pane editing

2020-12-30 Thread John Kemp
I have recently been trying to do this too, as it looks like DrRacket *should* allow this… > On Dec 30, 2020, at 4:45 AM, Laurent wrote: > > in DrRacket you can hit View|Split, and you can split multiple times. That’s true, but that doesn’t seem to result in the same behavior as emacs, where

Re: [racket-users] Is it safe to `read` untrusted input?

2021-02-28 Thread John Kemp
> On Feb 28, 2021, at 2:50 PM, Ryan Kramer wrote: > > […] > > I could use JSON or XML, but that just seems silly when you have a Racket > client talking to a Racket server. > > Are my concerns founded? Are there any existing solutions? Thanks for any > advice. I don’t think this

[racket-users] modular-expt and infix notation

2021-02-12 Thread John Kemp
Hello, I’ve been working with finite fields in racket, and although I solved my actual problem (numbers were too large for (modulo (expt)), using modular-expt, I had a question when I looked at modulo-expt, which uses what appeared to be infix operators: > (define (modular-expt* n a b)