Re: [racket-dev] New plot library [Was: (to Jay) Re: What I'm working on]

2011-08-27 Thread Neil Toronto
On 08/27/2011 11:26 AM, Aaron Turon wrote: Hi Neil, I've been using the new plot library for visualizing some benchmark results in three dimensions (# threads, amount of work, throughput). It's very easy to use, and the interactive 3d plots are great. I also plan to use the PDF export for my ne

[racket-dev] Commit messages in git

2011-08-27 Thread Eli Barzilay
I see that it's becoming semi common to write commit messages that look like: | some quick description | more blah blah blah, with more | details about the actual change Note that to do things properly, you should instead have an empty line between the "subject" part and the rest of the

Re: [racket-dev] scribble interaction

2011-08-27 Thread Matthew Flatt
At Sat, 27 Aug 2011 13:22:12 -0400, Matthias Felleisen wrote: > > When you run this program, you don't get the pretty printing you get in plain > Racket or in Dr. Why? The default evaluator for `interaction' is analogous to racket -l racket/base -i where `pretty-print' isn't installed as the

[racket-dev] scribble interaction

2011-08-27 Thread Matthias Felleisen
When you run this program, you don't get the pretty printing you get in plain Racket or in Dr. Why? #lang scribble/manual @(require scribble/eval) @interaction[ (define (f x) `(,(build-list x add1) ,(build-list x add1))) (f 20) ]