Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Removing tripcode users from prog

Name: Anonymous 2009-01-08 18:11


// ==UserScript==
// @name          AnonBBS
// @namespace     ide
// @description   Removes tripcode users from the world4ch bbs
// @include       http://dis.4chan.org/read*;
// @include       http://dis.4chan.org/prog*;
// ==/UserScript==

(function() {
   
    function onnode(e) {
        makeanon();
    }
   
    function makeanon() {
        var tripnodes = document.getElementsByClassName ("postertrip");
        for (var i=0; i<tripnodes.length; ++i) {
            tripnodes[i].innerText = "";
        }
       
        var postnames = document.getElementsByClassName ("postername");
        for (var i=0; i<tripnodes.length; ++i) {
            postnames[i].innerText = "Anonymous";
        }
    }
   
    window.addEventListener("DOMContentLoaded", onnode, false);   
   
})();

Name: BurningSpace !TvdgKuS4ZM 2009-01-08 19:01

This sort of behavior has been proved to be divisive for internet communities, and I advise against it:

The killfile behavior, is simply put: “sweep-under-the-rug”, “bury-head-in-sand” kind of behavior. Imagine that in a gathering where if everyone totally ignores other's voices except their own kind, then what cacophony would result? Similarly, if we ignore the problem of crime by simply using larger locks for our own doors, what consequence would result?

We are all human beings. Our surroundings are our organs and affects us dearly. In newsgroups, inevitably there will be certain individuals with foul breath at times. Killfile mechanism is a very good feature to battle such annoyances. This is not a reason for falling for the convenience of blocking your ears from dissenting voices or the nonconformists.

Source: Xah Lee, 2000-02-26, comp.lang.lisp - available from http://xahlee.org/UnixResource_dir/writ/kill_file_harmful.html

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List