Re: [Tutor] remote code execution

2011-02-15 Thread Bill Allen
If SAMBA is available on the Linux server, create a share and put your source files there. Then, map that CIFS share on you Windows workstation and work on the files on the share with you local IDE. Run the code via a ssh or telnet connection session back to the Linux server. Editing and runnin

Re: [Tutor] remote code execution

2011-02-15 Thread Steve Willoughby
On 15-Feb-11 12:41, S de Haan wrote: Thanks all for the Answers, and the desktop machine is running mostly Windows... So when building a Linux focussed application it becomes difficult to run in locally... However mounting the server share on the Desktop shouldn't be that difficult. Thanks! It

Re: [Tutor] remote code execution

2011-02-15 Thread S de Haan
On Tue, Feb 15, 2011 at 8:26 PM, Alan Gauld wrote: > > "S de Haan" wrote > > > I was wondering if there is a IDE or another environment that allows me to >> execute python code from my desktop computer on remote servers within >> my LAN without having to move the python files to and from the ser

Re: [Tutor] remote code execution

2011-02-15 Thread Alan Gauld
"S de Haan" wrote I was wondering if there is a IDE or another environment that allows me to execute python code from my desktop computer on remote servers within my LAN without having to move the python files to and from the server. So you have the Python interpreter on a server and you a

Re: [Tutor] remote code execution

2011-02-15 Thread Izz ad-Din Ruhulessin
Just tested that, doesn't work. Have you considered installing SVN or any other version control system? 2011/2/15 Izz ad-Din Ruhulessin > Send your code as a raw text string and use eval on it maybe > > 2011/2/15 ian douglas > >> Sounds like it should be possible via SSH, but I have no idea h

Re: [Tutor] remote code execution

2011-02-15 Thread Izz ad-Din Ruhulessin
Send your code as a raw text string and use eval on it maybe 2011/2/15 ian douglas > Sounds like it should be possible via SSH, but I have no idea how you'd > set that up within Eclipse. > > > On 02/15/2011 10:50 AM, S de Haan wrote: > > For instance, Im working on my local machine with Eclipse

Re: [Tutor] remote code execution

2011-02-15 Thread Emile van Sebille
On 2/15/2011 10:50 AM S de Haan said... Hi guys, I was wondering if there is a IDE or another environment that allows me to execute python code from my desktop computer on remote servers within my LAN without having to move the python files to and from the server. For instance, Im working on my

Re: [Tutor] remote code execution

2011-02-15 Thread ian douglas
Sounds like it should be possible via SSH, but I have no idea how you'd set that up within Eclipse. On 02/15/2011 10:50 AM, S de Haan wrote: For instance, Im working on my local machine with Eclipse, but using the Interpreter that is on one of my Linux Servers. _