[racket-users] Define/override for mouse event?

2017-10-20 Thread Andreas Olsson
Why do one have to use define/override to get the mouse working on a canvas? Why not just call the method? It’s a little bit confusing. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails fro

[racket-users] Racket on Facebook.

2017-10-21 Thread Andreas Olsson
Yes there is, I did it. 65 members now, slowly increasing. -- 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 op

[racket-users] European Racketeers and conferences

2017-10-21 Thread Andreas Olsson
I’m a Swede and a programming hobbyist. I love Racket and as of now I’m making a space shooter with Pict3D. Had to make a Quaternion module to make flying around possible. I know Racket is thought in Linköpings Universitet here in Sweden, might be good place for a meeting. I might have time fo

[racket-users] Racket on Facebook.

2017-10-21 Thread Andreas Olsson
67! -- 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.com/d/optout.

[racket-users] Hello there!

2016-08-10 Thread Andreas Olsson
I really like Racket although I haven't used it much. It's a shame it isn't more popular, maby a new slogan would make it better. I don't think "A programmable programming language" is very catchy, "Batteries included" might be a better option. I'm planing to make a CAD in Racket, I have done

[racket-users] Linux packages?

2016-08-16 Thread Andreas Olsson
Would be great if it would be packages to download from racket-Lang. At least for the major dists. -- 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

[racket-users] Re: Linux packages?

2016-08-16 Thread Andreas Olsson
If there was packages for the major dists like fedora, ubuntu and suse on the racket homepage it would be easier for people to get. It would help racket becoming a little more known and used. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To

Re: [racket-users] Re: Linux packages?

2016-08-17 Thread Andreas Olsson
The official release for openSuse leap is only 5.3 -- 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, v

[racket-users] Path inside package?

2017-01-09 Thread Andreas Olsson
I'm having a little trouble. I have constructed a package with files that work when tested in a directory, when installed as a package I get a path problem. A function in one file creates places that's loaded with a separate file, the path to the file has proven hard to create. I've tryed func

Re: [racket-users] Path inside package?

2017-01-09 Thread Andreas Olsson
Lock the example in http://docs.racket-Lang.org/reference/places.html That works when the files are in the same directory and run from there. But if you make this into a package the line providing the path to place-worker.rkt doesn't work. How do you get the path to place-worker.rkt when it's

Re: [racket-users] Path inside package?

2017-01-09 Thread Andreas Olsson
It says it needs to be "top level"? -- 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://gr

Re: [racket-users] Path inside package?

2017-01-09 Thread Andreas Olsson
Thank you! That works great! Now I'll try updating my package for racket, hope it works there to. I made a pmap package for racket that can be downloaded in the manager, I've mad map with futures before and now I got a working version with places to. -- You received this message because you a

[racket-users] Futures vs Places?

2017-01-10 Thread Andreas Olsson
I've done implementations with both and start to wonder where futures excel over map and places. Ive done two map implementations using futures and places. In heavy computations places is unquestionably the best, map and futures has small difference. In lighter computation places aren't worth ta

[racket-users] Link to racket doc in scribble?

2017-01-11 Thread Andreas Olsson
I'm trying to include highlighted links in my doc to documents in the racket docs. It's not as easy as I thought. How is it done? I like to have like FUTURE highlighted and clickable. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubsc

[racket-users] "pmap" pkg feedback request!

2017-01-11 Thread Andreas Olsson
I've made a package with two map implementations that use parallelism. "pmapf" use futures and "pmapp" use places, I would like to get some feedback and thoughts about it. You can install it through the DrRacket package manager. -- You received this message because you are subscribed to the G

Re: [racket-users] Link to racket doc in scribble?

2017-01-11 Thread Andreas Olsson
I missed the 'tech function, thanks for the tip! -- 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, vis

[racket-users] String to list?

2017-01-12 Thread Andreas Olsson
If i got " '(2 2 2) " as input via read-line and want to convert it to '(2 2 2), how do I do it? -- 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+un

Re: [racket-users] String to list?

2017-01-13 Thread Andreas Olsson
Thanks, that works great! -- 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.goog

[racket-users] scribble defproc?

2017-01-15 Thread Andreas Olsson
I have function that demand a quoted lambda as an argument, how would you write that in defproc? -- 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+un

Re: [racket-users] scribble defproc?

2017-01-15 Thread Andreas Olsson
The function sends the lambda to a place, and places don't accept procedures, so a quoted lambda is the only option. -- 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

Re: [racket-users] scribble defproc?

2017-01-16 Thread Andreas Olsson
I've never done serialisation befor. I have to learn that then. :-) -- 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. Fo

Re: [racket-users] scribble defproc?

2017-01-16 Thread Andreas Olsson
Strangely I can't get the example working from the docs and serial lambda isn't a cakewalk ether. So if you got a working example please share it! -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving

[racket-users] Places?

2017-01-25 Thread Andreas Olsson
Why isn't it possible to pass a procedure to a place, what is the technical reason for it? -- 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

[racket-users] Racket v6.8

2017-01-25 Thread Andreas Olsson
Every time I se "optimisation" I get happy. The only thing I miss is being able to send s procedure to a place. I don't know why it isn't possible. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receivin

Re: [racket-users] Places?

2017-01-25 Thread Andreas Olsson
Okay, that explains it. I've made a parallel map function but since I can't pass procedures it had to be quoted lambdas, but that works well. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emai

[racket-users] Places performance & channel capacity

2017-06-12 Thread Andreas Olsson
A late answer but I made a parallel map implementation you might try. https://pkgs.racket-lang.org/package/pmap -- 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