- 1
return i == -1 ? true : false;
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+155
return i == -1 ? true : false;
Ну это, если true, так true, а иначе false, чисто чтобы всем было понятно...
+148.7
// Any fool can write code that a computer can understand. Good programmers write code that humans can understand. (C) Martin Fowler.
function changeLogo() {
var pane = document.getElementById("pane");
if(pane != null) {
pane.height = 240;
pane.width = document.body.clientWidth;
} else {
alert("it's sad, so sad...");
}
var logo = document.getElementById("logoJpg");
if(logo != null) {
logo.height = 50;
logo.width = document.body.clientWidth * 0.23;
} else {
alert(" ...it's a sad, sad situation, and it's getting more and more absurd");
}
}
Код совсем ничего, но камменты рулят
+155.7
function clean(str, pat){
var m = len(pat);
var l="", r = "";
var t = 0;
while(str.indexOf(pat)!=-1){
t = str.indexOf(pat);
l = str.slice(0, t);
r = str.slice(t+m);
str = l+r;
}
return str;
}
+161.8
if( 7 == 26 )
{
return confirm("Status 'finished pending' confirmation:\nAre you sure you made all needed operations on this order?");
}
else return confirm('Save?');
Вот такие прелести
+155.7
<a href="#" onclick="if ($('#pasteLinkBlock').is(':visible')) $('#pasteLinkBlock').hide('fast'); else $('#pasteLinkBlock').show('fast'); return false">
Про toggle аффтар никогда не слышал...
+144.9
/a-z{3,}/.test(str);
Проверка содержит ли функция 3 символа алфавита или больше.
Правильно так: /[a-z]{3,}/
+149
function rtrans(ob) {
eval(ob+".filters.revealTrans.Apply()");
eval(ob+".style.visibility = 'visible'");
eval(ob+".filters.revealTrans.Play()");
}
Пацталом.
+152
function f0(){
<?for($i=1;$i<$chp+1;++$i){?>
tflor=<?=$i?>;
eval("document.plan"+tflor+".SetVariable('pa1','0')");
eval("document.plan"+tflor+".SetVariable('pa2','0')");
eval("document.plan"+tflor+".SetVariable('pa3','0')");
eval("document.plan"+tflor+".SetVariable('pa4','0')");
eval("document.plan"+tflor+".SetVariable('pa5','0')");
eval("document.plan"+tflor+".SetVariable('pa6','0')");
eval("document.plan"+tflor+".SetVariable('pa7','0')");
eval("document.plan"+tflor+".SetVariable('pa8','0')");
eval("document.plan"+tflor+".SetVariable('pa9','0')");
eval("document.plan"+tflor+".SetVariable('pa10','0')");
eval("document.plan"+tflor+".SetVariable('pa11','0')");
eval("document.plan"+tflor+".SetVariable('pa12','0')");
eval("document.plan"+tflor+".SetVariable('pa13','0')");
eval("document.plan"+tflor+".SetVariable('pa14','0')");
eval("document.plan"+tflor+".SetVariable('pa15','0')");
eval("document.plan"+tflor+".SetVariable('pa16','0')");
eval("document.plan"+tflor+".SetVariable('pa17','0')");
<?}?>
}
Циклы никто не отменял
+166.8
if (document.getid.txtemail.value.search("@") == -1)
{
alert("This is not a valid email account.");
return(false);
}
//check for valid email address required.
Нашел вот тут в одном индусском проекте, валидакия имейла XD
+143.2
function setdata()
{
if(document.sunform.town.value == "spb")
{
document.sunform.longitude.value = 30;
document.sunform.longmin.value = 15;
document.sunform.latitude.value = 60;
document.sunform.latmin.value = 00;
document.sunform.zone.value = +3;
}
if(document.sunform.town.value == "gbr")
{
document.sunform.longitude.value = 9;
document.sunform.longmin.value = 56;
document.sunform.latitude.value = 53;
document.sunform.latmin.value = 34;
document.sunform.zone.value = +1;
}
if(document.sunform.town.value == "msk")
{
...
}
if(document.sunform.town.value == "mur")
{
...
}
if(document.sunform.town.value == "kiev")
{
...
}
if(document.sunform.town.value == "minsk")
{
...
}
if(document.sunform.town.value == "soshi")
{
...
}
if(document.sunform.town.value == "nn")
{
...
}
if(document.sunform.town.value == "kazan")
{
...
}
if(document.sunform.town.value == "ekb")
{
...
}
if(document.sunform.town.value == "novosib")
{
...
}
}
Кусок скрипта для рассчета времени восхода и захода Солнца.
Стырено с www.astrotime.ru
Вместо ... аналогичные присваивания, только с другими числами.