Month: September 2022

How to Stop Django or Flask Server without Ctrl + C

Ctrl + C is an awesome and common way to stop most process especially when being run from the terminal. In this tutorial we will explore how to stop a Django application or Flask application without using Ctrl + C. This idea is useful when you are working within a script or a CI/CD pipeline …

How to Stop Django or Flask Server without Ctrl + C Read More »

Logging into PostgreSQL without password prompt

Postgresql is a powerful opensource database software that is very useful as botha production and development database management software.In this tutorial we will explore three ways we can log into a postgresql database without password prompt. By default, when logging into postgresql using psql, you will encounter the fatal error of authentication. psql: error: connection …

Logging into PostgreSQL without password prompt Read More »