"Profile" -> "Look and Layout Preferences" -> "Don't show users' signatures."
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
$(e).find("a").length && (r *= 2)
if ($(element).find("a").length > 0) { score = score * 2 }
$(i[a]).attr("style", "opacity: 0; pointer-events: none")
function isAnnoyingCharacter(char)
{
var code = char.charCodeAt();
var ranges = [[0x2500, 0x256F],
[0x2580, 0x259F],
[0x25A0, 0x25FF],
];
for(var i = 0; i < ranges.length; i++)
if(code > ranges[i][0] && code <= ranges[i][1])
return true;
return false;
}
function calculateAnnoyingCharacter(element)
{
var childNodes = Array.prototype.slice.call(element.childNodes);
var result = childNodes.reduce(
function(prev, current, index)
{
if(current.nodeType == 1)
return prev + calculateAnnoyingCharacter(current);
if(current.nodeType == 3)
{
var count = 0;
for (c of current.nodeValue)
if(isAnnoyingCharacter(c))
count++;
var size = Number(getComputedStyle(current.parentNode).fontSize.match(/(\d*(\.\d*)?)px/)[1]);
return prev + size*size*count;
}
return prev;
}, 0);
return result;
}
function getFormattingRate(context)
{
var result = 0;
if(context.backgroundColor)
return 1;
if(context.fontSize >= 14)
result += 0.05 + Math.max(0, (context.fontsize - 14)*0.03);
if(context.color)
result += 0.2;
if(context.font)
result += 0.03;
if(context.underline)
result += 0.02;
if(context.bold)
result += 0.04;
if(context.table)
result += 0.2;
return Math.min(result, 1);
}
function calculateFormattingScore(element, context)
{
var previousContext = context;
if(typeof(context) === 'undefined')
previousContext = context = {};
else
context = $.extend({}, context);
if(element.style.fontSize && element.style.fontSize != "inherit")
context.fontsize = Number(element.style.fontSize.match(/(\d+)pt/)[1]);
if(element.style.color && element.style.color != "inherit")
context.color = true;
if(element.style.backgroundColor && element.style.backgroundColor != "inherit")
context.backgroundColor = true;
if(element.style.fontFamily && element.style.fontFamily != "inherit")
context.font = true;
if(element.style.textDecoration.indexOf("underline") != -1)
context.underline = true;
if(element.tagName == "B")
context.bold = true;
if(element.tagName == "TABLE")
context.table = true;
var score = $(element).width() * $(element).height() * getFormattingRate(context)
- $(element).width() * $(element).height() * getFormattingRate(previousContext);
var childNodes = Array.prototype.slice.call(element.childNodes);
score += childNodes.reduce(
function(prev, current, index)
{
if(current.nodeType == 1)
return prev + calculateFormattingScore(current, context);
return prev;
}, 0);
return score;
}
function isAd(div)
{
var score = 0;
score += calculateAnnoyingCharacter(div);
score += calculateFormattingScore(div);
score = Math.sqrt(score);
if($(div).find("a").length)
score *= 2;
return score > 100;
};
try
{
var signatures = $("div .signature");
for(var i = 0; i < signatures.length; i++)
{
if(isAd(signatures[i]))
{
$(signatures[i]).attr("style", "opacity: 0; pointer-events: none");
}
}
}
catch(e)
{
console.log(e);
}
$(e).find("a").length && (r *= 2)
if ($(element).find("a").length > 0) { score = score * 2 }
$(i[a]).attr("style", "opacity: 0; pointer-events: none")