- 1
- 2
- 3
- 4
- 5
- 6
- (void) dealloc
{
NSAssert(NO, @"beda!");
[_connection close];
...
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
−109.5
- (void) dealloc
{
NSAssert(NO, @"beda!");
[_connection close];
...
}
@ Objective-C
+136.7
protected void WriteLoginBlock()
{
string s = "";
if (SiteSecurity.IsAuthenticated)
{
s = @"<div style=""margin-top: 3px;""><a href=""/login/"" style=""text-decoration: underline; color:#000; background:none;"">" + SiteSecurity.CurrentUser.Name + "</a></div>";
}
else
{
s = @"
<form action=""/login/"" method=""POST"" id=""gLoginForm"">
<div class=""rel_i"">
<input class=""txtinp"" type=""text"" value=""логин"" id=""gLogin"" name=""cllgn"" />
<input class=""txtinp"" type=""text"" name=""clpwd"" id=""gPwd"" value=""пароль"" onfocus=""if (this.value==this.defaultValue) {this.value='';this.type='password'}"" onblur=""if(this.value=='') {this.value=this.defaultValue;this.type='text'}"" />
<!--<label for=""clpwd"" class=""pwd_label"" id=""gPwdLabel"">пароль</label>-->
<a href=""/login/"" id=""blogin""> </a>
</div>
</form>
<script type=""text/javascript"">
function isChanged(obj) { return $(obj)[0]._changed; }
function isValue(obj, value) { return $.trim($(obj).val()).toLowerCase() == value.toLowerCase(); }
$(""#gLogin"")
.keydown ( function() { this._changed = true; } )
.focus( function() { if (!isChanged(this) && isValue(this, 'логин')) $(this).val(''); } )
.blur( function() { if(isValue(this, '')) { $(this).val('логин'); $(this)[0]._changed=false; } } );
$(""#blogin"").click(function(){
if(!isChanged(""#gLogin"") || isValue(""#gLogin"", '') || isValue(""#gPwd"",'')) return false;
$('#gLoginForm').submit();
return false; });
</script>";
}
Response.Write(s);
}
+95.4
найдено в коде EhLib в процедуре TCustomDBLookupComboboxEh.CMMouseWheel
if FListVisible then
with TMessage(Message) do
if FDataList.Perform(CM_MOUSEWHEEL, WParam, LParam) <> 0 then
begin
Exit;
Result := 1;
end;
поэтому, если скролить комбобокс на паренте все комбобоксы скролятся тоже. вначале долго жрал.
+127.4
idPlansList = ViewState["idPlansList"] is List<int> ? (List<int>)ViewState["idPlansList"] : new List<int>();
+156
$db = JFactory::getDBO();
$records = $db->Execute(
'SELECT DISTINCT(MONTH(publication_date)) ' .
' FROM miel_news' .
' WHERE `news_type` != \'analytics\' and YEAR(publication_date) = ' . $year .
' AND publish=1'.
' AND publication_date < \''.date('Y-m-d H:i:s').'\''.
' ORDER BY publication_date DESC');
if ($records->data){
$mm = array('Январь', 'Февраль', 'Март' , 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь');
$m_array = array_map('array_shift', $records->data);
foreach ($m_array as $key => $value){
$value--;
$month[] = array('name' => $mm[$value], "id" =>$value+1) ;
}
return $month;
}
+139
// export in csv - part of the code
// ...
foreach (users_view _item in _users_view)
{
_writer.Write(String.Format("{1}{0}{2}{0}{3}{0}{4}{0}{5}{0}{6}{0}{7}{0}{8}{0}{9}{0}{10}{0}{11}{0}{12}{0}{13}{0}{14}{0}{15}{0}{16}{0}{17}{0}{18}{0}{19}{0}{20}{0}{21}{0}{22}{0}{23}{0}{24}\n",
AppSettingsReader.GetValue("CSVFileSeparator"),
@"""" + _item.title_name + @"""", @"""" + _item.first_name + @"""",
@"""" + _item.last_name + @"""", @"""" + _item.job_title + @"""",
@"""" + _item.user_type_name + @"""",
@""""+_item.company_name+@"""",
(_item.telephone != null) ? (@"""" + _item.telephone + @"""") : (""),
(_item.fax != null) ? (@"""" + _item.fax + @"""") : (""),
@"""" + _item.email + @"""",
(_item.account_email != null) ? (@"""" + _item.account_email + @"""") : (""),
@"""" + _item.site_address + @"""",
@"""" + _item.advertisement_source_name+@"""",
@"""" + _item.address_1+@"""",
(_item.address_2 != null) ? (@"""" + _item.address_2+@"""") : (""),
@"""" + _item.country_name+@"""",
//_item.email_format_name,
(_item.postcode != null) ? (@"""" + _item.postcode+@"""") : (""),
(_item.county != null) ? (@"""" + _item.county+@"""") : (""),
@"""" + _item.town + @"""",
// (_item.is_active == false) ? ("No") : ("Yes"),
@"""" + _item.username+@"""",
@"""" + _item.password+@"""",
@"""" + _item.account_type_name + @"""",
@"""" + _item.creation_date + @"""",
(_item.is_newsletter_subscriber == false) ? ("No") : ("Yes"),
(_item.is_marketing_subscriber == false) ? ("No") : ("Yes")
)
);
}
Вот что нашел :)
+74.1
public class MyDateFormat extends FormatData {
// массив месяцев
private static String[] months = new String[]{"января", "февраля", "марта", "апреля", "мая",
"июня", "июля", "августа", "сентября", "октября", "ноября", "декабря"};
/**
* Метод предназначен для форматирования даты <"dd" month yyyy г.>
*
* @param date - дата
* @return строку отформатированной даты
*/
public static String DayMonthYear(Date date) {
if (null != date) {
return " «" + date.toString().substring(8, 10) + "» "
+ months[(Integer.parseInt(date.toString().substring(5, 6).replace("0", "")
+ date.toString().substring(6, 7))) - 1] +
" " + date.toString().substring(0, 4) + "г.";
} else {
return "";
}
}
}
и правильно! зачем настоящим тру кодерам ResourceBundle, DateFormat и Locale?
а наследование добавлено, видимо, для солидности
+81.4
public void checkClass(Object target){
if (!target.getClass().toString().contains("myBuilder")){
throw new IllegalArgumentException("Передан объект неверного типа");
}
}
instanceof - это для трусов!
+161.7
function read_file($path)
{if(!is_file($path))return false;
elseif(!filesize($path))return array();
elseif($array=file($path))return $array;
else while(!$array=file($path))sleep(1);
return $array;}
интересный способ чтения файла в WR-Counter )))
+157
<?php
public function run()
{
$db = Registry::get('Db');
$db->transaction(Db_Database::START);
$success = $db->query()->update()
->table('forum_topics')
->set('PostsCount = PostsCount - 1')
->set('LastPostID = ('
. $db->query()
->select()->fields('ID')
->table('forum_posts')->order('ID', 1) // DESC
->where('TopicID = %d', $this->post->topic->id)
->limit(1)->compile()->getQuery()
. ')')
->set('FirstPostID = ('
. $db->query()
->select()->fields('ID')
->table('forum_posts')->order('ID')
->where('TopicID = %d', $this->post->topic->id)
->limit(1)->compile()->getQuery()
. ')')
->where('ID = %d', $this->post->topic->id)
->compile()->run()->success()
&& $db->query()->update()
->table('forum_cats')
->set('PostsCount = PostsCount - 1')
->set('LastTopicID = ('
. $db->query()
->select()->fields('ID')
->table('forum_topics')->order('LastPostID', 1) // DESC
->where('CatID = %d', $this->post->topic->category->id)
->limit(1)->compile()->getQuery()
. ')')
->where('ID = %d', $this->post->topic->category->id)
->compile()->run()->success()
&& $db->query()->update()
->table('forum_posts')
->set('Deleted = 1')
->where('ID = %d', $this->post->id)
->compile()->run()->success();
$db->transaction($success ? Db_Database::COMMIT : Db_Database::ROLLBACK);
return $success;
}
Вот такая вот жесть бывает. Изменение счетчиков на форуме (денормализация) с использованием альфа-версии кверибилдера. по-моему — устрашающе)