django-planet

What's new in Django community blogs?

PGDay.IT 2019

May 16, 2019 » Paolo Melchiorre » [Archived Version]

PGDay.IT is the Italian event dedicated to PostgreSQL, one of the most successful open-source projects.

Read More

Conferences

May 15, 2019 » Django Chat » [Archived Version]

How to make the most of a Python or Django conference.

Read More

6 digit OTP for Two Factor Auth (2FA) is brute-forceable in 3 days

May 11, 2019 » Luke Plant » [Archived Version]

OTP/TOTP for two factor auth (2FA/MFA) is very easy to misunderstand and implement insecurely

Read More

PathAI - Robby Grodin

May 8, 2019 » Django Chat » [Archived Version]

An interview with Robby Grodin from PathAI, a medical startup using Django to transform the field of pathology. We discuss switching from Java, microservices vs monoliths, and the challenges of hiring Django developers.

Read More

PyCon IT 2019 “10”

May 2, 2019 » Paolo Melchiorre » [Archived Version]

PyCon Italia is the national conference where professionals, researchers and enthusiasts of the most beautiful programming language gather together.

Read More

Django Software Foundation - Frank Wiles

May 1, 2019 » Django Chat » [Archived Version]

The Django Software Foundation is the non-profit in charge of Django. Its president, Frank Wiles, joins us to discuss how Django is run and how anyone in the community can become more involved.

Read More

Django Custom Month and Year Lookup

April 27, 2019 » Clivern » [Archived Version]

Everyone want to keep Django timezone support but sometimes you need to keep your SQL queries a way from timezone conversion especially if by default your application timezone is UTC. Django will do something like this CONVERT_TZ(`app_incident`.`datetime`, 'UTC', 'UTC')) and it will return Null if the timezone table is empty. Even that conversion is not […] The post Django Custom Month and Year Lookup first appeared on Clivern.

Read More

Making a Shiv App - Building SaaS #20

April 25, 2019 » Django on Matt Layman » [Archived Version]

In this episode, we took our Python package from the previous episode and bundled it together with the Python dependencies using a tool called Shiv from LinkedIn.

Read More

Wagtail CMS - Tom Dyson

April 24, 2019 » Django Chat » [Archived Version]

An interview with Tom Dyson on Wagtail, the leading Django-based CMS used by tens of thousands of organizations including Google, NASA, and the British NHS.

Read More

Django Custom Lookups

April 23, 2019 » Clivern » [Archived Version]

By default Django has a date lookup that support timezones. It actually will wrap your field with CONVERT_TZ in case USE_TZ is True. This is pretty awesome unless you have timezones table empty because this call will return Null. But even the following will work, It is not safe with Daylight saving timing. You can […] The post Django Custom Lookups first appeared on Clivern.

Read More