// ==UserScript== 
// @name           Lambda the Ultimate Killfile
// @namespace      http://www.xoltar.org/tools/greasemonkey
// @description    Hides comments from offensive people on Lambda the Ultimate
// @include        http://www.lambda-the-ultimate.org/* 
// @include        http://lambda-the-ultimate.org/*
// ==/UserScript==  

//Put the user names you want to excise in this array
users = [];


//No configuration necessary below this line
var allPosters;
allPosters = document.evaluate('//div[@class="comment"]/*/a[@title]',
		document,
		null,
		XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
		null);
for (var i = 0; i < allPosters.snapshotLength; i++) 
{
	var thisLink = allPosters.snapshotItem(i);
	for(var j = 0; j < users.length; j++)
	{
		var user = users[j];
		if (thisLink.text == user) 
		{				
			thisLink.parentNode.parentNode.parentNode.removeChild(thisLink.parentNode.parentNode);			
			break;
		}
	}
}