Tip for the Day! - Favicon collector -

Featuring the Dragonfly web framework
Locked
newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

Tip for the Day! - Favicon collector -

Post by newdep »

For those who like icons..here is a favicon grabber...(Unix only)

fully automated favicon.ico grabber,
...walks the internet for you while drinking coffee...

http://www.nodep.nl/downloads/newlisp/all-favicon.lsp


***
From the starting directory type this to put them all together in a ./temp directory...

mkdir ./temp
find ./[a-z0-9-] -name "*.ico" -print -exec cp {} ./temp \;
***

Enjoy..


Norman

Addon: just posted a new version... that grabs from every domain or subdomain it finds.
-- (define? (Cornflakes))

cormullion
Posts: 2038
Joined: Tue Nov 29, 2005 8:28 pm
Location: latiitude 50N longitude 3W
Contact:

Post by cormullion »

that's a cool program! thanks.

it creates a lot of folders... :-)

newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

Post by newdep »

I use directory structure often because directory's are by itself already an indexed-database function..

So if your Filesystem-type is up for it you have lots of speed improvement, no need for extra dbase tools and already sortened by name db file structure ;-)

enjoy ;-)
-- (define? (Cornflakes))

Locked