[racket-users] Using Redex

2015-03-28 Thread Paul van der Walt
Hello Racketeers, TLDR: I want to implement [1] using Redex. I hope somebody can shed some light on my problem. I'm trying to use Redex (which looks super cool, but i'm having trouble wrapping my head around all of it), and i'm a little stuck (i've tried RTFM, but i'm a little lost anyway). I won

[racket-users] manifesto move

2015-03-28 Thread Matthias Felleisen
Now that the scribble is mostly cleaned up, I have moved the manifesto to a less temporary place: http://www.ccs.neu.edu/home/matthias/manifesto/ -- Matthias -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group an

Re: [racket-users] changing REPL Language in TryRacket

2015-03-28 Thread Alexander D. Knauth
On Mar 28, 2015, at 8:02 AM, Alexander D. Knauth wrote: > Oh. > > I forgot that try-racket didn’t call current-print within the sandbox. > > In that case maybe you could, in addition, change this line: > https://github.com/jarcane/try-racket/blob/master/main.rkt#L75 > To something like > [e

[racket-users] Re: [racket] Intercepting WebSocket connections to the Racket web server?

2015-03-28 Thread Alexis King
I’ll look into what you suggested, but as a general followup to this, what would make the most sense for the WebSocket API to be able to receive these intercepted requests? I’m looking at the old net/websocket API as a reference, and it appears that the only supported server API is using ws-serv

Re: [racket-users] changing REPL Language in TryRacket

2015-03-28 Thread Chrakhan Barzanji
> > no! still does not! > result: > > (quote (1 2 3 4)) > ###(mcons > 1 (mcons 2 (mcons 3 (mcons 4 '() > > '(1 2 3 4) > (mcons 1 (mcons 2 (mcons 3 (mcons 4 '() > > i want: > > '(1 2 3 4) > (1 2 3 4) > > > changed: > > (define (make-ev) > (parameterize ([sandbox-output