Delete all workflow runs from a GitHub repository (clear the history of workflow runs) (SOURCE)
user=YOUR_USERNAME_HERE repo=YOUR_REPO_HERE; gh api repos/$user/$repo/actions/runs \
--paginate -q '.workflow_runs[] | select(.head_branch != "master") | "\(.id)"' | \
xargs -n1 -I % gh api repos/$user/$repo/actions/runs/% -X DELETE
Reinstate the Microsoft extensions marketplace in VSCodium (SOURCE)
sed -i 's/open-vsx.org\/vscode\/gallery/marketplace.visualstudio.com\/_apis\/public\/gallery/g; s/open-vsx.org\/vscode\/item/marketplace.visualstudio.com\/items/g;' /usr/share/codium/resources/app/product.json
Git Yolo (SOURCE)
git config --global alias.yolo '!git add --all && git commit -m "$(curl -s https://whatthecommit.com/index.txt)" && git push then git yolo