- 1
- 2
- 3
if (id != object.id) return false;
return true;
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+150
if (id != object.id) return false;
return true;
IntelliJ IDEA 8 :) equals по интовому полю.
Хорошо хоть сама тут же предлагает упростить.. :)
−149
if (bstatus==0)
{
bstatus=0;
}
else
{
bstatus=0;
}
Вот так вот...
+152
var p = $p(p);
Краткость — сестра мудака^Wталанта
+138.7
class struct_tree_item
{
struct_tree_item ParentItem;
int ItemIndex;
} struct_tree_item item;
void bind_item ( struct_tree_item itemA, struct_tree_itemB)
{
ItemB.ParentItem = ItemA;
}
Интересный подход к декларации классов:) Что-то напоминает.
+125.8
function CheckBankAccount(BIK, _Account) {
var Mask = "71371371371371371371371";
var Control = 0;
var M;
var strM;
if (!BIK) {
return true;
}
var Account = BIK.substring(6, 9) + _Account;
for (var i = 0; i <= 22; i++) {
M = RealParseInt(Account.substring(i, i+1))*RealParseInt(Mask.substring(i, i+1));
strM = M.toString();
Control += RealParseInt(strM.substring(strM.length-1, strM.length));
}
var R = ((Control/10) - Math.floor(Control/10));
if (R == 0) {
return true;
}
else {
return false;
}
}
Существует множество способов взять остаток от деления на 10. Два из них в этом примере...
+151
procedure Load_flashDEF_setings;
var
Reg: TRegistry;
RegKeyPath: string;
begin
Reg := TRegistry.Create;
try
with Reg do begin
RootKey := HKEY_CURRENT_USER;
RegKeyPath := 'Software\fuckinSoft';
OpenKey(RegKeyPath, True);
if ReadBool('Wipe_File')=false then begin Main.frmMain.CBx_wipe_file.Checked:=false;
end
else
if ReadBool('Wipe_File')=true then begin Main.frmMain.CBx_wipe_file.Checked:=true;
end
else
if ReadBool('Def_Module')=false then begin Main.frmMain.CBx_defence_module.Checked:=false;
end
else
if ReadBool('Def_Module')=true then begin Main.frmMain.CBx_defence_module.Checked:=true;
end
end
finally
Reg.CloseKey;
Reg.Free;
end;
end;
procedure Save_flashDEF_setings;
var
Reg: TRegistry;
RegKeyPath: string;
begin
Reg := TRegistry.Create;
try
with Reg do begin
RootKey := HKEY_CURRENT_USER;
RegKeyPath := 'Software\fuckinSoft';
OpenKey(RegKeyPath, True);
if Main.frmMain.CBx_wipe_file.Checked=true then begin WriteBool('Wipe_File', true);
end
else
if Main.frmMain.CBx_wipe_file.Checked=false then begin WriteBool('Wipe_File', false);
end
else
if Main.frmMain.CBx_defence_module.Checked=true then begin WriteBool('Def_Module', true);
end
else
if Main.frmMain.CBx_defence_module.Checked=false then begin WriteBool('Def_Module', false);
end
end
finally
Reg.CloseKey;
Reg.Free;
end;
end;
Ифы хороши в меру =\
+151
if kol=1 then begin
if GSravn.Cells[kol,Str]='VF'
then GSravn.Cells[kol,Str]:='RF'
else if GSravn.Cells[kol,Str]='RF'
then GSravn.Cells[kol,Str]:='PF'
else if GSravn.Cells[kol,Str]='PF'
then GSravn.Cells[kol,Str]:='PT'
else if GSravn.Cells[kol,Str]='PT'
then GSravn.Cells[kol,Str]:='RT'
else if GSravn.Cells[kol,Str]='RT'
then GSravn.Cells[kol,Str]:='VT'
else if GSravn.Cells[kol,Str]='VT'
then GSravn.Cells[kol,Str]:='VF';
%)
+157.5
if($city == "Chicago" || $city == "chicago" || $city == "LosAngeles" || $city == "losangeles" || $city == "Orlando" || $city == "orlando" || $city == "LongIsland" || $city == "longisland" || $city == "Baltimore" || $city == "baltimore" || $city == "SouthFlorida" || $city == "southflorida" || $city == "Hartford" || $city == "hartford" || $city == "Allentown" || $city == "allentown" || $city == "Stamford" || $city == "stamford" || $city == "Greenwich" || $city == "greenwich" || $city == "HamptonRoads" || $city == "hamptonroads" || $city == "OrangeCounty" || $city == "orangecounty")
{
if($city == "chicago")
$city = "Chicago";
if($city == "losangeles")
$city = "LosAngeles";
// Еще двадцать таких условий...
if($city == "Chicago")
{
$x = rand(1, 9);
$headerIMG = "/img/".$city."/".$x.".jpg";
$affiliateDomain = "http://wtf.somesite.com";
$affiliateURL = "http://wtf.somesite.come/wtf.jsp";
$poweredByIMG = "/img/poweredBy_wtf.jpg";
$upsellIMG = "/img/wtf.jpg";
$upsellURL = "http://wtf.somesite.com/wtf.aspx";
$searchIMG = "/img/search_".$city.".jpg";
$searchURL = "http://wtf.somesite.com/wtf.jsp";
$topArea = "searches_Chicago.php";
$stateDefault = "IL";
$privacyPolicyURL = "http://wtf.somesite.com/wtf";
$termsURL = "http://wtf.somesite.com/services/wtf";
$showWebID = "1";
}
/// И еще двадцать штук таких блоков..
+150
function ConditionsToNum(cn) {
switch (cn) {
case "По окладу": return (0);
case "Почасовая": return (1);
}
}
function NumToConditions(cn) {
switch (parseInt(cn)) {
case 0: return ("По окладу");
case 1: return ("Почасовая");
}
}
−353.1
list = [1,2,3,4,5,6,7,8,9,10]
string = "%s"*len(list) % tuple(list)