Re: [racket-users] Web server catch exceptions, print stack trace to error-logs, display simple page to user

2016-03-20 Thread WarGrey Gyoudmon Ju
I just use the log facility that operating system uses, say, rsyslog. rsyslog is configured to forward all logs via UDP, and there is another racket UDP server that displays these logs on the terminal or sends to other dev-ops. (rsyslog can be run as a normal user, then you can setup your own log m

Re: [racket-users] Re: custom keybindings (AltGr)

2016-03-20 Thread Bert De Ketelaere
Everything works as expected. Thanks! Van: racket-users@googlegroups.com namens Matthew Flatt Verzonden: vrijdag 18 maart 2016 2:09 Aan: Bert De Ketelaere CC: us...@racket-lang.org Onderwerp: Re: [racket-users] Re: custom keybindings (AltGr) I think th

Re: [racket-users] Racket -> HTML+JavaScript using Urlang and Ractive

2016-03-20 Thread Andrew Gwozdziewycz
On Wed, Mar 16, 2016 at 5:56 AM, Daniel Prager wrote: > Awesomely, Jens has been working on Urlang: a Racket-ish syntax for > JavaScript, using the nanopass compiler infrastructure: > > https://github.com/soegaard/urlang > > and more ambitiously, a Racket (subset) ->JavaScript compiler (rjs), > t

[racket-users] Re: Changing DrRacket preferences with keybindings?

2016-03-20 Thread brendan
Outstanding, thank you. -- 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 https://groups.google.

Re: [racket-users] Changing DrRacket preferences with keybindings?

2016-03-20 Thread Robby Findler
To turn it on: (preferences:set 'drracket:online-compilation-default-on #t) and to turn it off: (preferences:set 'drracket:online-compilation-default-on #f) Robby On Sun, Mar 20, 2016 at 6:44 AM, brendan wrote: > I would like to bind a key to toggle background expansion, but I can't find >

[racket-users] Changing DrRacket preferences with keybindings?

2016-03-20 Thread brendan
I would like to bind a key to toggle background expansion, but I can't find an applicable command in the API docs. Is there any way to do this? Thanks for your help. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this grou

Re: [racket-users] Re: Racket -> HTML+JavaScript using Urlang and Ractive

2016-03-20 Thread Greg Trzeciak
On Wednesday, March 16, 2016 at 10:54:50 PM UTC+1, Jens Axel Søgaard wrote: > 2016-03-16 22:50 GMT+01:00 Greg Trzeciak : > "Urlang is a Racket flavoured S-expression syntax for Javascript" > > > > Can I steal that for a tag-line? >   Feel free! -- You received this message because you are sub

Re: [racket-users] dynamic-require

2016-03-20 Thread Scott Moore
If the definitions are saved as “test.rkt”, the following works:  #lang racket  (module a racket/base (displayln "hello"))  (dynamic-require '(submod "test.rkt" a) #f)  On March 16, 2016 at 12:13:46 PM, Jos Koot (jos.k...@gmail.com) wrote: Hi,   The following example of dynamic-require in the r