How to filter emails from GitHub in Gmail and flag them with labels.
The labels in this document are just examples.
Filter | Label |
---|
#!/usr/bin/env python3 | |
''' | |
always getting the most recent frame of a camera | |
================================================ | |
Usage: | |
------ | |
freshest_camera_frame.py |
If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
// Copyright 2021 Johan Rade ([email protected]) | |
// Distributed under the MIT license (https://opensource.org/licenses/MIT) | |
#ifndef FAST_EXP_H | |
#define FAST_EXP_H | |
#include <cstdint> | |
#include <cstring> | |
#!/usr/bin/env bash | |
# Ensure there is a manifest file | |
if [[ ! -f package.json ]]; then | |
echo "error: no manifest file found" | |
exit 1 | |
fi | |
# Get the repo name for the given package manager | |
if [[ $1 == 'npm' ]]; then |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
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
n = int(input()) | |
for number in range(10 ** n - 1, 10 ** (n - 1) - 1, -2): | |
print(number) |