Re: [racket] which distro packages for racket 5.3.1 release?

2012-12-20 Thread Hendrik Boom
On Thu, Dec 20, 2012 at 03:26:58PM -0500, Eli Barzilay wrote: > On October 25th, Neil Van Dyke wrote: > > For the distro-specific packages of Racket 5.3.1 available at > > "http://racket-lang.org/download/";, any chance of a "Linux i386 > > (Debian squeeze)" package? > > Not unless someone has a s

Re: [racket] Bug in place-image?

2012-12-20 Thread Matthias Felleisen
On Dec 19, 2012, at 3:47 PM, Miguel Villaverde wrote: > While working on HTDP2, I noticed the following: place-image seems to snip > the last column and row of pixels in its background image. This does not > happen when using overlay instead, or if the background is a scene. > place-image/align s

Re: [racket] [plt-edu] the most functional man in the world

2012-12-20 Thread John Burnette
Though his code is flawless, he tests it anyway...You could (should) make t-shirts Racket Users list: http://lists.racket-lang.org/users

Re: [racket] [plt-edu] the most functional man in the world

2012-12-20 Thread John Burnette
Although he is Italian, spaghetti is beneath him... Racket Users list: http://lists.racket-lang.org/users

Re: [racket] the most functional man in the world

2012-12-20 Thread Mike G.
> Hi Matthias, > > Just one question: is the goal that we interpret the video ironically? > > I thought I would ask, so that someone from the team could explain what > was > intended with this script. My read, after watching it several times, and > comparing it to videos about other novice programm

Re: [racket] Compatibility

2012-12-20 Thread Eli Barzilay
Three hours ago, Hendrik Boom wrote: > On Mon, Dec 03, 2012 at 12:12:22PM -0500, Matthias Felleisen wrote: > > > > Yes, there are 64bit builds for Mac and Windows. See the download option > > for DrRacket, formerly known as DrScheme: > > > > http://www.racket-lang.org/download/ > > > Not for

Re: [racket] which distro packages for racket 5.3.1 release?

2012-12-20 Thread Eli Barzilay
On October 25th, Neil Van Dyke wrote: > For the distro-specific packages of Racket 5.3.1 available at > "http://racket-lang.org/download/";, any chance of a "Linux i386 > (Debian squeeze)" package? Not unless someone has a such a build machine to volunteer... > Currently available for Racket 5.3

Re: [racket] [plt-edu] the most functional man in the world

2012-12-20 Thread Raoul Duke
On Thu, Dec 20, 2012 at 5:32 AM, mulhern wrote: > "People hang on his every line; but usually he needs just one." > "He can write Lisp programs, in C." > "He once had a seg fault, just to see how it feels." > Stuff like that seems pretty easy to come up with. please, contract mulhern to redo the

Re: [racket] Compatibility

2012-12-20 Thread Hendrik Boom
On Mon, Dec 03, 2012 at 12:12:22PM -0500, Matthias Felleisen wrote: > > Yes, there are 64bit builds for Mac and Windows. See the download option for > DrRacket, formerly known as DrScheme: > > http://www.racket-lang.org/download/ > Not for 64-nit Linux? -- hendrik Rack

Re: [racket] Modular arithmetic

2012-12-20 Thread Jens Axel Søgaard
2012/12/20 Erich Rast : > Hi, > > For compatibility I need modular arithmetic for some > standard numeric types such as signed 64bit integer, unsigned 64bit > integer, signed 32 bit integer, and so on. Preferably it shouldn't be > very slow. > > What's the best way to get this? Is there a package f

[racket] Modular arithmetic

2012-12-20 Thread Erich Rast
Hi, For compatibility I need modular arithmetic for some standard numeric types such as signed 64bit integer, unsigned 64bit integer, signed 32 bit integer, and so on. Preferably it shouldn't be very slow. What's the best way to get this? Is there a package for this already? Best, Erich ___

Re: [racket] the most functional man in the world

2012-12-20 Thread Norman Gray
Greetings. On 2012 Dec 20, at 02:52, Carl Eastlund wrote: > It is a parody of the ads compiled here: > https://www.youtube.com/watch?v=U18VkI0uDxE That's useful to know, but might be a little opaque outside the US, if it's based on an advert sequence shown only there. Without this clue, the v

Re: [racket] [plt-edu] the most functional man in the world

2012-12-20 Thread Robby Findler
That segfault line cracked me up. Robby On Thu, Dec 20, 2012 at 7:32 AM, mulhern wrote: > The humor is implicit. > > "all the girls in the CS department" is either the empty set or (just > possibly) a singleton set. > > A venerable old math/logic joke. > > But I know that if my advisor were to

Re: [racket] [plt-edu] the most functional man in the world

2012-12-20 Thread mulhern
The humor is implicit. "all the girls in the CS department" is either the empty set or (just possibly) a singleton set. A venerable old math/logic joke. But I know that if my advisor were to encounter such a thing he would write "Fully apposite?" in the margin, and I would realize it was under

Re: [racket] label-string

2012-12-20 Thread Laurent
Hi, >From the Help Desk: (new tab-panel% [choices choices] [...] → (is-a?/c tab-panel%) choices : (listof label-string?) So it wants a list of label-string. Then clicking on `label-string?` gives: """ (label-string? v) → boolean? v : any/c Returns #t if v is a string whose length is l

[racket] label-string

2012-12-20 Thread heraklea
Hello friends, how can I convert a vector (define Vec #(1 2 3 4)) to a label-string to make a tab-panel?? I try this (define tab-panel (new tab-panel% (parent dialog) (choices (vector->list Vec but it fails due to contract violation: expected: