Changing deployment policies in AWS
In a previous article, I discussed four different deployment policies you can employ when deploying applications to AWS. Some of […]
Changing deployment policies in AWS Read More »
In a previous article, I discussed four different deployment policies you can employ when deploying applications to AWS. Some of […]
Changing deployment policies in AWS Read More »
When building or working with docker containers, you may get error messages like the one below relating to a lack
Freeing up space used by docker containers. Read More »
In this post I’ll show you how to encrypt and decrypt strings using the AWS Encryption SDK and AWS KMS.
Encryption using Python and AWS Read More »
AWS Lambda is a serverless compute service that lets you run code without provisioning or managing servers. Using Lambda, you
How to create an AWS Lambda layer Read More »
This post discusses the most common deployment methods: all at once, rolling, immutable, and blue/green.
AWS: Deployment methods Read More »
This post explains how to install and setup nginx as a reverse proxy to gunicorn and web server to serve static files in Django.
Setting up Django for Deployment: Nginx Read More »
Web Servers like Apache or NGINX are great for handling HTTP requests. Unfortunately,they typically cannot communicate with Python applications directly. That is where gunicorn comes in.
Learn how to install, configure and run gunicorn with Django in this article.
Setting up Django for Deployment: Gunicorn Read More »
In this post, I show you two ways of installing and configuring nginx on Linux.
Installing nginx on Linux Read More »
In this post, I cover a couple of ways to flatten lists of lists or lists of mixed data in standard Python and 3rd party libraries such as Django, Pandas and Matplotlib.
How to flatten a list of lists in Python Read More »