No problem.
Ieinstale Greasemonkey (Firefox)/Tampermonkey (Chrome), izveido jaunu skriptu, iepeisto manu kodu. Saglaba. Done.
// ==UserScript==
// @name Hide joJO^ posts D:
// @namespace blindmind
// @include http://www.gign.lv/forum/topic/*
// @require http://code.jquery.com/jquery-1.6.2.min.js
// ==/UserScript==
//var $ = unsafeWindow.jQuery;
$(".post_wrap").each(function(i) {
if($(this).find("a:eq(1)").text() == "joJO^") {
$(this).hide();
}
});