For those who don't know, Mozilla-Firebird is the new browser put out by the mozilla team. They have announced that it will get the focus and development as priority over mozilla and it's bloat. One major advantage is that it can use new plugins they called 'extentions'. You can find a list here.
One of them is called AdBlock. It allows you to put in either IP's or host names of ad servers and all images from those addresses/names will be blocked. If you use this along with the built-in option to show only images which originate from that pages' server, most every page will be ad free. You can input them manually one at a time, or input a list from a text file. The bottom of Bob's Block List lists additions for your Windows HOSTS file that looks like:
127.0.0.1 ads.x10.com
127.0.0.1 ads.xtra.co.nz
127.0.0.1 ads.zdnet.com
127.0.0.1 ads01.focalink.com
It's a ratather long list and would be time consuming to enter manually. The problem with importing a list is that AdBlock needs a file that lists hostnames ONLY and uses LF (ASCII 10) instead of CR (ASCII 13) to seperate the names. I've written a small (32 lines) program to do the converson. I don't have a place to host either, but if you want a copy emailed, IM'd, or whatever, let me know and I'll send it. I wrote it in qbasic (yeah, remember that?) and compiled it in quickbasic 4.5. The source file needs to be ASCII text and look like the Windows HOSTS file, like the list above. There can be any number of spaces (usually there is more than one) between the localhost and hostname, as long as the localhost is on the left.
The dos executable is 44KB, the source is < 2KB, and a zip of both is 32KB.
Side note, if anyone needs to use QB to do anything (runtime, recompile, etc), I found a copy here. For doing simple things, nobody has come out with anything that can beat it.