Skip to content

Instantly share code, notes, and snippets.

View pawgajda-drs's full-sized avatar

Paweł Gajda pawgajda-drs

View GitHub Profile
@wallyhall
wallyhall / apache_airflow_sso_howto.md
Last active July 8, 2025 20:06
Apache Airflow Azure AAD SSO howto

The following instructions for enabling Azure SSO for Apache Airflow nearly take you all the way - but fall short a couple of details around the configuration of airflow itself:

https://objectpartners.com/2021/12/24/enterprise-auth-for-airflow-azure-ad

All the "Azure" instructions there can be safely followed - the resulting webserver_config.py (which can be injected into a dockerised Airflow in /opt/airflow/webserver_config.py) can be built from the following:

from __future__ import annotations

import os
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active September 18, 2025 06:45
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@ericavonb
ericavonb / git-commit-style-guide.md
Last active September 15, 2025 14:36
Git Commit Style Guide

Git Commit Style Guide

Inspiration: Deis Commit Style Guide

I often quote Deis in sections below.

Motivation

It makes going back and reading commits easier. It also allows you to spend less time thinking about what your commit message should be.