[racket-users] graphics/graphics

2016-03-29 Thread Jos Koot
graphics/graphics is simple and therefore great. Two questions, though. When I have in the definitions window of DrRacket a program that opens a number of viewports, run it, then make corrections in my code and run it again, the viewports are nicely closed, but the positions of the viewports in

[racket-users] slow LaTeX error output while using Scribble?

2016-03-29 Thread Prabhakar Ragde
I've started to do Scribble work within DrRacket with 6.4, and I've noticed that when I use the "Scribble PDF" button, and something goes wrong, the copious LaTeX error output that shows up in the Interactions window is much slower to scroll to completion than before (on the order of tens of

Re: [racket-users] Nested HTML templates

2016-03-29 Thread Jay McCarthy
You can treat templates like function calls, so all the normal ways that you compose Racket functions apply. Jay On Tue, Mar 29, 2016 at 4:15 AM, Sean Kemplay wrote: > Hello, > > Has anyone had any experience using web-server/template? > > If so do you have any

Re: [racket-users] racket/contract warning

2016-03-29 Thread Robby Findler
It is well known but maybe not well liked. :) Robby On Tuesday, March 29, 2016, Tim Brown wrote: > Folks, > > I have just upgraded some software to use Racket 6.4. My code sets > log-max-level to debug, and then cranks up the level on the more > chatty contributors. > >

[racket-users] racket/contract warning

2016-03-29 Thread Tim Brown
Folks, I have just upgraded some software to use Racket 6.4. My code sets log-max-level to debug, and then cranks up the level on the more chatty contributors. In 6.4, a new warning (or collection of warnings) is thrown by the racket/contract topic. Is this intentional? The warning is raised

Re: [racket-users] [racket] typed racket needs editor-snip%

2016-03-29 Thread WarGrey Gyoudmon Ju
Oh, yes, it works. Thank you. On Tue, Mar 29, 2016 at 7:27 PM, Sam Tobin-Hochstadt wrote: > You can use `Editor-Snip%` by requiring it from `typed/racket/gui`. > > Sam > > On Tue, Mar 29, 2016 at 4:09 AM, WarGrey Gyoudmon Ju > wrote: > > Hello, I am

Re: [racket-users] [racket] typed racket needs editor-snip%

2016-03-29 Thread Sam Tobin-Hochstadt
You can use `Editor-Snip%` by requiring it from `typed/racket/gui`. Sam On Tue, Mar 29, 2016 at 4:09 AM, WarGrey Gyoudmon Ju wrote: > Hello, I am currently building a desktop application (which is a component > of a production system for customer) in typed racket. > > I

[racket-users] Web-server multi core

2016-03-29 Thread Sean Kemplay
Hi all, There have been multiple queries about utilising multiple cores with Racket's webserver and also some ideas put forward by Jay and others. Has anyone got something working they would be willing to share? I am really hoping to use racket over clojure for a new project but making use of

[racket-users] Nested HTML templates

2016-03-29 Thread Sean Kemplay
Hello, Has anyone had any experience using web-server/template? If so do you have any suggestions on how to best/compose so there is a base template with placeholders being filled by other templates (which could in turn have even deeper nesting themselves)? Kind regards, Sean -- You

[racket-users] [racket] typed racket needs editor-snip%

2016-03-29 Thread WarGrey Gyoudmon Ju
Hello, I am currently building a desktop application (which is a component of a production system for customer) in typed racket. I found that typed/private/gui-types.rkt does have the definition of Editor-Snip% but does not provide it in typed/racket/base. I do not know where is your prefer place