Oddbean new post about | logout
 @2fd7551e, by the way, you can ask Mastodon to fetch older posts by running something like this:

for d in $(GET -o links https://shkspr.mobi/blog/ | grep 2023 | sed -e 's,/#.*,,g' -e 's,/$,,g' | sort | uniq | grep -v '[0-9]$' | grep -v wp-content | grep -v '\.js$' | cut -f2)
do
    curl -v -G -d q="$d" -H 'Cookie: ...' 'https://mastodon.social/api/v2/search?resolve=true&limit=1'
done