- 1
#define true false
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+138
#define true false
happy debug!
+160
Обратите внимание:
http://govnokod.ru/user/4866
+121
// Getting first account data and binding it to control
List<string> cardList = new List<string>();
List<string> permissionList = new List<string>();
string x1 = "";
string x2 = "";
string x3 = "";
string x4 = "";
string x6 = "";
string x7 = "";
string x8 = "";
try
{
x8 = getCardNumberByAccountNumber(CustAcc1.Text);
}
catch { }
GetAllCustomerAccountValue(de_ca1, ref x1, ref x2, ref x3, ref x4, ref cardList, ref permissionList, ref x6, ref x7, ref x8); //, ref x2, ref x3, ref x4, ref cardList, ref x5, ref x6, ref x7, ref x8);
FormCustomerAccount1.accountNum = x1;
FormCustomerAccount1.fullName = x2;
FormCustomerAccount1.streetBuild = x3;
FormCustomerAccount1.postalCode = x4;
FormCustomerAccount1.creditNote = x6;
FormCustomerAccount1.accountBalance = x7;
FormCustomerAccount1.cards = cardList;
FormCustomerAccount1.permissions = permissionList;
(
+120
// LockDepth IS enum type!
if(LockDepth == DepthType.Infinity)
_depthElement.InnerText = this.__lockDepth.ToString();
else
_depthElement.InnerText = (string) System.Enum.Parse(LockDepth.GetType(), LockDepth.ToString(), true);
I got exception on line 5. The LockDepth is enum :)
+159
protected $_never_allowed_regex = array(
"javascript\s*:" => '[removed]',
"expression\s*(\(|&\#40;)" => '[removed]', // CSS and IE
"vbscript\s*:" => '[removed]', // IE, surprise!
"Redirect\s+302" => '[removed]'
);
Это не разу не ковнокод, но строкой с // IE, surprise! не поделится, не смог)
ЗЫ. это CodeIgniter 2.0.3 класс Security, строка 52
+138
вот так выглядит загрузка DLL у людей, которые не знают про tchar
const char string [] = "right_dll.dll";
LPCWSTR put = (LPCWSTR) string;
HINSTANCE my_dll = LoadLibraryEx (put, 0, DONT_RESOLVE_DLL_REFERENCES);
+147
Обратите внимание:
http://govnokod.ru/user/4847
+163
Обратите внимание:
http://govnokod.ru/user/4788
http://govnokod.ru/user/4789
+146
<a href="javascript:void(0);" onclick="suspend(8)">
<input type="checkbox" value="Suspend Listing" name="" id="id8">
</a>
ревьювил код нового джуниора, который пришёл к нам из достаточно крупной компании. Строилось через JS поэтому и запостил в JS
+81
Date date = (Date)value.getParam("DocReceiptDate");
if (date.getHours() == 24) {
date.setHours(0);
}
String documentReceiptDate = (new SimpleDateFormat("dd.MM.yyyy.kk.mm")).format(date);
Элегантная попытка форматирования даты.
Задача было вместо 24 часов писать 00, например не "24.11.2011.24.23", а "24.11.2011.00.23".
Как все уже догадались, следовало просто использовать формат "dd.MM.yyyy.HH.mm".