排序
Learning to work on existing codebases.
Learning to work on existing codebases., Working with legacy code is probably the most common part of a developer’s job in the software industry. Unless you’re only going to work...
Refactoring an Overgrown Notifications Class in Django
Refactoring an Overgrown Notifications Class in Django,Photo by Rajesh Appalla on Unsplash After working with the same code base for a while, there comes a time when a developer st...
How to Build a Message Delivery Status in Django
How to Build a Message Delivery Status in Django, Today, we will make a realtime message delivery status framework with Django and Pusher. A basic understanding of Django and Vue i...
Full-Text Search in Django with PostgreSQL
Full-Text Search in Django with PostgreSQL, PauLoX's Article (8 Part Series) 1 Full-Text Search in Django with PostgreSQL 2 Updating a Django queryset with annotation and subquery ...
Django transactional emails made easy
Django transactional emails made easy,Transactional emails are an important way to keep users engaged when you're building a community site like Facteroid. It's importation to pay ...
Django Chat Room App
Django Chat Room App,Can any one help me build a chat room app? Where People will be able to create chat rooms with their desired name and then invite people to chat there. guest a...
dev-toolbar a web developer’s best friend!
dev-toolbar a web developer’s best friend!,The dev-toolbar is a simple concept we came up with many years ago. The idea is to provide developers with a toolbelt full of tricks (sh...
“How to use email as user identifier in Django 1.11”
'How to use email as user identifier in Django 1.11', (This post was originally published on ariera.github.io) I found several guides and tips on how to do this. They were all very...
Generating mock data using Mimesis: Part I
Generating mock data using Mimesis: Part I, The ability to generate mock but valid data comes in handy in app development, where you need to work with databases. Filling in the dat...
Testing against unmanaged models in Django
Testing against unmanaged models in Django, The problem My Django application is supposed to read the tables of an already existing database. So the models of the database are gene...
Managing RESTful URLs in Django Rest Framework
Managing RESTful URLs in Django Rest Framework,We've all been taught about RESTful API design. It does not take much to realize that these endpoints POST /products/1/delete POST /p...
How should I package my Django app?
How should I package my Django app?,I have a Django application that serves media (in the vein of Plex or Kodi) that I want to make easy to distribute for others to use. It require...