Nice web scraper to get a listing of all 4chan threads on a certain board.

This is a nice web scraper that will read a 4chan board and return a listing of all threads on that board page. This could be very useful code to expand into a useful script. #!/usr/bin/env bash   set -e   links=( $( wget "$@" -qo /dev/null -SO – | grep -oE ‘</span><a href=\"thread\/[0-9]+\"’ | … Read more

4chan filter rules to block unwanted ads and scripts.

These are very useful filter rules for uBlock Origin, that will block unwanted scripts and trackers on 4chan. The admin of 4chan is putting tracker scripts and images in the website that track all visitors. This is a way to get around this and browse safely. orbitfour47.com @@||4chan.org^*$csp=default-src ‘self’ * data: ‘unsafe-inline’ ‘unsafe-eval’ boards.4chan.org##script:contains(contentAd) /\i\.4cdn\.org\/[a-z]{3}feolite/ … Read more