- 1
- 2
- 3
- 4
$int = (int) $int;
if (is_int($int)) { // на всякий случай
// ...
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+27.7
$int = (int) $int;
if (is_int($int)) { // на всякий случай
// ...
}
Идея где-то валяется в залежах башорга.
−55.8
public static int daysBetween(Date startDate, Date endDate)
{
int difInDays = (int) ((endDate.getTime() - startDate.getTime())/(1000*60*60*24));
}
Потрясающая воображение функция, которая считает разницу в днях между датами. Различие с правильным результатом в +\- 1 день получается в 30% случаев...
−37.4
<?php }}}}}}} ?>
Самое яркое впечатление от кода...
−11.8
protected string TryToUpper(string text)
{
StringBuilder sb = new StringBuilder();
foreach(char t in text)
{
try
{
sb.Append(t.ToString().ToUpper());
}
catch
{
sb.Append(t.ToString());
}
}
return sb.ToString();
}
−62.7
if ( strchr ( $_POST["ship$i"], "+") || strchr($_POST["ship$i"], " ") || strchr($_POST["ship$i"], ",") || strchr($_POST["ship$i"], ".") || strchr($_POST["ship$i"], "-") || strchr($_POST["ship$i"], "_") || strchr($_POST["ship$i"], ";") || strchr($_POST["ship$i"], ":") ) {
message("You got owned by >>The_Revenge Anticheat Systems<<", "Anticheat");
}
if ( !strchr ( $_POST["ship$i"], "+") && !strchr($_POST["ship$i"], " ") && !strchr($_POST["ship$i"], ",") && !strchr($_POST["ship$i"], ".") && !strchr($_POST["ship$i"], "-") && !strchr($_POST["ship$i"], "_") && !strchr($_POST["ship$i"], ";") && !strchr($_POST["ship$i"], ":")) {
// код
}
Немец предложил такое решение для проверки, что в строке ship$i именно положительное целое число и ни что иное.
В другом месте попадается аналогичный момент, только там после каждого strchr для каждого спецсимвола идет 10 строк одного и того же кода с двумя запросами к БД и выдачей бана юзеру...
Проект XNova (ogame-like)
−57.3
$result = doquery("SELECT * FROM {{table}} WHERE username='".$username."';",users,true);
$username = $result['username'];
unset($result);
В одной браузерной стратегии...
−53.9
$g_db->q("SELECT * FROM {$GLOBAL['db']['pref']}_volumes
WHERE `visible` != 0 AND `owner_id`={$duser['u_id']}
AND (`parent_volume`=0 OR `parent_volume`!=0)"); //<-- Чёрная магия! Не редактировать!
Без ТАКОГО последнего AND возвращает 0 строк :(
+29
return Array.IndexOf<int>
(
Array.ConvertAll<object, int>
(
usedTemplates,
delegate(object o) { return (int)o; }
),
templateID
)
>= 0;
−7
private string parameterName;
public string ParameterName
{
get { return parameterName; }
set { parameterName = value; }
}
И эта куча г... вместо: public string ParameterName {get; set;}
−1006.6
@lib_001=('A','G','C','T','A');
@lib_002=('C','T','A','A','G');
@lib_003=('T','G','C','A','T');
$string=<FILE>;
@sequence=split("",$string);
@code=@sequence[-7..-3];
if((join('',@lib_001) eq join('',@code)) or
(join('',@lib_001[0..3]) eq join('',@code[0..3])) or
(join('',@lib_001[1..4]) eq join('',@code[1..4])) or
(join('',@lib_001[0,1,2,4]) eq join('',@code[0,1,2,4])) or
(join('',@lib_001[0,2,3,4]) eq join('',@code[0,2,3,4])) or
(join('',@lib_001[0,1,3,4]) eq join('',@code[0,1,3,4])))
{$tag=join('',@code);
$closest_tag=join('',@lib_001);}
elsif((join('',@lib_002) eq join('',@code)) or
(join('',@lib_002[0..3]) eq join('',@code[0..3])) or
(join('',@lib_002[1..4]) eq join('',@code[1..4])) or
(join('',@lib_002[0,1,2,4]) eq join('',@code[0,1,2,4])) or
(join('',@lib_002[0,2,3,4]) eq join('',@code[0,2,3,4])) or
(join('',@lib_002[0,1,3,4]) eq join('',@code[0,1,3,4])))
{$tag=join('',@code);
$closest_tag=join('',@lib_002);}
elsif((join('',@lib_003) eq join('',@code)) or
(join('',@lib_003[0..3]) eq join('',@code[0..3])) or
(join('',@lib_003[1..4]) eq join('',@code[1..4])) or
(join('',@lib_003[0,1,2,4]) eq join('',@code[0,1,2,4])) or
(join('',@lib_003[0,2,3,4]) eq join('',@code[0,2,3,4])) or
(join('',@lib_003[0,1,3,4]) eq join('',@code[0,1,3,4])))
{$tag=join('',@code);
$closest_tag=join('',@lib_003);}
else
{$tag=join('',@code);
$closest_tag='NONE';}