-
Лучший говнокод
- В номинации:
-
- За время:
-
-
−122
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
Public m_Values As Hashtable
Public Function GetSensorType(p_SensorType As SensorType) As SensorValue
For Each de As DictionaryEntry In m_Values
If CType(de.Key, SensorType) = p_SensorType Then
Return de.Value
End If
Next
Return Nothing
End Function
Отличный пример работы с Hashtable!
IlyaS,
24 Октября 2014
-
+134
- 1
- 2
- 3
- 4
//#if UNITY_IPHONE && !(UNITY_3_0 || UNITY_3_1 || UNITY_3_2 || UNITY_3_3 || UNITY_3_4 || UNITY_3_5 || UNITY_3_6 || UNITY_3_7 || UNITY_3_8 || UNITY_3_9 || UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9)
if (Selection.activeGameObject != null)
control = (IControl)Selection.activeGameObject.GetComponent("IControl");
//#endif
принял код от юнити юниора
sladkijBubaleh,
23 Октября 2014
-
+135
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
bool result = false;
if (xmlString != null)
{
result = reportService.SaveQ360Report(questionnaireId, xmlString, publishReport);
UpdateCurrentReportModel(questionnaireId, reportService);
}
// string errorMessage;
if (result == false)
result = true; //because model is not changed
return Json(new { Success = result, ErrorMessage = DisplayLabels.InvalidModelError });
sharpman,
23 Октября 2014
-
+159
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
<script>
$(function() {
$('#current').load('current.php');
}
</script>
// Тем временем в current.php :
<?
$result = ... ; // данные как-то вытаскиваются из базы
ob_start();?>
<table><?
foreach($result as $res) {?>
<tr><td><?=$res[0]?></td><td><?=$res[1]?></td><td><?=$res[2]?></td></tr>
<?}?>
</table>
<?$table = ob_get_clean();?>
<script>
$('#current').empty();
$('#current').append('<?=str_replace(array("\r","\n"),"",$table)?>');
</script>
Извиняюсь за возможные опечатки: сократил, чтобы оставить только самую мякотку.
clauclauclau,
23 Октября 2014
-
+159
- 1
- 2
- 3
- 4
- 5
- 6
foreach (array(167, 163) as $low_rise_apartment_id)
{
$arParams["SEARCH_DATA"]["articletype"][] = $low_rise_apartment_id;
}
$arParams["SEARCH_DATA"]["articletype"] = array_unique($arParams["SEARCH_DATA"]["articletype"]);
solnatus,
22 Октября 2014
-
+154
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
<?php if( !empty($documents[4]) ):?>
<hr>
<h3>Выполняемые работы</h3>
<table class="b-transparent-table">
<?php foreach ($documents[4] as $file_name => $text): ?>
<tr>
<td class ="td_big">
<h6><?= $text;?></h6>
</td>
<td>
<a href="<?= $dir.$passport['reforma_id'].DIRECTORY_SEPARATOR."4".DIRECTORY_SEPARATOR.$file_name;?>">скачать</a>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif;?>
магический документ 4. В файле откуда взят код есть также документ 5.
memclutter,
20 Октября 2014
-
+157
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
if($yearbegin=='2009')
{
$dateorder="14 августа 2009";
if($coursebegin==1)
{
$numberorder="736-уч";
}
}
if($yearbegin=='2010')
{
$dateorder="10 августа 2010";
if($coursebegin==1)
{
$numberorder="1027-уч";
}
if($coursebegin==2)
{
$numberorder="1026-уч";
}
}
if($yearbegin=='2011')
{
$dateorder="16 августа 2011";
if($coursebegin==1)
{
$numberorder="1181-уч";
}
if($coursebegin==2)
{
$numberorder="1180-уч";
}
}
if($yearbegin=='2012')
{
$dateorder="15 августа 2012";
if($coursebegin==1)
{
if($contract=="контрактной")
{
$numberorder="1354-уч";
}
if($contract=="бюджетной")
{
$numberorder="1351-уч";
}
}
if($coursebegin==2)
{
if($contract=="контрактной")
{
$numberorder="1352-уч";
}
if($contract=="бюджетной")
{
$numberorder="1353-уч";
}
}
}
// ...
До 2015
saksmt,
17 Октября 2014
-
+122
- 1
slu4ajnoe4islo interval xyuma = unsafeDupablePerformIO (if xyuma==xyuma then randomRIO interval else undefined)
GovnoGovno,
15 Октября 2014
-
+157
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
'errorHandler' =>
class yii\console\ErrorHandler#6 (6) {
public $discardExistingOutput =>
bool(true)
public $memoryReserveSize =>
int(262144)
public $exception =>
NULL
private $_memoryReserve =>
string(262144) "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"...
Где-то в недрах Yii2. Я, кажется, понимаю, что это и зачем (хотя не уверен, что это работает, когда памяти уже не хватило), но выглядит просто адово.
Fike,
12 Октября 2014
-
+134
- 1
- 2
- 3
- 4
- 5
- 6
- 7
#define TIME_MATCH 500 /* 5 seconds */
#define TIMEOUT 2000 /* 20 seconds */
...
if ((pPoint->dwTimer >= TIME_MATCH)
|| (pPoint->dwTimer >= TIMEOUT)) {
bNewDigit = TRUE;
}
И вроде бы причем тут индусы со построчной оплатой кода.
qxoz,
07 Октября 2014