ARTICLES

Running a DAG in Apache Airflow

May 15, 2023

DAGs are one of the most important concepts in Airflow. They are used to automate the scheduling of different tasks that you may need to run in your application.

Apache AirflowDAG

Setting up Apache Airflow in Windows using WSL

May 12, 2023

Windows Sub System for Linux has been a boon for the developers using Windows as their development machine. In this article, I will explain how to leverage the power of WSL to setup airflow for your local development environment.

Apache AirflowWindowsWSL

Setting Up a Proper Project structure for FastAPI Applications

May 06, 2023

In this article, I will explain how I try to design the project structure of my production ready FastAPI applications. This is one of the important aspects of Software Engineering.

FastAPIPythonSolution Design

How I implement my FastAPI applications - Part I

Apr 27, 2023

This will be a series of articles to get started in a FastAPI application along with database implementation and authentication as well. This is the template application that I have been using in my projects.

FastAPIPython

How to integrate wkhtmltopdf in .NET applications

Apr 25, 2023

wkhtmltopdf is a very popular open source PDF manipulation library. With some very easy steps, you can easily integrate this wonderful library into your own dotnet applications.

.NET CorePDFWKHTMLTOPDF

How to serve a static frontend from FastAPI application

Apr 24, 2023

Sometimes, there is a need to serve a frontend application with the backend API application in a same URL. In this article, I will demonstrate how this can be achieved in case of FastAPI application as a backend.

FastAPIVueJSRest APIs