Re: [racket-users] Racket v7.6

2020-02-13 Thread John Cowan
Thanks. So in that case Racket/CS files would be expected to be larger. On Thu, Feb 13, 2020 at 9:14 PM Sam Tobin-Hochstadt wrote: > > > On Thu, Feb 13, 2020, 9:11 PM John Cowan wrote: > >> >> >> On Thu, Feb 13, 2020 at 8:27 PM 'John Clements' via users-redirect < >> us...@plt-scheme.org> wrot

Re: [racket-users] Racket v7.6

2020-02-13 Thread John Cowan
On Thu, Feb 13, 2020 at 8:27 PM 'John Clements' via users-redirect < us...@plt-scheme.org> wrote: (Compiled code remains significantly larger compared to the default > implementation.) > Does this refer to bytecode or machine code? John Cowan http://vrici.lojban.org/~cowanco.

[racket-users] Racket v7.6

2020-02-13 Thread 'John Clements' via users-redirect
-- Racket version 7.6 is now available from https://racket-lang.org/ * DrRacket's scrolling has been made more responsive. * DrRacket's dark mode support is improved for Mac OS and Unix. * Racket CS is ready for production

Re: [racket-users] How to stream file uploads with the Racket web server?

2020-02-13 Thread Brian Adkins
I tried replying earlier today, but somehow the post got deleted - could've been user error I suppose. Anyway, the gist of the response was how I continue to be amazed by how often I get pleasant surprises with Racket - either there is some facility to do what I want that I just haven't found y

Re: [racket-users] How to stream file uploads with the Racket web server?

2020-02-13 Thread Bogdan Popa
The version of the web-server that will be included with Racket 7.6 changes the way file uploads are handled so that they get offloaded to disk after a certain threshold (similar to how that nginx module you linked to works). You can check out the pre-release docs for details: * https://pre-rele

[racket-users] How to stream file uploads with the Racket web server?

2020-02-13 Thread Brian Adkins
I'm posting a file to my web app using the following form: ... I use a simple function to create a hashtable of attributes: (define (form-values req) (for/hash ([ b (in-list (request-bindings/raw req)) ]) (cond [ (binding:form? b) (values (bytes->string/utf

Re: [racket-users] plan to build a continuous integration system in racket

2020-02-13 Thread Sage Gerard
Some core devs are already looking into building a new CI/CD for use in the project. Maybe it would be worth taking a look at the Racket Slack and ask if you can participate in the #ci channel. Re: web dev, maybe one of my posts can help, but it's more of a supplement to a guide you already rea