This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # %% | |
| #### This code is only required to generate some dummy data | |
| import numpy as np | |
| import geopandas as gpd | |
| from shapely.geometry import Point, Polygon | |
| import matplotlib.pyplot as plt | |
| # Make coords for corners of a square | |
| square = np.array([[0, 0], [1, 0], [1, 1], [0, 1]]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # zoom-minutes — auto-start/stop Minutes recording when Zoom calls begin/end | |
| # | |
| # Detects Zoom calls by watching for "ZOOM VoiceEngine" audio streams in | |
| # PipeWire/PulseAudio. When a call starts, runs `minutes record`. When the | |
| # call ends, runs `minutes stop` to process the recording. | |
| # | |
| # Requirements: | |
| # - minutes CLI (https://github.com/silverstein/minutes) | |
| # - PipeWire or PulseAudio (pactl) |