For personal reasons, I do not browse /prog/ from my computer. (I also have not net connection much of the time.) To look at page I send mail to a demon which runs wget and mails the page back to me. It is very efficient use of my time, but it is slow in real time.
>>4
Here's a shell script I wrote to download all the images from a single page of a kusaba based image-board that you can modify to your taste:
#!/bin/bash
echo -n "Enter a domain: "
read DOMAIN
echo -n "Enter a board from "$DOMAIN": "
read BOARD
echo -n "Enter a page from "$DOMAIN/$BOARD": "
read PAGE
URL=$DOMAIN/$BOARD/$PAGE
NWBRD=$DOMAIN'/'$BOARD
NWBRD=`echo $NWBRD | sed 's/\\./\\\\./g; s/\\//\\\\\\//g'`