Re: [racket-users] Can scribble/lp2 typeset comments within chunks?

2015-12-23 Thread Jay McCarthy
They aren't actually converted to whitespace, instead, the layout algorithm looks at the source location information and renders things where they were in the original file, the presence of the comments basically makes a jump in the line numbers. I do think it would be nice to just convert them

[racket-users] Problems with 'provide'

2015-12-23 Thread David Storrs
Hi folks, I have a file, "util.rkt", the complete text of which is: == QUOTE #lang racket (require racket/pretty) (define (print-prettier s) (parameterize ([pretty-print-columns 1]) (pretty-print s))) (define (hash-key-is? h k v) (and (hash-has-key? h k) (equal?

Re: [racket-users] Abridged summary of racket-users@googlegroups.com - 17 updates in 5 topics

2015-12-23 Thread sagar tripathy
I am trying to make a gui for htdp/image packet with interactive windows but the documentation for windows is bit fuzzy. I do not know where to start. On Wed, Dec 23, 2015 at 1:06 PM, wrote: > racket-users@googlegroups.com >

[racket-users] Racket server for production use

2015-12-23 Thread Marc Kaufmann
Hi all, I am hopefully going to implement a minor website for gathering survey data for some research I am doing. Due to data privacy and so on, I want to be extra careful about security. First, I didn't understand the security concerns about URLS at

[racket-users] Re: Problems with 'provide'

2015-12-23 Thread JCG
looking at your output, it seems clear that the first (require "./util.rkt") was subjected to (read) but not evaluated. Otherwise, the second line would be a prompt instead of the echoed s-expression. Check your .racketrc file. -- You received this message because you are subscribed to

Re: [racket-users] Problems with 'provide'

2015-12-23 Thread Robby Findler
Is it possible you have two util.rkt files and you are in the wrong directory? Robby On Wednesday, December 23, 2015, David Storrs wrote: > Hi folks, > > I have a file, "util.rkt", the complete text of which is: > > == QUOTE > #lang racket > > (require

[racket-users] Re: Problems with 'provide'

2015-12-23 Thread David Storrs
Nope, only one. And I checked to make sure I was in the right directory. On Wednesday, December 23, 2015, Robby Findler wrote: > Is it possible you have two util.rkt files and you are in the wrong > directory? > > Robby > > On Wednesday, December 23, 2015, David