Django

<< ALL BLOG POSTS
Serverless Django: Exploring the State of the Art on AWSServerless Django: Exploring the State of the Art on AWS
|
April 12, 2021

Serverless Django: Exploring the State of the Art on AWS

As deployment options for web apps have multiplied in the past few years, AWS Lambda continues to stand out as a powerful, simple way to run a web app with minimal maintenance and cost — if there is low traffic.

READ MORE
Hacking Django Channels for Fun (and Profit)Hacking Django Channels for Fun (and Profit)
|
March 18, 2021

Hacking Django Channels for Fun (and Profit)

LoudSwarm by Six Feet Up, a Django-based virtual event platform, has always supported Slack for instant, in-app text communication. In addition to Slack, clients were requesting Discord integration, so Six Feet Up’s expert team of developers found a solution.

READ MORE
How to Leapfrog a Massive Django/Python Upgrade SuccessfullyHow to Leapfrog a Massive Django/Python Upgrade Successfully
|
February 17, 2021

How to Leapfrog a Massive Django/Python Upgrade Successfully

Migrating from Django 1.7 to 3.1 is no small task. Besides having to deal with the upgrade of Django itself, you shouldn't forget that an upgrade like this implies an upgrade from Python 2 to 3 as well.

READ MORE
What is Faceted Search or Faceted Navigation?What is Faceted Search or Faceted Navigation?
|
July 24, 2019

What is Faceted Search or Faceted Navigation?

Faceted search provides site visitors with a quick and intuitive way to narrow down their search results in real time...

READ MORE
How to write an RFP for your Web Portal projectHow to write an RFP for your Web Portal project
|
May 17, 2019

How to write an RFP for your Web Portal project

Whether your web portal project is about a corporate intranet, an online collaboration platform for researchers or a app designed to help members manage their data, you will most likely need to write an RFP to identify possible suitable vendors...

READ MORE
What to look for in your site’s searchWhat to look for in your site’s search
|
March 12, 2019

What to look for in your site’s search

Tips if you are looking for Google-like search features...

READ MORE
How  to Create Custom Password Validators in DjangoHow  to Create Custom Password Validators in Django
|
April 30, 2018

How to Create Custom Password Validators in Django

Django comes with basic password validators but you can also create your own if you have more specific needs. Here are some tips for doing that...

READ MORE
Django Commands: makemigrations or migrate?Django Commands: makemigrations or migrate?
|
April 20, 2018

Django Commands: makemigrations or migrate?

When running Django migrations, which command should you run: 'makemigrations' or 'migrate'? Here is a simple how-to manual...

READ MORE
Django Forms: Handling form data in the POSTDjango Forms: Handling form data in the POST
|
March 12, 2018

Django Forms: Handling form data in the POST

Some forms will require custom changes to be made with the data sent to the form. Here are some tips for getting that data in the view...

READ MORE