Re: [racket-users] How to load net/jwt

2017-09-10 Thread Shu-Hung You
This command should install the net-jwt library for you: raco pkg install net-jwt --Shu-Hung On Mon, Sep 11, 2017 at 9:15 AM, Chongkai Zhu wrote: > Hi all, > > https://docs.racket-lang.org/jwt/index.html > > It seems I just need to (require net/jwt) in racket 6.10 and everything > should work.

[racket-users] How to load net/jwt

2017-09-10 Thread Chongkai Zhu
Hi all, https://docs.racket-lang.org/jwt/index.html It seems I just need to (require net/jwt) in racket 6.10 and everything should work. But: Welcome to DrRacket, version 6.10 [3m]. Language: racket, with debugging; memory limit: 128 MB. . unsaved-editor:2:9: cannot open module file module pa

Re: [racket-users] Racket Web servlet performance benchmarked and compared

2017-09-10 Thread Jon Zeppieri
On Sat, Sep 9, 2017 at 6:25 PM, Jon Zeppieri wrote: > It looks like after roughly 2^14 requests are > `accept`-ed, there's a *long* delay before the next one succeeds. Okay, the above happens when the host runs out of ephemeral ports. So, not a big deal. --- My tests suggest the same thing (w.r.

Re: [racket-users] BST fold function and finding a node

2017-09-10 Thread Matthias Felleisen
> On Sep 10, 2017, at 9:10 AM, Fernando Basso > wrote: > > Thanks for the help. I found it amazingly well worded, giving me proper > insights to reach a solution without giving the solution proper, which I > happen to believe to be one of the most effective ways to help one learn > anything.

Re: [racket-users] BST fold function and finding a node

2017-09-10 Thread Fernando Basso
Thanks for the help. I found it amazingly well worded, giving me proper insights to reach a solution without giving the solution proper, which I happen to believe to be one of the most effective ways to help one learn anything. Much appreciated. And indeed, I reworked the code using the four st