Skip to content

Instantly share code, notes, and snippets.

@kykyi
kykyi / annotate_makefile.sh
Last active July 26, 2023 08:55
Print all commands available in a Makefile
#!/bin/bash
# inspired by https://github.com/ctran/annotate_models
# Check if argument is provided
if [[ -z "$1" ]]; then
echo "Please provide the path to a Makefile."
exit 1
fi
@kykyi
kykyi / Actions + Devcontainers on private ECR image
Last active May 23, 2023 12:24
Run VSCode dev containers and GitHub actions off of the same private AWS ECR image
Run VSCode dev containers and GitHub actions off of the same private AWS ECR image