
Originally Posted by
wir
New favicon again. Hm.
Been wanting to ask for a few months, does anyone have the old favicon saved, the capital 'N' favicon? Even a screenshot containing it should be fine.
Unprecedented bump!
Waha!
I found a 5 year old screenshot of the forum on an old imageshack account. Now I have all the old classic favicons I love:

I know no one else probably cares about something like this, but if anyone else wants the old favicon, this is the greasemonkey script I'm using:
Code:
// ==UserScript==
// @name nag.co.za old favicon
// @namespace blah
// @include http://*.nag.co.za/*
// ==/UserScript==
var head = document.getElementsByTagName('head')[0];
var icon = document.createElement('link');
icon.setAttribute('type', 'image/x-icon');
icon.setAttribute('rel', 'shortcut icon');
icon.setAttribute('href', 'data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADkSURBVDhPpZLLDoIwEEWnBQXbEt1hMNGfMNFP8LHQuNT4/ysXGEAQRG+tcWFofE2aZuicO7cPaDydfDUI9Gq9uX4Qu/0WsBZ8AD+QvwVRf8CIdLdaT5ey8lo+Vk5pbixeHRhxKQPMppwkGfIg6OZZ0SwQQjlum4j7Hakd6itjDlaKomwWAEVZyAAJBiBiDpLcJvA8TykFDkkYhpxjh5KIytLqQEL4xh0ch8098FlV54ZDuy4ndr8lo8EFEXV7+jxpFjcIQJgyIj4ejGY4iqyCZ29b8utLz5eLt70BzBbzh8NXv/cN85vmJddUpSAAAAAASUVORK5CYII=');
head.appendChild(icon);