[Chicken-users] ssp-handler

2008-01-14 Thread minh thu
Hi, It seems http://trac.callcc.org/changeset/7190 hasn't get to the spiffy egg. Should I get spiffy from svn ? Thanks, mt ___ Chicken-users mailing list Chicken-users@nongnu.org http://lists.nongnu.org/mailman/listinfo/chicken-users

Re: [Chicken-users] ssp-handler

2008-01-14 Thread Peter Bex
On Mon, Jan 14, 2008 at 12:49:05PM +0100, minh thu wrote: Hi, It seems http://trac.callcc.org/changeset/7190 hasn't get to the spiffy egg. Should I get spiffy from svn ? Yes, until there's a new release you'd have to use trunk. Sorry for that. Cheers, Peter -- http://sjamaan.ath.cx --

[Chicken-users] local metafile use to create an egg

2008-01-14 Thread minh thu
Hi, Currently, I use a makefile to build an egg. Is it possible to create it with the same process .meta file is automatically used when committing in svn (i.e. locally, with no real commit)? Thanks, mt ___ Chicken-users mailing list

Re: [Chicken-users] Adding (system-string) somewhere

2008-01-14 Thread Ozzi
Yes, that egg was pointed out to me. It's a neat egg, but I feel more complicated than necessary 9 times out of 10. Ivan Raikov wrote: Hello, If I understand this description correctly, the runcmd egg has this functionality. Take a look at its documentation and see if it would work for you.

[Chicken-users] Talk about Chicken

2008-01-14 Thread Alejandro Forero Cuervo
I recently saw this interesting talk about Chicken: http://www.youtube.com/watch?v=yL_-1d9OSdk You may want to check it out. :-) Alejo. http://azul.freaks-unidos.net/ ___ Chicken-users mailing list Chicken-users@nongnu.org

Re: [Chicken-users] Talk about Chicken

2008-01-14 Thread Mario Domenech Goulart
On Mon, 14 Jan 2008 10:59:22 -0800 Alejandro Forero Cuervo [EMAIL PROTECTED] wrote: I recently saw this interesting talk about Chicken: http://www.youtube.com/watch?v=yL_-1d9OSdk You may want to check it out. :-) You may also want to try a web REPL for chicken:

Re: [Chicken-users] Adding (system-string) somewhere

2008-01-14 Thread Zbigniew
Ozzi [EMAIL PROTECTED] writes: I am using the following code, which just takes a single string: (define (system-string cmd) (string-chomp (with-input-from-pipe cmd read-all))) On Jan 14, 2008 1:45 PM, Kon Lovett [EMAIL PROTECTED] wrote: See also

Re: [Chicken-users] Adding (system-string) somewhere

2008-01-14 Thread Zbigniew
On Jan 10, 2008 10:11 AM, Ozzi [EMAIL PROTECTED] wrote: I am using the following code, which just takes a single string: (define (system-string cmd) (string-chomp (with-input-from-pipe cmd read-all))) First, the string-chomp is pointless unless you're reading only one line. Why chomp just

Re: [Chicken-users] local metafile use to create an egg

2008-01-14 Thread Mario Domenech Goulart
Hi minh thu, On Mon, 14 Jan 2008 15:02:55 +0100 minh thu [EMAIL PROTECTED] wrote: Currently, I use a makefile to build an egg. Is it possible to create it with the same process .meta file is automatically used when committing in svn (i.e. locally, with no real commit)? I don't know if I

[Chicken-users] Re: Adding (system-string) somewhere

2008-01-14 Thread Ivan Shmakov
Zbigniew [EMAIL PROTECTED] writes: I am using the following code, which just takes a single string: (define (system-string cmd) (string-chomp (with-input-from-pipe cmd read-all))) First, the string-chomp is pointless unless you're reading only one line. Why chomp just the last

Re: [Chicken-users] local metafile use to create an egg

2008-01-14 Thread minh thu
14 Jan 2008 18:02:15 -0200, Mario Domenech Goulart [EMAIL PROTECTED]: Hi minh thu, On Mon, 14 Jan 2008 15:02:55 +0100 minh thu [EMAIL PROTECTED] wrote: Currently, I use a makefile to build an egg. Is it possible to create it with the same process .meta file is automatically used when

Re: [Chicken-users] Re: Adding (system-string) somewhere

2008-01-14 Thread John Cowan
Ivan Shmakov scripsit: Believe me or not, but the POSIX Shell behaves exactly that way. Sensibly so: what you get is a newline-separated list of lines, with no random empty line at the end to confuse matters. I'm not sure that one should mimic the Shell behaviour in Scheme,

Re: [Chicken-users] Adding (system-string) somewhere

2008-01-14 Thread Elf
how about (define (system-string . args) (string-chomp (with-input-from-pipe (string-join args ) read-all))) this is assuming that you meant that you want to construct a single command from a list of strings. if you wanted each string to be a separate command it could look like: (define

Re: [Chicken-users] Re: Adding (system-string) somewhere

2008-01-14 Thread Zbigniew
On Jan 14, 2008 5:00 PM, John Cowan [EMAIL PROTECTED] wrote: Ivan Shmakov scripsit: Believe me or not, but the POSIX Shell behaves exactly that way. Sensibly so: what you get is a newline-separated list of lines, with no random empty line at the end to confuse matters. It is sensible