Re: [racket] How about a python ffi for Racket?

2013-10-04 Thread Matthias Felleisen
One of my former student researchers performed this work (Daniel Silva supervised by Philippe Meunier). My rough impressions: -- he tried three different approaches in roughly 2003-2005, the embedding Racket into a C process seemed to work best -- nothing worked perfectly at the time because

Re: [racket] [scsh vs Racket] examples

2013-10-04 Thread Sam Tobin-Hochstadt
The port value is GC'ed, but you have to explicitly close it, or use `custodian-shutdown-all`, to free the underlying resources. See the docs here: http://www.cs.utah.edu/plt/snapshots/current/doc/reference/ports.html Sam On Thu, Oct 3, 2013 at 6:32 PM, Vlad Kozin wrote: > got it. But just to c

Re: [racket] [scsh vs Racket] examples

2013-10-04 Thread Vlad Kozin
understood. Thank you! --- Vlad Kozin On Oct 4, 2013, at 11:14 AM, Sam Tobin-Hochstadt wrote: > The port value is GC'ed, but you have to explicitly close it, or use > `custodian-shutdown-all`, to free the underlying resources. See the > docs here: > http://www.cs.utah.edu/plt/snapshots/curr

[racket] Hash array mapped tries

2013-10-04 Thread Jon Zeppieri
The HAMT library I began working on at the RacketCon Hackathon is now available at [https://github.com/97jaz/hamt]. Suggestions are welcome. -Jon Racket Users list: http://lists.racket-lang.org/users

Re: [racket] Hash array mapped tries

2013-10-04 Thread Jay McCarthy
Can you list it on the package server? I don't believe any changes to the code are required. On Fri, Oct 4, 2013 at 12:03 PM, Jon Zeppieri wrote: > The HAMT library I began working on at the RacketCon Hackathon is now > available at [https://github.com/97jaz/hamt]. Suggestions are welcome. > >

Re: [racket] How about a python ffi for Racket?

2013-10-04 Thread Philippe Meunier
Matthias Felleisen wrote: >One of my former student researchers performed this work (Daniel >Silva supervised by Philippe Meunier). The web site for the project: http://plt-spy.sourceforge.net/home.html And the code: http://sourceforge.net/projects/plt-spy/ Anyone who's interested in playing with