- 1
- 2
- 3
- 4
SELECT NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
type_table_of_name_tag_value ()
FROM DUAL
WHERE dummy = 'Z'
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
−169
SELECT NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
type_table_of_name_tag_value ()
FROM DUAL
WHERE dummy = 'Z'
+121.6
<table width="760" border="0" cellpadding="0" cellspacing="0">
<tr align="left" valign="middle" bgcolor="#FFFFFF">
<td width="12" valign="middle" height="33"> </td>
<td width="336" valign="middle"> <span class="Titletop"><a href="/members/signin.php?p=www.jci.cc/">Go to Members Site</a></span></td>
<td width="71" align="right" valign="middle"><span class="Titletop">Language </span></td>
<td width="87" valign="middle"><select name="lang_id" onchange="document.mainform.subpageid.value='';document.mainform.subpageid2.value='';document.mainform.pageid.value='0';document.mainform.submit()">
<option value="1" selected >English</option>
<option value="2" >Español</option>
<option value="3" >Français</option>
<!-- <option value="4" >Japanese</option>
<option value="5" >Korean</option>
<option value="6" >Chinese</option>
<option value="7" >German</option>
<option value="8" >Russian</option> -->
</select></td>
<td width="109" align="right" valign="middle">
<input type=hidden name=domains value="jci.cc">
<input type=hidden name=sitesearch value="jci.cc">
<INPUT type=hidden name=cof VALUE="S:http://www.jci.cc;GL:0;AH:center;LH:116;L:http://www.jci.cc/images/header.gif;LW:760;AWFID:61c374d44065a9ab;">
<span class="Titletop">Search JCI </span></td>
<td width="109" align="right" valign="middle"><input name="q" type="text" class="srch_frm" size="15" /></td>
<td width="36" align="left"> <a href="#" onclick="google()"><img src="/images/search.gif" width="15" height="15" border="0" align="absmiddle" onclick="google()" /></a></td>
</tr>
</table>
http://www.jci.cc/
+152.5
function setTabs() {
for(var i = 0; i < tabsNum; i++) {
if(i === currentTab) {
$("#tabCont" + i).css("display","block");
} else {
$("#tabCont" + i).css("display","none");
};
};
};
Нашел отличную функцию для скрытия/открытия табов
−130.4
Private Sub Form_AfterInsert() ' событие после вставки новой записи в таблицу table
runSQL ("UPDATE table set TYPE= 9 where ID = (select max(p.ID) from table p )")
Me.Form.Requery
End Sub
Событие на форме в Access
А достаточно было просто повесить на форму поле с источником данных TYPE и дефолтовым значением 9.
+166.2
<form name='change_form'
enctype='multipart/form-data'
method='post'
onSubmit='if (!checkfilled(document.change_form,"name")) return false;
if (!checkfilled(document.change_form,"email")) return false;
if (!checkfilled(document.change_form,"text")) return false;
if (!checkfilled(document.change_form,"company")) return false;
if (!checkfilled(document.change_form,"phone")) return false;
if (!checkint(document.change_form,"city_code", -2147483648, 2147483648)) return false;
'
action='/request/?do=add'>
Гениальное решение для проверки html-формы.
+81.1
public int random() {
long info = (long) (System.currentTimeMillis() + Runtime.getRuntime().freeMemory() + System.nanoTime());
long info2 = (long) (System.currentTimeMillis() + Runtime.getRuntime().hashCode() + System.nanoTime());
this.rnd1.setSeed(info);
this.rnd2.setSeed(info2);
int a = this.rnd1.nextInt();
int b = this.rnd2.nextInt();
return (int) (a <<= b);
}
функция для получения настоящего рандомного числа в какомто студенческом говнокоде
+133.6
char *errdesc;
[...]
switch errno
{
case EACCES: errdesc="For Unix domain sockets, which are identified by pathname: Write permission is denied on the socket file, or search permission is denied for one of the directories in the path prefix. (See also path_resolution(2).) " ;break;
case EPERM: errdesc="The user tried to connect to a broadcast address without having the socket broadcast flag enabled or the connection request failed because of a local firewall rule. ";break;
case EADDRINUSE: errdesc="Local address is already in use. ";break;
case EAFNOSUPPORT: errdesc="The passed address didn't have the correct address family in its sa_family field. ";break;
case EAGAIN: errdesc="No more free local ports or insufficient entries in the routing cache. For PF_INET see the net.ipv4.ip_local_port_range sysctl in ip(7) on how to increase the number of local ports. ";break;
case EALREADY: errdesc="The socket is non-blocking and a previous connection attempt has not yet been completed. ";break;
case EBADF: errdesc="The file descriptor is not a valid index in the descriptor table. ";break;
case ECONNREFUSED: errdesc="No one listening on the remote address. ";break;
case EFAULT: errdesc="The socket structure address is outside the user's address space. ";break;
case EINPROGRESS: errdesc="The socket is non-blocking and the connection cannot be completed immediately. It is possible to select(2) or poll(2) for completion by selecting the socket for writing. After select(2) indicates writability, use getsockopt(2) to read the SO_ERROR option at level SOL_SOCKET to determine whether connect() completed successfully (SO_ERROR is zero) or unsuccessfully (SO_ERROR is one of the usual error codes listed here, explaining the reason for the failure). ";break;
case EINTR: errdesc="The system call was interrupted by a signal that was caught. ";break;
case EISCONN: errdesc="The socket is already connected. ";break;
case ENETUNREACH: errdesc="Network is unreachable. ";break;
case ENOTSOCK: errdesc="The file descriptor is not associated with a socket. ";break;
case ETIMEDOUT: errdesc="Timeout while attempting connection. The server may be too busy to accept new connections. Note that for IP sockets the timeout may be very long when syncookies are enabled on the server.";break;
case EADDRNOTAVAIL: errdesc="EADDRNOTAVAIL";break;
case EPROTOTYPE: errdesc="EPROTOTYPE";break;
case EINVAL: errdesc="Invalid argument passed.";break;
case ENOMEM: errdesc="Could not allocate memory for recvmsg().";break;
case ENOTCONN: errdesc="The socket is associated with a connection-oriented protocol and has not been connected (see connect(2) and accept(2)).";break;
default: errdesc="Unknown error";break;
}
Мдя, просматривать код писанный мной же, когда я ещё только-только начинал писать на Си стыдновато. :)
−222.8
"""
[AJAX запрос] get_info
Возвращает полную информацию о пользователе.
Входные данные:
request - запрос, содержащий критерий поиска пользователя (строка).
Возвращаемое значение
json, ответ содержащий
"""
Комментарий к одной из функций.
−186.1
var topItem:Object;
var rowNum:int;
var rowCount:int;
...
else if (!topItem && !rowNum == rowCount)
...
Чтобы не утомлять вас догадками, во что же это превратится и в каком порядке произойдут операции: это условие выполниться только когда:
topItem == null
rowNum != 0
rowCount == 0
Как следует из названий переменных, человек, написавший это ожидал, что количество строк может быть меньше, чем порядковый номер одной из строк...
Взято, опять же из Flex Framework mx.controls::Tree.
Скорее всего автор имел в виду следующее:
else if (!topItem && rowNum !== rowCount)
+969.3
foreach (int i in new int[] {1, 2, 3, 4, 5}) {
Питон - суть великое зло! Он разрушает мозг даже очень хороших программистов.