Re: Djang freelance hourly rates

2016-08-28 Thread Sergiy Khohlov
Related to country skills etc. Based on the question I would like to say 3$. 28 серп. 2016 21:41 "Sithembewena Lloyd Dube" пише: > Out of curiousity, what do those who are freelancing on Django projects > charge per hour? > > -- > Regards, > Sithembewena > > -- > You received this message becaus

Re: Trying to overload Django 1.9 JSONField

2016-08-28 Thread Tim Graham
Custom encoding for JSONField will be a feature in Django 1.11. See if https://github.com/django/django/pull/7071/commits/13c3e5d5a05e9c358d212d154addd703cac3bc66 and the documentation tips in that patch helps. On Sunday, August 28, 2016 at 2:15:38 PM UTC-4, Ben Scherrey wrote: > > I have an ap

Djang freelance hourly rates

2016-08-28 Thread Sithembewena Lloyd Dube
Out of curiousity, what do those who are freelancing on Django projects charge per hour? -- Regards, Sithembewena -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Trying to overload Django 1.9 JSONField

2016-08-28 Thread Benjamin Scherrey
I have an application where we've upgraded from Django 1.7 to 1.9 that makes extensive use of the new Postgres JSONField type. Now that JSONField is native to Django I'm trying to get it to work with our existing code base. We have a class that won't automatically serialize to json so I've extended

error in installing django[argon2] -regarding

2016-08-28 Thread sabari rangan
Collecting argon2-cffi>=16.1.0; extra == "argon2" (from django[argon2]) Downloading argon2_cffi-16.1.0.tar.gz (1.2MB) Complete output from command python setup.py egg_info: Package libffi was not found in the pkg-config search path. Perhaps you should add the directory containing `lib

Re: Validators and django.contrib.postgres.fields JSONField

2016-08-28 Thread Ryan Causey
Ah! Fantastic! I love it when I make a dumb mistake because it's an easy solution! Instead of: class DummyModel(models.Model): dummyJson = JSONField(validators = [TestValidator])#Using class, wrong! I should be doing: class DummyModel(models.Model): dummyJson = JSONField(validators = [T

Re: AWS ElasticBeanstalk update without modifying Django wsgi.conf

2016-08-28 Thread Bernard Letourmy
Hello, I just posted an answer on Stackoverflow. Bernard On Friday, 26 August 2016 22:14:44 UTC+8, Ronaldo Bahia wrote: > > I have a django app deployed in AWS EB using autoscaling. This app uses > Django Rest with Token Authentication. In order for this to work, I have to > add the following li

Re: iregex doesn't work properly

2016-08-28 Thread Sergiy Khohlov
I've made mistake : "$" should be in request not "%" this request "SELECT COUNT(*) AS `__count` FROM `clients_order_process` WHERE (`clients_order_process`.`step` = 1 AND `clients_order_process`.`step_description` REGEXP '^заказ роутер.$')" informs that django sends data correctly. Many thanks,

Re: iregex doesn't work properly

2016-08-28 Thread Denis Yu
1. Here is the result in logging table: mysql> select * from mysql.general_log; | 2016-08-28 14:14:17.188990 | crm[crm] @ localhost [] | 934 | 0 | Query| SELECT COUNT(*) AS `__count` FROM `clients_order_process` WHERE (`clients_order_process`.`step` = 1 AN

Re: Validators and django.contrib.postgres.fields JSONField

2016-08-28 Thread Daniel Roseman
On Sunday, 28 August 2016 07:54:47 UTC+1, Ryan Causey wrote: > > So I've dug into this a little more, and I've come up with the debugger > trace below. > > -> dummyModelInstance.full_clean() > c:\program files\python35\lib\site-packages\django\db\models\base.py( > 1210)full_clean() > -> self.cle