shlomi-noach / awesome-mysql

A curated list of awesome MySQL software, libraries, tools and resources
Other
2.33k stars 373 forks source link

Update URLs for DM and Dumpling #119

Closed dveeden closed 3 months ago

dveeden commented 3 months ago

These move to a different repo on GitHub.

Should these be GitHub URLs? Or maybe the docs are more useful?

In case we want the docs instead:

dveeden commented 3 months ago

Might be useful to check this for more repos with something like this:

#!/bin/bash
for repo in $(grep -E '^- .*github.com/' README.md | sed 's#^.*https://github.com/##' | cut -d\) -f1 | sort)
do
    a=$(curl -s https://api.github.com/repos/${repo} | jq '.archived')
    echo -e "$repo: archived=$a"
done

Note that without authentication the API limit is quite low.