[racket-dev] Unexpected make-temporary-file behavior

2010-12-08 Thread Casey Klein
The documentation for `make-temporary-file' says, "The `template' argument must be a format string suitable for use with `format' and one additional string argument (where the string contains only digits)." I take that to mean that the following expression should always produce true: (regexp-matc

[racket-dev] DrDr 'shmget' errors

2010-12-08 Thread John Clements
I'm seeing this result from DrDr on one of my files: (gracket:19767): Gdk-WARNING **: shmget failed: error 28 (No space left on device) ... and I'm assuming that it's a drdr issue related to running files that involve graphical display, and that I don't need to worry about it. Is this correct?

Re: [racket-dev] DrDr 'shmget' errors

2010-12-08 Thread Jay McCarthy
We talked about it on IRC. I looked up the error and it says there is no more shared memory. I checked all my limits and they are all extremely high. I don't think it is a real problem with the machine, but I don't exactly know. If anyone can give me advice about what this means, let me know. Jay

Re: [racket-dev] Unexpected make-temporary-file behavior

2010-12-08 Thread Casey Klein
On Wed, Dec 8, 2010 at 12:23 PM, Casey Klein wrote: > The documentation for `make-temporary-file' says, "The `template' > argument must be a format string suitable for use with `format' and > one additional string argument (where the string contains only > digits)." > > I take that to mean that th

Re: [racket-dev] DrDr 'shmget' errors

2010-12-08 Thread Jay McCarthy
Alright. I have 4096 shared memory segments with nothing attached to them. I think this means that gr2 has a bug because it is not returning them, maybe by not closing gdk properly? Jay On Wed, Dec 8, 2010 at 1:47 PM, Jay McCarthy wrote: > We talked about it on IRC. > > I looked up the error a

[racket-dev] getting a language level without starting drracket

2010-12-08 Thread John Clements
Several aspects of the stepper's behavior depend on the language level that the user is in. Historically, the division between graphical and non-graphical apps has meant that it's simpler for the stepper to make up a fake language level, rather than get a "real" one for testing. However, the w

Re: [racket-dev] getting a language level without starting drracket

2010-12-08 Thread Robby Findler
For the #lang-based teaching languages, I hope to eventually move to the sandbox for DrRacket. For the language-dialog based ones, I don't plan to change them, just leaving them as legacy until people stop using them. So I'd suggest giving the sandbox a try and seeing if you can get the stepper wo

[racket-dev] full tree text search

2010-12-08 Thread Jon Rafkind
I whipped up a webservice that provides full text search on the racket tree. Its written in java using lucene+jetty. It doesn't have a lot of bells and whistles right now but if people find it useful I can add things to it. ​http://crystalis.cs.utah.edu:8080/search/ I'll try to leave the server u

Re: [racket-dev] full tree text search

2010-12-08 Thread Matthias Felleisen
So how do you use it? I entered code: and I got a huge stack trace. On Dec 8, 2010, at 8:26 PM, Jon Rafkind wrote: > I whipped up a webservice that provides full text search on the racket > tree. Its written in java using lucene+jetty. It doesn't have a lot of > bells and whistles right n

Re: [racket-dev] full tree text search

2010-12-08 Thread Eli Barzilay
Is this different from a recursive grep? (See also `git grep' -- and there's a web interface for that, http://git.racket-lang.org//plt?a=search&h=HEAD&st=grep&s=foo ) Four hours ago, Jon Rafkind wrote: > I whipped up a webservice that provides full text search on the > racket tree. Its written i

Re: [racket-dev] full tree text search

2010-12-08 Thread Jon Rafkind
On 12/08/2010 10:12 PM, Eli Barzilay wrote: > Is this different from a recursive grep? > > (See also `git grep' -- and there's a web interface for that, > http://git.racket-lang.org//plt?a=search&h=HEAD&st=grep&s=foo ) > Oh I had no idea git grep existed. Well that looks good enough for now. (BTW

Re: [racket-dev] full tree text search

2010-12-08 Thread Noel Welsh
Depending on how it is setup, it could be. There should be some processing to find words with similar meanings, for example. I expect your wife knows more :-) BTW,I think this is a really interesting and possibly useful thing to experiment with. Just storing the search logs on docs.racket-lang.org

Re: [racket-dev] full tree text search

2010-12-08 Thread Jon Rafkind
On 12/08/2010 11:46 PM, Noel Welsh wrote: > Depending on how it is setup, it could be. There should be some > processing to find words with similar meanings, for example. I expect > your wife knows more :-) > > BTW,I think this is a really interesting and possibly useful thing to > experiment with.

Re: [racket-dev] full tree text search

2010-12-08 Thread Eli Barzilay
40 minutes ago, Jon Rafkind wrote: > On 12/08/2010 10:12 PM, Eli Barzilay wrote: > > Is this different from a recursive grep? > > > > (See also `git grep' -- and there's a web interface for that, > > http://git.racket-lang.org//plt?a=search&h=HEAD&st=grep&s=foo ) > > Oh I had no idea git grep exis