[racket] Question about string conversion

2013-07-17 Thread m0nastic
Hi, I'm super new to Racket, but had what I hope isn't too embarrassingly easy of a question. I'm writing a program that parses SMTP headers in order to automate some business-y workflow. I managed to put together a series of "regexp-match*"s to parse out the specific identifiers I was looking for

Re: [racket] learn racket in 10 minutes

2013-07-17 Thread Greg Hendershott
On Mon, Jul 15, 2013 at 6:41 PM, Roger Rousseau wrote: > Adam has put the Racket version online: http://learnxinyminutes.com/ > But the syntax highlighting is wrong, it seems to be for Scheme rather than > Racket > There is syntax highlighting for Racket on Github, am I right ? ... I will > chase

Re: [racket] Generating Type 1 PDF fonts from plot

2013-07-17 Thread Neil Toronto
On 07/17/2013 07:06 PM, David Van Horn wrote: On 7/17/13 8:45 PM, David Van Horn wrote: I have generated PDF files from some plots with labels. The font for the label ends up embedded as a PostScript font (according to pdffonts). Is there a way to use Type 1 fonts? Here's an example: > mor

Re: [racket] Generating Type 1 PDF fonts from plot

2013-07-17 Thread David Van Horn
On 7/17/13 8:45 PM, David Van Horn wrote: I have generated PDF files from some plots with labels. The font for the label ends up embedded as a PostScript font (according to pdffonts). Is there a way to use Type 1 fonts? Here's an example: > more sin.rkt #lang racket (require plot) (plot (fu

[racket] Generating Type 1 PDF fonts from plot

2013-07-17 Thread David Van Horn
I have generated PDF files from some plots with labels. The font for the label ends up embedded as a PostScript font (according to pdffonts). Is there a way to use Type 1 fonts? Here's an example: > more sin.rkt #lang racket (require plot) (plot (function sin (- pi) pi #:label "y = sin(x)")

Re: [racket] learn racket in 10 minutes

2013-07-17 Thread Roger Rousseau
Hello This is now corrected. Eli's contributions have been merged and the online website has been updated Thanks everybody R On Wed, Jul 17, 2013 at 8:19 PM, Stephen De Gabrielle < stephen.degabrie...@acm.org> wrote: > Looks good. > > Weirdly the download is a .py instead of .rkt : > > >Get t

Re: [racket] Roadmap for Racket

2013-07-17 Thread Sean McBeth
Rickets On Wed, Jul 17, 2013 at 2:42 PM, Sean Kanaley wrote: > Rocket > > > On Wed, Jul 17, 2013 at 12:52 PM, Joe Gilray wrote: > >> Racket2 name suggestion: >> >> (add1 racket) >> >> :-) >> >> -Joe >> >> >> On Wed, Jul 17, 2013 at 7:29 AM, John Griffin wrote: >> >>> I meant "LATER when it arr

Re: [racket] Roadmap for Racket

2013-07-17 Thread Sean Kanaley
Rocket On Wed, Jul 17, 2013 at 12:52 PM, Joe Gilray wrote: > Racket2 name suggestion: > > (add1 racket) > > :-) > > -Joe > > > On Wed, Jul 17, 2013 at 7:29 AM, John Griffin wrote: > >> I meant "LATER when it arrives", not "LATE when it arrives." >> >> Thanks again, >> -JG >> >> On Jul 17, 201

Re: [racket] Roadmap for Racket

2013-07-17 Thread Joe Gilray
Racket2 name suggestion: (add1 racket) :-) -Joe On Wed, Jul 17, 2013 at 7:29 AM, John Griffin wrote: > I meant "LATER when it arrives", not "LATE when it arrives." > > Thanks again, > -JG > > On Jul 17, 2013, at 9:56 AM, John Griffin wrote: > > Matthew, Robby, Jay, Sam, and Matthias, > > Th

Re: [racket] typed/file/md5 not declared as expected

2013-07-17 Thread Sam Tobin-Hochstadt
On Wed, Jul 17, 2013 at 2:58 AM, Tim K. wrote: > > This has worked in plain old Racket and also with my import. Not really > a surprise though because the definition in typed/file/md5 on my system > is: > > (require/typed file/md5 >[md5 ((U Bytes Input-Port) -> Bytes)]) > > What ha

Re: [racket] Roadmap for Racket

2013-07-17 Thread John Griffin
I meant "LATER when it arrives", not "LATE when it arrives." Thanks again, -JG On Jul 17, 2013, at 9:56 AM, John Griffin wrote: > Matthew, Robby, Jay, Sam, and Matthias, > > Thanks very much for the thoughtful response. Having a new racket2 language > and smaller runtimes will be welcome

Re: [racket] Roadmap for Racket

2013-07-17 Thread John Griffin
Matthew, Robby, Jay, Sam, and Matthias, Thanks very much for the thoughtful response. Having a new racket2 language and smaller runtimes will be welcome improvements on the technical front. I look forward to a settling on a stable 5.3.6 for current code as well as seeing version 6 late when

Re: [racket] learn racket in 10 minutes

2013-07-17 Thread Stephen De Gabrielle
Looks good. Weirdly the download is a .py instead of .rkt : >Get the code: learnracket.py -- Stephen De Gabrielle On Mon, Jul 15, 2013 at 11:41 PM, Roger Rousseau wrote: > I didn't realize Racket had "unless" already... I will change it to while. > > Adam has put the Racket version online: