[racket-users] Re: http-sendrecv puts ##f in post-bytes if unspecified?

2015-06-18 Thread Jay McCarthy
Thanks. I just pushed a fix for this. It is okay for a POST request to have no data. Jay On Wed, Jun 17, 2015 at 6:34 PM, John Clements cleme...@brinckerhoff.org wrote: It appears to me that if you call http-sendrecv with a method of ‘POST, but fail to specify body bytes, that the request

Re: [racket-users] web-server/insta restart

2015-06-18 Thread mail . taspat
On Wednesday, June 17, 2015 at 11:26:16 PM UTC+2, Jay McCarthy wrote: As far as I know, there's nothing in DrRacket for it to Stop and then Start again when you save the file. It's fairly easy to that in Emacs, which I do when I'm working on stuff like that (actually, I have it so my Start

[racket-users] [racket][system] Web server does not sleep when idling in Solaris/OpenIndiana

2015-06-18 Thread WarGrey Gyoudmon Ju
Hello. This is in OpenIndiana. I found the web server does not want to sleep after handling at least one requests. Mostly, it just load the entire core, sometimes it keeps increasing with handling few requests, but there seems one exception, if the client is net/http-client (rather than curl,

Re: [racket-users] web-server/insta restart

2015-06-18 Thread mail . taspat
Thanks, it was helpful -- You received this message because you are subscribed to the Google Groups Racket Users group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit

[racket-users] Reporting Simple Bugs and Fixing Them

2015-06-18 Thread Jeffrey Edgington
Greetings, Recently while looking through the documentation on the Student Languages, I noticed a few mispelled words. (sorry for the beginner questions that follow) Are issues such as this reported through the Bug Report Form under Help? (I only saw a few bugs of this type listed on

Re: [racket-users] Reporting Simple Bugs and Fixing Them

2015-06-18 Thread Alexander D. Knauth
You could probably use either one, but a github pull request would be more helpful, I think. Also, if you’re interested, I found this blog post helpful: http://www.greghendershott.com/2013/04/a-guide-for-infrequent-contributors-to-racket.html Although for the HTDP student languages you’d want

Re: [racket-users] right abstraction for this?

2015-06-18 Thread Geoffrey Knauth
Just the thing I need today for a Racket web-powered table of database info, thanks all. --Geoff On Thursday, June 11, 2015 at 1:55:35 PM UTC-4, Greg Hendershott wrote: IIUC in SQL this would simply be: SELECT student, AVG(rating) FROM scores GROUP BY student Apparently a DSL for