Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread ydjango
Hahahaha, thats good friday night humor. I look forward to reading your upcoming book. Hopefully it has the same humor. On point 7) what about a navy seal who want to retire and start a software business, how do I design a selection system to avoid those. I do not want future competitor snooping

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread Steven Armstrong
James Bennett wrote on 05/16/08 20:11: > On Fri, May 16, 2008 at 11:52 AM, ydjango <[EMAIL PROTECTED]> wrote: >> I do not want to make it easy for some one who breaks in , either a >> outsider or may be an rougue hosting provider employee or contractor, >> to easily get access to all the

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread James Bennett
On Fri, May 16, 2008 at 11:52 AM, ydjango <[EMAIL PROTECTED]> wrote: > I do not want to make it easy for some one who breaks in , either a > outsider or may be an rougue hosting provider employee or contractor, > to easily get access to all the information - data and code. Again: if this is your

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread jonknee
On May 16, 12:52 pm, ydjango <[EMAIL PROTECTED]> wrote: > I do not want to make it easy for some one who breaks in , either a > outsider or may be an rougue hosting provider employee or contractor, > to easily get access to all the information - data and code. > Your best bet is to ensure that

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread ydjango
I do not want to make it easy for some one who breaks in , either a outsider or may be an rougue hosting provider employee or contractor, to easily get access to all the information - data and code. I would have thought by this time easy solutions for this issue would have been found. I know I

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread jonknee
On May 16, 6:02 am, ydjango <[EMAIL PROTECTED]> wrote: > I have propriety commercial code and some formula/ algo > implementations which I do not want to expose. > Hence I do not want to upload .py source files Expose to whom? Your files (even on shared hosting) are still just your files. If

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread Julien
I would see at least two things to keep your files secure on a shared hosting service: make sure permissions are set correctly (e.g. don't give any right to "others" to your home directory), and use a complex password for your account (using numbers, a mix or lowercased and uppercased characters,

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread James Bennett
On Fri, May 16, 2008 at 9:15 AM, ydjango <[EMAIL PROTECTED]> wrote: > Yes, that was another thing on my mind, how to encrypt password in > settings.py You don't. I think either you misunderstand how shared hosting works, or you have an extremely bad host. -- "Bureaucrat Conrad, you are

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread ydjango
Yes, that was another thing on my mind, how to encrypt password in settings.py On May 16, 3:20 am, "James Bennett" <[EMAIL PROTECTED]> wrote: > On Fri, May 16, 2008 at 5:02 AM, ydjango <[EMAIL PROTECTED]> wrote: > > I have propriety commercial code and some formula/ algo > > implementations

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread James Bennett
On Fri, May 16, 2008 at 5:02 AM, ydjango <[EMAIL PROTECTED]> wrote: > I have propriety commercial code and some formula/ algo > implementations which I do not want to expose. > Hence I do not want to upload .py source files If your host's setup would allow other users to view this code, you have

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread Gabriel
ydjango gmail.com> writes: > I have propriety commercial code and some formula/ algo > implementations which I do not want to expose. > Hence I do not want to upload .py source files > > Is rewriting that business logic in a compiled langauge only way out? > how do I call it from python,

Re: how to avoid uploading .py source files to shared hosting server

2008-05-16 Thread ydjango
I have propriety commercial code and some formula/ algo implementations which I do not want to expose. Hence I do not want to upload .py source files Is rewriting that business logic in a compiled langauge only way out? how do I call it from python, Using web services? Ashish On May 15, 2:51 

Re: how to avoid uploading .py source files to shared hosting server

2008-05-15 Thread jonknee
> I want to upload only .pyc and no source files. Whats the best way to > make sure my .pyc works there. Your best bet is to probably upload the .py files, run the app and then delete the .py files. That way you're sure that the .pyc files are compatible. But unless you really need to get rid of

how to avoid uploading .py source files to shared hosting server

2008-05-15 Thread ydjango
Hi, I am developing on python 2.4.4 and django svn branch. I want to upload to webfaction which if I ssh and run python is python 2.4.3. Application installed is Django trunk/mod python 3.3.1/ python 2.5 I want to upload only .pyc and no source files. Whats the best way to make sure my .pyc