Re: Issue Deploying Django

2012-08-02 Thread Trevor Joynson
You are trying to install packages system-wide when you don't have credentials to do so. You can install everything you need without cluttering the system itself. For instance, use a virtualenv and set your PREFIX. Either way, happy hacking! On Aug 1, 2012 8:32 PM, "JJ Zolper" wrote: > I'm try

Re: uwsgi install question

2012-09-05 Thread Trevor Joynson
lude path, most ./configure scripts have such an option, something ala --with-libxml=/path/to/libxml2 2) (More work without more profit) Download libxml2 and compile it, specify the include path in the same way as above but you'll also need to put this path in your LD_LIBRARY_PATH env variable.

Re: Help me choose OS for django server

2012-10-30 Thread Trevor Joynson
I highly recommend fail2ban. And definitely use SSH key only auth (PasswordAuthentication no). I've had a box with a 32 char random password get brute forced. Took three years to do, but it happened. On Oct 30, 2012 4:08 PM, "Nikolas Stevenson-Molnar" wrote: > > > First, is this a good idea? D

Re: Insane sql logging

2013-01-15 Thread Trevor Joynson
We just parse MySQL binary logs as they only contain modification queries. You can dump the real SQL query out petty easily. I can send you the base of our dump script if you want. On Jan 15, 2013 10:26 AM, "Matteo Suppo" wrote: > Good question. We decided not to do it at database level because w

Re: Questions about vim

2013-02-14 Thread Trevor Joynson
Jedi seems to work the best for me. My vim config is on my github if you're interested: http://github.com/akatrevorjay/dotfiles-vim.got On Feb 12, 2013 6:23 AM, "Yussi" wrote: > Hi, > I was wondering if there are any vim users here who managed to get a > productive working environment for djang

Re: Questions about vim

2013-02-14 Thread Trevor Joynson
.git not .got, sorry on a phone On Feb 14, 2013 1:31 PM, trevorjoyn...@gmail.com wrote: Jedi seems to work the best for me. My vim config is on my github if you're interested: http://github.com/akatrevorjay/dotfiles-vim.got On Feb 12, 2013 6:23 AM, "Yussi" wrote: Hi, I was wondering if there a

Re: Is there a plan for Django to handle NoSQL databases natively?

2013-03-27 Thread Trevor Joynson
I've had good experiences using mongoengine with django. It's not django's ORM but it's very similar to it. On Mar 26, 2013 12:36 PM, "Donnie Darko" wrote: > I really like Django. I've fiddled around a bit with Rails, but I > personally prefer Django's logic. I also prefer Python over Ruby. Agai