- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
public function clearGrid():void
{
if(clearGrid != null)
{
if (selectedChild is AbstractIssueGrid)
{
(selectedChild["setGridDataProvider"] as Function) (new ArrayCollection());
}
}
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
−91
public function clearGrid():void
{
if(clearGrid != null)
{
if (selectedChild is AbstractIssueGrid)
{
(selectedChild["setGridDataProvider"] as Function) (new ArrayCollection());
}
}
}
Держите меня семеро Х_х
+133
Below is a list of the warning message(s) produced when checking your document.
Line 91, Column 31: NET-enabling start-tag requires SHORTTAG YES
alt="Правильный CSS!" /> </a> ✉
The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document...
Валидатор ругается на иконку, подаренную валидатором
+165
//где-то в далеком-далеком хедере
typedef long SystemID;
// в коде
long FARPASCAL sb_ConfigureSystem(SystemID s)
{
.......
System * sys = (System*)s;
......
}
И в таком духе весь проект.
−874
SELECT created_at, updated_at FROM user_childs WHERE `id`=.......
убейте меня за таймштамп user_childs.crated_at
+189
function d1m(spa,spb,spc,spd,spe,spf){
if(!ie5){spa+=(sbSIZE*2); }
if(!spb||spb==""){spb="left";}
if(!spc||spc==""){spc="left";}
if(!spd){spd=0;}
if(!spe){spe=0;}
if(!spf){spf="";}
sP[(m-1)]=new Array(spa,spb,spc,spd,spe,spf);
if(sm==0){
sI[(m-1)]=new Array; cP[(m-1)]=new Array; cI[(m-1)]=new Array;
}
}
function d2m(cpa,cpb,cpc,cpd,cpe,cpf){
if(!ie5){cpa+=(sbSIZE*2); }
if(!cpb||cpb==""){cpb="left";}
if(!cpc||cpc==""){cpc="left";}
if(!cpd){cpd=0;}
if(!cpe){cpe=0;}
if(!cpf){cpf="";}
cP[(m-1)][(sm-1)]=new Array(cpa,cpb,cpc,cpd,cpe,cpf);
cI[(m-1)][(sm-1)]=new Array;
}
а я то думал что функции нужны чтоб не писать одно и тоже по 100 раз
+194
function gopic(piciden) {
piciden=piciden*1;
if (piciden<0) {
eval("document.risunki.ris0"+piciden+".disabled=true")
eval("document.risunki.mark0"+piciden+".disabled=true")
eval("mark=document.risunki.mark0"+piciden+".options[document.risunki.mark0"+piciden+".selectedIndex].value")
}
else {
eval("document.risunki.ris"+piciden+".disabled=true")
eval("document.risunki.mark"+piciden+".disabled=true")
eval("mark=document.risunki.mark"+piciden+".options[document.risunki.mark"+piciden+".selectedIndex].value")
}
}
function check_data(elem){
a=0
}
−132
#!/bin/sh
# ...
# translate args from unix path to windows, if possible (eterbug #4933)
args_to_winpath()
{
for i in "$@" ; do
local TP="$i"
local TR=${i/\~/$HOME}
if [ -r "$TR" ] ; then
WP=$(winepath -w "$TR" 2>/dev/null)
[ -z "$WP" ] || TP="$WP"
fi
echo "$TP"
done
}
# ...
run_wine $(args_to_winpath "$@")
Это WINE@Etersoft. Люди пытались преобразовать системные пути в командной строке во внутренние вайновские. В результате из C:\Program Files больше ничего не запускается.
+161
$F1 = F2($x);
if ($F1 !== 0)
{
$InInt = false;
if ($F1) $InInt = true; // <--- это писец
if (!$InInt) continue; // <--- это тоже
}
$F3 = F($x);
$SumH += abs($F3);
+142
enum {size = 10, timeout = 50};
+143
1. Логин может содержать только латинские символы, цифры, дефис и знак подчеркивания