How I Use Cargo Workspace to structure my Rust projects Learn how to use Cargo Workspaces to break your project into multiple modules (libs and bins). Updated on 05 Sep, 2025 Rust,Cargo
How I use Postgres DB as Key Value Store in Rust with SQLx This guide demonstrate how to use Postgres DB for you KV storage needs. Updated on 03 Sep, 2025 Rust,PostgreSQL,Sqlx
Minify HTML in Axum Middleware We are going to create Axum middleware which maps to the response and minifies the HTML body on the fly. Published on 01 Sep, 2025 Axum,Rust
Using SQLite Database in Rust with Sqlx Guide to use SQLite database in Rust with Sqlx Published on 13 Apr, 2025 Rust,SQLite,Sqlx
Self Host PostgreSQL With TLS Complete tutorial on how to self-host PostgreSQL instance for production usage with TLS. Published on 03 Feb, 2025 PostgreSQL,Selfhost
AES Encryption in Rust We will use aes-gcm crate from RustCrypto to add AES encryption in our Rust code. In this tutorial we will focus on AES-256. Updated on 15 Aug, 2024 Rust,Cryptography,AES
Python Poetry Cheat Sheet Poetry is an amazing tool for dependancy management in Python, it solves a lot of problems of pip. Here in this Poetry Cheat Sheet we have useful commands that we may need frequently. Published on 30 Oct, 2023 Python,Python Tools,Cheatsheet
pyenv Cheat Sheet pyenv is Python version management tool, it lets you easily switch between multiple versions of Python. Here is the pyenv cheat sheet of all the basic commands list. Published on 22 Oct, 2023 Python,Python Tools,Cheatsheet
Automate Postgres Database Backup and Upload to S3 In this tutorial we will create a bash script to automate postgres database backup from a docker container and native postgres installation then upload to S3 based storage system. Published on 20 Oct, 2023 PostgreSQL,Docker,Backup
How To Take Postgres Database Backup From Docker Container In this tutorial we are gonna use docker exec and cp command along with pg_dump to take Postgres database backup from docker container. Published on 18 Oct, 2023 PostgreSQL,Docker,Tutorial
How To Store and Serve Private Media Files in Django In this blog post we will see how to use AWS S3 to store and serve private media files in django. S3 provides a layer of security by making object private and accessible to those with the valid presigned url. Published on 14 Sep, 2023 Django,AWS S3,file upload
How To Store Django Static and Media Files in AWS S3 In this guide we will use django-storages package to manage our static and media files. Let’s walkthrough the whole process on how to store django static and media files in aws s3. Published on 06 Sep, 2023 Django,AWS S3,file upload
Django Rest Framework File Upload API Uploading file via API is a very common requirement. In this guide we will learn to build Django Rest Framework File Upload API. Updated on 24 Aug, 2025 Django Rest Framework,File Upload,Tutorial
Backup and Restore PostgreSQL database dump in Ubuntu Learn how to backup and restore PostgreSQL database dump in Ubuntu (Linux) and Mac. Published on 20 Jun, 2023 PostgreSQL,Tutorial
How to convert datetime to different timezone in Python using pytz Convert datetime to different timezone in Python using pytz. Published on 20 Jun, 2023 Python
Master Python Interview Questions with Answers Prepare for Python interview questions using this extensive list of questions and answers. This list takes you from beginner to intermediate to advanced level of python concepts in question-answer format. Published on 22 May, 2023 Python
LeetCode 347: Top K Frequent Elements | Python Leetcode 347: You are given an array nums and an integer k, you need to return k most frequent elements. Published on 12 May, 2023 Leetcode,Python