[Factor-talk] [PATCH] curl support in factor.sh

2008-02-07 Thread Jorge Acereda Maciá
Hi, This patch adds support for curl (installed by default on Mac OS X). Greetings, Jorge Acereda curl.patch Description: Binary data - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R)

[Factor-talk] old factor posts

2008-02-07 Thread Phil Dawes
Hi Slava, Your early posts about factor from the jroller site seem to have gone[1], and jroller's robot.txt forbids the wayback machine from crawling them. Are they backed up on the web somewhere? Thanks, Phil [1] http://www.jroller.com/page/slava

Re: [Factor-talk] Space-invaders error

2008-02-07 Thread Scott Brown
Run this in the Factor listener: space-invaders about This explains what you need to do. Chris. Okay, I understand now. Thank you. - Get the name you always wanted with the new y7mail email

Re: [Factor-talk] distributed concurrency example

2008-02-07 Thread Chris Double
Hi Ed, I had test code in the factor file containing the distributed concurrency implementation but it appears to have been removed. Pity. receive { { { ?from ?tag _ } [ `{ ?tag message received } ?from send process-1 ] } { _[ process-1 ] } } match-cond ;

Re: [Factor-talk] concurrency example: synchronous pong-server

2008-02-07 Thread Chris Double
Feel free to submit a patch to fix it. Chris. On Feb 6, 2008 9:39 PM, Eduardo Cavazos [EMAIL PROTECTED] wrote: Chris, This example is from the Synchronous Sends article in the Concurrency documentation: : pong-server ( -- ) receive { { { ?from ?tag ping } [ ?tag pong 2array ?from

Re: [Factor-talk] Futures

2008-02-07 Thread Chris Double
It's a bug. It should do what promises do, and return the future value. On Feb 6, 2008 9:56 PM, Eduardo Cavazos [EMAIL PROTECTED] wrote: Chris, Let's create this future: [ 1 sleep hey ] future Then dup it and wait for it: dup ?future . After a while I hey is printed. I still

Re: [Factor-talk] [PATCH] curl support in factor.sh

2008-02-07 Thread Daniel Ehrenberg
Umm, before saying that, I should have checked with the person who might be able to provide that... I shouldn't volunteer others' resources... sorry. On Thu, Feb 7, 2008 at 3:24 PM, Jorge Acereda Maciá [EMAIL PROTECTED] wrote: On Feb 7, 2008, at 4:11 PM, Daniel Ehrenberg wrote: Maybe you

Re: [Factor-talk] [PATCH] curl support in factor.sh

2008-02-07 Thread Jorge Acereda Maciá
On Feb 7, 2008, at 4:11 PM, Daniel Ehrenberg wrote: Maybe you should try to create a git repository so it's easier to distribute your code while recognizing any change conflicts that occur. If you don't have the server resources, we can help you around that. That'd be great, I only have

Re: [Factor-talk] [PATCH] curl support in factor.sh

2008-02-07 Thread Daniel Ehrenberg
Jorge, that's great! It'll make it much easier for me to use the install script, since I've been having trouble installing wget. Maybe you should try to create a git repository so it's easier to distribute your code while recognizing any change conflicts that occur. If you don't have the server

Re: [Factor-talk] Futures

2008-02-07 Thread Slava Pestov
Chris Double wrote: It's a bug. It should do what promises do, and return the future value. I'll fix it. Slava - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008.