Re: [racket-users] pasteboard% applications

2015-12-01 Thread Byron Davies
Thank you. That’s very helpful. > On Dec 1, 2015, at 10:20 PM, Benjamin Greenman > wrote: > > I know of two (but I don't know them well) > > The PLT card games library: > https://github.com/racket/games/blob/master/cards/classes.rkt >

Re: [racket-users] web-server dispatch and places

2015-12-01 Thread George Neuner
On 12/1/2015 9:51 PM, Robby Findler wrote: You probably thought of this, but could you hand the ports themselves over to the worker places after the dispatch but before any other processing happened? Or maybe just make each place run the entire server and then hand the ports over before dispatchi

Re: [racket-users] pasteboard% applications

2015-12-01 Thread Benjamin Greenman
I know of two (but I don't know them well) The PLT card games library: https://github.com/racket/games/blob/master/cards/classes.rkt Matthias's Acquire game: https://github.com/mfelleisen/Acquire/blob/master/tree-game.rkt On Tue, Dec 1, 2015 at 10:39 PM, Byron Davies wrote: > Does anyone have

[racket-users] pasteboard% applications

2015-12-01 Thread Byron Davies
Does anyone have an application using pasteboard%? I want to try one, and I’d love to see an example. Byron Byron Davies, Ph.D. StarShine Academy International Schools Revolutionizing children’s learning. Seeking the Global Learning XPRIZE http://starshineplanet.com -- You received this m

Re: [racket-users] web-server dispatch and places

2015-12-01 Thread Robby Findler
You probably thought of this, but could you hand the ports themselves over to the worker places after the dispatch but before any other processing happened? Or maybe just make each place run the entire server and then hand the ports over before dispatching and dispatch inside each worker place? Ro

[racket-users] web-server dispatch and places

2015-12-01 Thread George Neuner
Hi all, I'm not sure exactly how to phrase my questions, so let me give a bit of background. I have a fairly large (and growing) web middleware application that uses serve/servlet and currently exposes about 90 function URLs, all of the form "/api//". The application grew precipitously an

[racket-users] Racket PPA updated for v6.3

2015-12-01 Thread Asumu Takikawa
Hi all, For people who use Ubuntu, the PPA for Racket is now updated to v6.3: https://launchpad.net/~plt/+archive/ubuntu/racket I've only tested it on Wily. Let me know if you find any problems. Cheers, Asumu -- You received this message because you are subscribed to the Google Groups "Rac

[racket-users] suggested default on warning

2015-12-01 Thread JCG
After having a silly runtime error of a missing argument, I wondered why arity wasn't checked (on hash-ref in my case). Looking through old thread started by Roman Klochkov, I saw the answer to his and my identical question on arity checks. I changed my logging to show in Dr Racket and include

Re: [racket-users] Hello everybody, i need help again :( sorry but i dont know much of Racket

2015-12-01 Thread Alejandro López
But i need this in the old library :( -- 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://

Re: [racket-users] Hello everybody, i need help again :( sorry but i dont know much of Racket

2015-12-01 Thread Alejandro López
El lunes, 30 de noviembre de 2015, 19:02:35 (UTC-5), Matthias Felleisen escribió: > Don't use the old X graphics library. Use > > #lang racket/gui > > instead. -- Matthias > > > > On Nov 30, 2015, at 3:51 PM, Alejandro López wrote: > > > I have this code: > > > > > > #lang racket > > ;

Re: [racket-users] "bad variable linkage" after restarting handin server under load

2015-12-01 Thread Paolo Giarrusso
Hi! After a new deadline, I got good news and bad news. # Good news I think *this* bug is fixed. Evidence: instead of crashing at the first reboot under load, the server survived to 10-20 automated reboots with the students submitting en masse without never showing the bug. So not only the patch

[racket-users] Re: [racket] How to extend image-snip% with a new field

2015-12-01 Thread Guilherme Ferreira
Hello again, I have a more concrete problem here. The following class extends the image-snip% with a float (size), and overrides the methods copy and write as supposed. (define extend-snip% (class image-snip% (init-field [size 20.0]) (super-new) (define/override (copy) (n

[racket-users] send-generic vs send

2015-12-01 Thread Nota Poin
I don't really get what generics are. What is the difference between this: (define show (generic window<%> show)) (send-generic a-window show #t) and this: (send a-window show #t) If the former re...uses the (generic window<%> show) method to be "more" efficient, then why isn't show already a