Here's a script to help keep updated on new 4-ch posts since your last visit.
It downloads the HTML of each board and compares against the HTML from last time. If anything changed it lists that board as [NEW].
Makes it easy to look for new posts, you can edit the boards.txt file to only check on boards you are interested in checking.
boards.txt:
[code]
general
dqn
iaa
img
req
tv
anime
manga
games
music
book
ascii
fashion
food
hobby
love
personal
sexual
code
tech
net
news
politics
debate
science
sports
language
nihongo
nordic
[/code]
#!/bin/sh
mkdir -p html
while read board; do
mv "html/$board.new.html" "html/$board.old.html"
curl -s -o "html/$board.new.html" "http://4-ch.net/$board/"
if ! diff -q "html/$board.new.html" "html/$board.old.html" > /dev/null 2>&1; then
echo "[NEW] http://4-ch.net/$board/"
fi
done <boards.txt
How is this more advantageous than using an RSS reader for the boards that you do want to see?
Not that this is a bad exercise, I just don't see it a s too useful.
>>4
Every neat idea in the history of programming has a comment like this