Djangocon Costa Rica next year.

2015-08-18 Thread Luis Zárate
Hello everyone, I want to organize the first "djangocon Costa Rica" next year, I know it's too soon to speak about this but it's the first time here and it's very important to do it well, so the community and I are planning to start the coordination of the event, we are looking for place and spons

Re: Efficient Large Binary File Streaming

2015-08-18 Thread kanav002
Yes thank you. I went over that page and decided for my real-time binary stream I would use a FLOT chart: http://www.flotcharts.org/flot/examples/realtime/index.html However, I am trying to figure out how to get the data from a large growing binary file to the FLOT chart. Should I use Streaming

Re: Security News?

2015-08-18 Thread François Schiettecatte
+1 on this. And I also follow http://arstechnica.com, they are usually pretty quick. François > On Aug 18, 2015, at 5:30 PM, Shawn Milochik wrote: > > I've been using this source for over 10 years: > https://www.grc.com/securitynow.htm > > Main page: https://twit.tv/shows/security-now > > >

Re: Security News?

2015-08-18 Thread Aaron C. de Bruyn
Er...I totally spaced another bullet point: * Security list for the application(s) you are using (i.e. django-security) -A On Tue, Aug 18, 2015 at 2:29 PM, Aaron C. de Bruyn wrote: > I personally follow a few: > * The security mailing list for the distos I use (mainly ubuntu-security) > * FullD

Re: Security News?

2015-08-18 Thread Shawn Milochik
I've been using this source for over 10 years: https://www.grc.com/securitynow.htm Main page: https://twit.tv/shows/security-now -- 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, s

Re: Security News?

2015-08-18 Thread Aaron C. de Bruyn
I personally follow a few: * The security mailing list for the distos I use (mainly ubuntu-security) * FullDisclosure mailing list * Slashdot ;) * SoylentNews * Listen to TechSNAP on Fridays (http://www.jupiterbroadcasting.com/) If you're really hard-core you can get the CVE feeds: https://cve.mit

Security News?

2015-08-18 Thread Nikolas Stevenson-Molnar
A question for server admins: how do you stay on top of important security news (e.g., 0-day exploits like Heartbleed, Shellshock, GHOST, etc.)? Do you use feeds, listserves, blogs, Google alerts, Twitter, or some combination thereof? Just curious to see how others handle this. Personally, I u

Re: Web Client

2015-08-18 Thread James Schneider
There is no such thing as a Django web client. Are you talking about building a client application that communicates with another back end that already exists (or that you are implementing in parallel)? Django is a framework designed to facilitate an application acting as a back end, providing serv

[Job] Bioinformatics Software Engineer at UPMC, Pittsburgh, PA

2015-08-18 Thread Keith Callenberg
Hello Django users! I work for a clinical lab within a large hospital system that is striving to improve cancer diagnosis and prognosis. I am looking for a full-time developer/devop to join our team working on a Python/Django-based app for analysis and management of large-scale next generation

Web Client

2015-08-18 Thread ltc.hotspot
Hi Everyone: I want to develop a Django web client and either a Java API (JSON) or Word Press WP Core on the backend server. Is this project feasible, and if so what are this Group’s recommendations? Regards, Hal Sent from Surface -- You received this message because you are subscr

[ANNOUNCE] Django security releases issued (1.4.22, 1.7.10, and 1.8.4)

2015-08-18 Thread Tim Graham
Today the Django team issued multiple releases -- Django 1.4.22, 1.7.10, and 1.8.4 -- as part of our security process. These releases address a security issue, and we encourage all users to upgrade as soon as possible. More details can be found on our blog: https://www.djangoproject.com/weblog/

Re: Static version of a Django website ?

2015-08-18 Thread Luis Zárate
Do you need to do a backup ? (HTTrack , or wget recursive) or you need to migrate to other site? (make a backup from source and database ) you maybe need to collect structed data from the old site, so scrapy ( http://scrapy.org/) can help. 2015-08-14 8:49 GMT-06:00 Stef

Re: Efficient Large Binary File Streaming

2015-08-18 Thread Luis Zárate
Did you look here https://www.djangopackages.com/grids/g/charts/ ? 2015-08-16 18:25 GMT-06:00 kanav002 : > This is my first week using Django and version 1.8 in particular. I'm > trying to figure out the best way to stream a raw, large, continuously > growing binary file to a plotting function th

Re: How to insert recent session Username or UserId in database table in Django?

2015-08-18 Thread Luis Zárate
You need to make a foreignkey to a user. if you have a custom user look here https://docs.djangoproject.com/en/1.8/topics/auth/customizing/#referencing-the-user-model but if it is a simple django authentication use import django.contrib.auth.models import User class Product(models.Model):

Re: modelcluster

2015-08-18 Thread Luis Zárate
This sounds like $ pip install django-modelcluster and maybe put it in the settings file INSTALLED_APPS = ( ... "modelcluster", ... ) This is the repository https://github.com/torchbox/django-modelcluster. it is in github so you can make an issue because this project needs documentation. --

Re: folder created by django startproject is empty

2015-08-18 Thread Arindam sarkar
1.7.9 is quite old version as on date . Current stable version is 1.8.3 .get the latest one . On Tue, Aug 18, 2015 at 7:28 PM, AAKASH GOYAL wrote: > Hi Guys, > > I am new to Django and installed it using the steps mentioned in > http://www.djangobook.com/en/2.0/chapter02.html >

folder created by django startproject is empty

2015-08-18 Thread AAKASH GOYAL
Hi Guys, I am new to Django and installed it using the steps mentioned in http://www.djangobook.com/en/2.0/chapter02.html After installation, when i did -> django-admin.py startproject trial2, it created the folder trial2 but no files created inside it. I tried to google but not able to find sol

Re: User and Permission from admin to the app

2015-08-18 Thread Russell Keith-Magee
Hi Predator, Permission checks need to be manually added to each view, on a case-by-case basis. Django can't "interpret" what your view is trying to do - all user views look the same to Django - so you need to provide the extra information to describe which permissions are needed at any given part

Re: is there anybody who test this django mongodb engine ?

2015-08-18 Thread Russell Keith-Magee
On Tue, Aug 18, 2015 at 3:31 AM, MahdiX wrote: > Hi folks > I just start learning and using mongoDB , it's looks like a really nice > replacement for mysql. > If you're judging relational databases by comparing to MySQL, you're really not doing a fair comparison. MySQL is a *really* bad database

How to insert recent session Username or UserId in database table in Django?

2015-08-18 Thread Remaze Vs
I am new in Django, I am trying to make ecommerce project. I want to Insert recent login username or user Id in database by using formview code.so how to insert recent login username in database? Here is Model.py class Product(models.Model): title = models.CharField(max_

Strip ArrayField input from admin

2015-08-18 Thread Erik Cederstrand
Hi list I have a model with a field defined like this: categories = ArrayField(models.CharField(max_length=32)) This field is accessible via the admin interface, and when I enter comma-separated values in the charfield, they are stored as an array in the DB. However, I just discovered that

Django REST Framework : Serializer field level validation of OneToOne fields

2015-08-18 Thread Ankit Agrawal
The code corresponding to my query is rather big hence I posted it on Stack Overflow - http://stackoverflow.com/questions/32063427/django-rest-framework-serializer-field-level-validation-of-onetoone-fields -- You received this message because you are subscribed to the Google Groups "Django use

Re: Need help in Django Task

2015-08-18 Thread Jani Tiainen
Hi, How much you pay for this work? :) Sorry, you really have to do your homework... On Mon, 17 Aug 2015 12:06:51 -0700 (PDT) conticki wrote: > Task to be done in Django > > Table structure: > >- Movies > - id > - Title > - Description > - Featured image >