- 1
- 2
- 3
- 4
- 5
create table user.profile (
...
gender boolean,
...
)
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
−154.8
create table user.profile (
...
gender boolean,
...
)
Очевидно, true - это мужик :D
−116.9
Public Function Str2Hex(ByVal strData As String)
Dim i As Long, CryptString As String, tmpAppend As String
On Local Error Resume Next
For i = 1 To Len(strData)
tmpAppend = Hex$(Asc(Mid$(strData, i, 1)))
If Len(tmpAppend) = 1 Then tmpAppend = Trim$(Str$(0)) & tmpAppend
CryptString = CryptString & tmpAppend: DoEvents
Next i
Str2Hex = CryptString
End Function
Работающий перевод строки в Hex.
Но:
1. On Error ... - Где тут может быть Error?!
2. Вместо "0" почему-то написано Trim$(Str$(0)
3. DoEvents, выполняющийся после каждого добавления к строке сильно замедлит код
+154.6
$headers .= "From: " . '[email protected]'. " <" . '[email protected]' . ">\n";
Made by real Indians!
+950
public string OperatorName
{
get
{
if (m_operator == null)
{
try
{
int idUser = 1;
m_operator = (idUser > 0) ? "Василий" : string.Empty;
}
catch
{
m_operator = string.Empty;
}
}
return m_operator;
}
}
Василий решает )))
+73.1
if (e.getClickCount() >= 2 && e.getClickCount() < 8) {
При том количество кликов больше восьми не обрабатывается))
+66.7
double _(double arg);
int main()
{
cout<<"\tFunction f(x) = cos(2*x)*sin(x)\r\n";
cout<<"Interval of integration : \r\n";
cout<<"left border a = \t";double _a;cin>>_a;
cout<<"right border b = \t";double _b;cin>>_b;
cout<<"step of integration dx = \t";double __;cin>>__;
double ____ = _a;
cout<<"integration in process...\r\n";
double ___ = (_(____ + __) - _(____))/2*__;
while(____ < _b)
{
___ += (_(____ + __) - _(____))/2*__;
____ += __;
}
cout<<"complete....\r\n";
cout<<"result is "<<___<<"\r\n at"<<____<<"\r\n";
return 0;
}
Что-бы это значило?
+148.6
class ZDate extends Logic
{
/**
* return age
*
* @param integer $birthday
* @return string
*/
public static function getAge($birthday)
{
$year = date('Y', $birthday);
$month = date('m', $birthday);
$day = date('d', $birthday);
$cur_year = date('Y');
$cur_month = date('m');
$cur_day = date('d');
$age = $cur_year - $year;
if ($cur_month < $month) --$age;
if ($cur_month == $month && $cur_day < $day) --$age;
return (string) $age;
}
}
Вот так коллега вычисляет возраст пользователя =)
+107.9
if l<9
then
if r<10
then
s:= inttostr(l)
else
s:= '10'
else
if l<99
then
if r<100
then
s:= inttostr(l)
else
s:= '100'
else
if l<999
then
if r<1000
then
s:= inttostr(l)
else
s:= '1000'
else
if l<9999
then
if r<10000
then
s:= inttostr(l)
else
s:= '10000'
else
if l<99999
then
if r<100000
then
s:= inttostr(l)
else
s:= '100000'
else
if l<999999
then
if r<1000000
then
s:= inttostr(l)
else
s:= '1000000'
else
if l<9999999
then
if r<10000000
then
s:= inttostr(l)
else
s:= '10000000'
else
if l<99999999
then
if r<100000000
then
s:= inttostr(l)
else
s:= '100000000'
else
if l<999999999
then
if r<1000000000
then
s:= inttostr(l)
else
s:= '1000000000';
Нашёл в своём решении какой-то олимпиадной задачи. Долго пытался вспомнить, в каком состоянии был...
+139.6
var complete = new ManualResetEvent(false);
ThreadPool.QueueUserWorkItem(
delegate
{
service.StartDownloadUpdatesProcess(complete);
});
complete.WaitOne();
Запустим поток, а потом подождем пока он закончиться.
+167.4
$notch_notch_submit = $_POST['submit'];
$notch_notch_adm_login = $_POST['adm_login'];
$notch_notch_adm_pass = $_POST['adm_pass'];
$notch_submit = htmlspecialchars($notch_notch_submit);
$notch_adm_login = htmlspecialchars($notch_notch_adm_login);
$notch_adm_pass = htmlspecialchars($notch_notch_adm_pass);
$submit = strip_tags($notch_submit);
$adm_login = strip_tags($notch_adm_login);
$adm_pass = strip_tags($notch_adm_pass);
Суперзащита о_О