Daily Shaarli

All links of one day in a single page.

August 2, 2024

Git scraping: track changes over time by scraping to a Git repository
thumbnail
   git config user.name "Automated"
    git config user.email "actions@users.noreply.github.com"
    git add -A
    timestamp=$(date -u)
    git commit -m "Latest data: ${timestamp}" || exit 0
    git push