Re: [racket] remote tasks

2012-05-16 Thread Eli Barzilay
A few minutes ago, Kevin Tew wrote: > On 05/15/2012 09:37 AM, Eli Barzilay wrote: > > More issues: > > > > * [...] > > > > The "/var/tmp" path means that this was started from the nightly > > build -- is there some test that uses that port? If so, then > > it's a bad idea to risk leaving a r

Re: [racket] remote tasks

2012-05-16 Thread Kevin Tew
On 05/15/2012 09:37 AM, Eli Barzilay wrote: Yesterday, Kevin Tew wrote: Attached is a distributed places program that will do what you want. It requires the latest checkout from git head. You must have ssh public-key authentication setup on all the nodes. For easy use, it also requires that r

Re: [racket] remote tasks

2012-05-15 Thread HP Wei
Thanks very much for Neil's detailed outline for a solution; and Kevin's example code I will digest them and ask questions again if I stumble into issues. --hp On 05/13/2012 01:53 PM, HP Wei wrote: Would you please suggest to me some links so that I can get some info or even better

Re: [racket] remote tasks

2012-05-15 Thread Eli Barzilay
Yesterday, Kevin Tew wrote: > Attached is a distributed places program that will do what you want. > > It requires the latest checkout from git head. You must have ssh > public-key authentication setup on all the nodes. For easy use, it > also requires that racket and remote-eval.rkt be installe

Re: [racket] remote tasks

2012-05-14 Thread Sam Tobin-Hochstadt
You could include it here: https://github.com/plt/racket/wiki/Artifacts Sam On May 14, 2012 11:01 AM, "Kevin Tew" wrote: > I'm not familiar with the wiki, but I don't mind if it gets included. > > Kevin > > On 05/14/2012 02:16 PM, Matthias Felleisen wrote: > >> Is this something for the Wiki on

Re: [racket] remote tasks

2012-05-14 Thread Matthias Felleisen
Someone point Kevin to the Artifacts wiki On May 14, 2012, at 5:01 PM, Kevin Tew wrote: > I'm not familiar with the wiki, but I don't mind if it gets included. > > Kevin > > On 05/14/2012 02:16 PM, Matthias Felleisen wrote: >> Is this something for the Wiki on Tricks and Hacks with Racket? >

Re: [racket] remote tasks

2012-05-14 Thread Kevin Tew
I'm not familiar with the wiki, but I don't mind if it gets included. Kevin On 05/14/2012 02:16 PM, Matthias Felleisen wrote: Is this something for the Wiki on Tricks and Hacks with Racket? On May 14, 2012, at 1:18 PM, Kevin Tew wrote: Attached is a distributed places program that will do w

Re: [racket] remote tasks

2012-05-14 Thread Matthias Felleisen
Is this something for the Wiki on Tricks and Hacks with Racket? On May 14, 2012, at 1:18 PM, Kevin Tew wrote: > Attached is a distributed places program that will do what you want. > > It requires the latest checkout from git head. > You must have ssh public-key authentication setup on all th

Re: [racket] remote tasks

2012-05-14 Thread Kevin Tew
Attached is a distributed places program that will do what you want. It requires the latest checkout from git head. You must have ssh public-key authentication setup on all the nodes. For easy use, it also requires that racket and remote-eval.rkt be installed in the same place on all three machi

Re: [racket] remote tasks

2012-05-13 Thread Neil Van Dyke
HP Wei wrote at 05/13/2012 03:53 PM: Suppose I am on a master machine A and there are two other machines B and C. On A, in racket, I would like to programatically initiate one server on B and another on C. The 'server' is presumably a 'repl' that can execute a block of code, sent from A. [ Let