Posted
about 13 years
ago
by
Eric Lewis
function similar_text(t1, t2, percent)
{
var t1, t2,
sim,
t1_len = t1.length,
t2_len = t2.length,
php_similar_char = function(txt1, len1, txt2, len2)
{
var sum,
pos1, pos2, max,
p, q,
|
Posted
about 13 years
ago
by
Max von Buelow
The Code from line 29 to line 31 is already provided by get_html_translation_table:
if (useQuoteStyle === 'ENT_QUOTES') {
entities['39'] = ''';
}
|
Posted
about 13 years
ago
by
Oscar Broman
@Brett Zamir: I'm not entirely sure whether that was rhetorical. Anyway, here you go:
function long2ip(ip) {
if (!isFinite(ip))
return false;
return [ip >>> 24, ip >>> 16 & 0xFF, ip >>> 8 & 0xFF, ip &
|
Posted
about 13 years
ago
by
Amazing Alex
Play free online games at Amazing Alex Games - Amazingalex.org.in
Meet Amazing Alex! This whiz kid has a boundless imagination and a houseful of fun toys that can turn anything into an adventure!
From cleaning up his room to battling cardboard
|
Posted
about 13 years
ago
by
Game gazo
thanks for share this code
|
Posted
about 13 years
ago
by
Huz
thanks a lot, this code i was found.
|
Posted
about 13 years
ago
by
Friv
Thanks for share code
|
Posted
about 13 years
ago
by
Brett Zamir
@Demosthenes Koptsis: Fixed in Git, thanks!
|
Posted
about 13 years
ago
by
Demosthenes Koptsis
i think
arglm2 = arglm1 - 2
should be
arglm2 = arglm1 - 1
|
Posted
about 13 years
ago
by
Demosthenes Koptsis
it should be
cb = arguments[arglm1]
not
cb = arguments[argm1]
|