schedule Jul 2, 2026 · 2 min read How to configure airflow 3 with google oauth login? Google OAuth configuration setup for Airflow 3 Helm chart - environment variables, redirect URI, and API server authentication settings AirflowGoogle OAuthHelm
schedule Oct 21, 2021 · 1 min read How to get pretty python interpreter automagically? Install rich ➜ pip install rich ➜ mkdir ~/pystartup ➜ touch ~/pystartup/startup.py Create startup script ➜ ~ echo PythonPython 3Open Source
schedule Oct 21, 2021 · 2 min read Minify docker image size upto 30x with docker-slim Today I found a amazing tool to optimise and minifies docker image and reduces the docker image size. docker-slim docker-slim doesn't change anything in your Docker container image and minify it by up to 30x. docker-slim will optimize and secure you... Dockerdocker imagesOpen Source
schedule Oct 14, 2021 · 1 min read Check diff between two files in Python In Today I Learned(TIL) series, I'm going to explore python standard module called difflib. What is difflib difflib is a built-in standard python library used to find deltas between files and objects. How to use it Load file1 and file2 content choo... PythonOpen Source
schedule Oct 11, 2021 · 1 min read how to implement catch all route in fast api? Sometimes you would require to implement a catch all requests in your fastapi application. We can achieve it by using api_route method. Catch all route from fastapi import FastAPI, Request app = FastAPI() @app.route( Python