Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
tryolabs/metamon
-
safarijv/yet-another-django-profiler
-
DjangoTricks: How to Find the Performance Bottlenecks in Your Django Views?
-
Having troubles with 'latin1_swedish_ci' on your MySQL Databases? Specially `OperationalError (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")`? No problem, fix it using Django's shell.Thi
-
Having troubles with 'latin1_swedish_ci' on your MySQL Databases? Specially `OperationalError (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")`? No problem, fix it using Django's shell.Thi
-
2014 — Django Development Mistakes in 2014 — Computer Science, Math, and Statistics — Medium
With 2015 rapidly approaching, I took some time to think about what I would have done differently from a development perspective in 2014. In my previous article, 11 Things I wish I knew about Django Before Starting My Company, I started the list. Now it’s time to add to it! via Pocket -
Caktus Group : Why I Love Technical Blogging
-
Automatically associating users with django models on save | mindlace
-
Django REST framework
-
How To Tango With Django 1.5.4 — How to Tango with Django 1.5.4
-
Django documentation | Django documentation | Django
-
Development dashboard | Django
The Django development dashboard got a facelift yesterday: Many thanks to @relekang for the porting help! #django -
The User Profile Pattern in Django | Amino Software Development Blog
-
The User Profile Pattern in Django | Amino Software Development Blog
-
Introduction — JuliaBase, the samples database
Your scientific institute or working group creates lots of samples, and your team needs a tool to keep track of them? JuliaBase is made for exactly that! It is a database solution for samples, their processing and their characterization, with the following features: intuitive browser-based interface, fully working even on mobile devices maximal flexibility for being adapted perfectly to your production and measurement setups, and to your workflows possibility to manage more than one department in a single database fine-grained access control connects to your LDAP server for user management keeps track of samples across sample splits support for pre-evaluating raw data and creating plots automatic notification of changes in your samples sample management by sample series, topics, and tags arbitrarily complex searches made easy, e.g. “find all samples with infrared measurements, deposited together with a sample on glass substrate with a conductivity greater than 10−6 S/cm; oh yes, and only from this year and made by John” export to spreadsheets automatic lab notebooks database interaction from own programs, e.g. for connecting your measurement setup directly to the database fully translatable; core is available in English and German so far fully brandable; adjust the look to your corporate identity and/or … -
How to Find the Performance Bottlenecks in Your Django Views?
if you need to optimize for performance of django project here you can find very nice article which tells you ... -
reactjs/react-python
-
Slack integration for Django - Chris Lamb
-
Tutorial — Django MongoDB Engine
-
Using MongoDB with Django
-
Introduction — JuliaBase, the samples database
Your scientific institute or working group creates lots of samples, and your team needs a tool to keep track of them? JuliaBase is made for exactly that! It is a database solution for samples, their processing and their characterization -
Overview of Single vs. Multi Server Architecture - Irrational Exuberance
-
peterbe/django-static - Template tags for better serving static files from templates in Django
django_static is a Django app that enables as various template tags for better serving your static content. It basically rewrites references to static files and where applicable it does whitespace optmization of the content. By making references to static content unique (timestamp included in the name) you can be very aggressive with your cache-control settings without ever having to worry about upgrading your code and worrying about visitors using an older version. -
stephenmcd/django-overextends - Circular template inheritance for Django
A Django reusable app providing the overextends template tag, a drop-in replacement for Django's extends tag, which allows you to use circular template inheritance. The primary use-case for overextends is to simultaneously override and extend templates from other reusable apps, in your own Django project. -
tomchristie/django-rest-framework - REST APIs for Django
Django REST framework is a powerful and flexible toolkit for building Web APIs. Some reasons you might want to use REST framework: The Web browsable API is a huge usability win for your developers. Authentication policies including OAuth1a and OAuth2 out of the box. Serialization that supports both ORM and non-ORM data sources. Customizable all the way down - just use regular function-based views if you don't need the more powerful features. Extensive documentation, and great community support.