Re: manipulate n insert field values

2016-06-04 Thread Peter of the Norse
I found this: https://github.com/trevorprater/pymorton The problem is I’ve only done one search for Z curve, and I found three different ways to do it for lat/long. Since there’s no standard implementation, there’s very little point to it. If you are doing it to make it easier to search, then

Re: Looking for a way to broadcast live video streams. Is it possible with Django ?

2016-06-04 Thread Adam
On Tuesday, January 27, 2015 at 10:32:48 PM UTC-8, Jeremy Hermelin wrote: > > > Thank you Russ and Cal for your answers. > > I'll take a look at WebRTC that seems to be a revolution in that domain, > and it's a matter of time before it will spread to Safari or IE. > Thanks also, Does anyone

[ANNOUNCE] Django bugfix release issued: 1.9.7

2016-06-04 Thread Tim Graham
Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2016/jun/04/bugfix-release/ -- 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

Re: Django inside Docker

2016-06-04 Thread Akhil Lawrence
No where in the dockerfile you are copying your project files or mounting external file system.. Are you doing those at runtime with the help of docker compose or fig? If yes paste those code snippets also.. On Saturday, 4 June 2016 02:44:55 UTC+5:30, Davi Diório Mendes wrote: > > Hi everyon

Custom imagefield to accept base64 string

2016-06-04 Thread Ruud Schroen
Hi, I'm working on a custom field which should accept a base64 string received from the HTML canvas element, and then convert it to a image and save it to the database. This is what I have so far: class Base64ToImageField(models.ImageField): description = "Accepts a base64 string and conve