home.social

#wget — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #wget, aggregated by home.social.

  1. printf "%s\n" 'e !sort -u %' wq | ed -s skip; w3m -dump 'cdn.media.ccc.de/congress/2025' | awk '/\[[0-9]+\] https:.*webm-hd.*\.webm$/{print $2}' | sort | comm -23 - skip | tee urls | while read -r u; do echo $u; grep -Fq "$u" skip && continue; wget -c "$u" && echo $u >> skip; done

    Downloading recorded talks from #39c3 using #ed #w3m #awk and other #unix tooling <3

    Thought about replacing #wget with #curl but old dogs and such...