Skip to content

Instantly share code, notes, and snippets.

@tobiasraabe
tobiasraabe / all-repos-examples.md
Last active February 4, 2023 13:32
Examples for commands with all-repos

all-repos-examples

Here are some examples which show how to use all-repos. Maybe you can also draw inspiration from all-repos-incantations.

Adding skip for concurrent builds to github.yml

Add the following to your continuous integration workflow after the definition of the name (here "name: Continuous Integration Workflow")

@tobiasraabe
tobiasraabe / python-downloader.py
Last active March 18, 2024 13:17
Script to download files, resume downloads and validate downloads. Everything wrapped with a beautiful progressbar.
import click
import hashlib
import requests
from pathlib import Path
from tqdm import tqdm
CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])