Contact Lifestream



Spaghetti Monsters, Spam, Archives

I think I’ve finally fixed the Archive List display for the blog. I should have RTFM because it was all in there. Basically I had to do some hacking to circumvent a Nucleus function that generates archive links. It would be a lot easier if I didn’t run Nucleus in a sub-dir.

For some reason there has been an enormous increase in SPAM activity lately. Since the Blacklist plugin has been discontinued, one is forced to seek other means to fight SPAM. While still employing a crippled Blacklist, I also installed Comment Control. It works by requiring moderation of comments after a period of xx days. A “captcha” is a possibility as well of course but I don’t like it. Regular users shouldn’t be burdened with the effects of spam. Closing old items is possible too of course but that is no fun either.

Also, I added, temporarily, the FSM (Flying Spaghetti Monsters) banner found over at Karma. All in all a very successful internet spoof of “intelligent” design that is spreading like a wildfire and becoming part of the Wired culture.
Technical note: My banner was run through Web Image Guru in order to make it PNG8 with palette alpha. The original was PNG24 I believe. That reduced the banner from 12kb to 4kb and makes it a little easier to live with.

CSS:[css]#fsm {
position: absolute;
right: 0;
top: 0;
width: 200px;
height: 200px;
z-index:5000;
cursor: pointer;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’gfx/fsm.png’);
}
#fsm[id] {
position: fixed;background-image: url(”gfx/fsm.png”);
}[/css]HTML:
[html]

[/html]
The URL part could for instance link to the wikipedia entry or the official site.

IMAGE:
http://battleangel.org/gfx/fsm.png
(PNG 24 color limited with alpha, 5936 bytes)

Update: An alternative approach would be the use of image maps of course. Why? Because it seems that at least in Firefox the image block interferes with the rest of the site. Could be that the DX transform function somehow makes an image map out of transparant images because it works in IE, where you only get to click on the actual content, not the transparent background.
Anyway, I don’t know if this is deprecated and if so under which versions of XHTML.

[html]

[/html]

Update: Unfortunately I messed up the graphics for the banner. As I said above I did a conversion of the banner in order to save bandwidth but I didn’t notice the DX Transform function couldn’t use Palette Alpha. A new, color reduced 24-bit version with alpha is in use now. About 7kb which is still almost half of the original.