1. PHP / Говнокод #8661

    +171

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    // Записываем просмотр профайла
    MySQL::QueryInsert(
    	'profile_views', 
    	array(
    		'profile_id' => (int)$user['id'], 
    		'visitor' => (int)User::$current['id'], 
    		'date' => (int)$cur_time, 
    		'hidden' => (int)User::$current['hidden']
    		)
    	);
    // Смотрим последнюю запись в просмотрах
    $prev_visit = MySQL::FetchAll(
    	MySQL::Query(
    		'SELECT `visitor`,`date` 
    		   FROM profile_views 
    		  WHERE profile_id='.(int)$user['id'].' AND `date`<'.(int)$cur_time.
              ' AND `hidden`='.(int)User::$current['hidden'].' 
           ORDER BY `date` DESC 
              LIMIT 1'
            )
        );
    // если юзер сам посмотрел свой профиль - удаляем только что вставленную запись
    if ($prev_visit[0]['visitor'] == User::$current['id']) {
        MySQL::Query(
    	    'DELETE FROM profile_views 
    	      WHERE profile_id='.(int)$user['id'].' 
    	        AND `date`='.(int)$prev_visit[0]['date'].
              ' AND `hidden`='.(int)User::$current['hidden'].' 
                AND visitor='.(int)User::$current['id']
        );
    };

    Комментарии мои. Сука, я потихоньку начинаю ненавидеть прибалтийских программеров

    Sc0rp10, 28 Ноября 2011

    Комментарии (8)
  2. PHP / Говнокод #8660

    +147

    1. 1
    $field_value = trim( $field_value, ' \n"' );

    odmin, 28 Ноября 2011

    Комментарии (11)
  3. PHP / Говнокод #8659

    +165

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    @jfredys 23-Mar-2011 01:07 
     I was looking for trimming all the elements in an array, I found this as the simplest solution: 
    
    <?php 
     array_walk($ids, create_function('&$val', '$val = trim($val);')); 
    ?>

    array_map? не, не слышал.

    DrFreez, 27 Ноября 2011

    Комментарии (50)
  4. Pascal / Говнокод #8658

    +96

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    MediaPlayer1.FileName := './data/gong.wav';
      MediaPlayer1.Open;
      g1 := timetostr(time);
      g2 := timetostr(strtotime('0:00:00'));
      g3 := timetostr(strtotime('3:00:00'));
      g4 := timetostr(strtotime('6:00:00'));
      g5 := timetostr(strtotime('5:00:00'));
      g6 := timetostr(strtotime('12:00:00'));
      g7 := timetostr(strtotime('15:00:00'));
      g8 := timetostr(strtotime('18:00:00'));
      g9 := timetostr(strtotime('21:00:00'));
      if g1 = g2 then
        MediaPlayer1.Play
      else
        Label2.Caption := 'не работает тварь...';

    этнический таджик, а в душе - индокитаец

    bugmenot, 27 Ноября 2011

    Комментарии (15)
  5. PHP / Говнокод #8657

    +161

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    59. 59
    60. 60
    61. 61
    62. 62
    63. 63
    64. 64
    65. 65
    66. 66
    67. 67
    68. 68
    69. 69
    70. 70
    71. 71
    72. 72
    73. 73
    74. 74
    75. 75
    76. 76
    77. 77
    78. 78
    79. 79
    80. 80
    81. 81
    82. 82
    83. 83
    84. 84
    85. 85
    86. 86
    87. 87
    88. 88
    89. 89
    90. 90
    91. 91
    92. 92
    93. 93
    94. 94
    95. 95
    <? include "../o-proekte/connect.php";?>
    <ul id="nav">
    <li><a class=" link" href="citaty-i-aforizmy/">А</a>
    <ul>
    <?$a =  iconv('utf8', 'cp1251', "А");
    $sql = 'SELECT * FROM authors WHERE name LIKE "'.$a.'%"'; 
    $query = mysql_query($sql) or die("Invalid query: " . mysql_error());
    While ($row = mysql_fetch_array ($query))
    {$results[] = $row;};?>
    <? foreach ($results as $num=> $result ) {
    echo iconv("cp1251", "utf8", "<li><a href=".$result['id']." id=".$result['name'].">".$result['name']."</a></li>");
    }?>
    </ul>
    </li>
    <li><a class=" link" href="citaty-i-aforizmy/">Б</a>
    <ul>
    <?$b =  iconv('utf8', 'cp1251', "Б");
    $sqlb = 'SELECT * FROM authors WHERE name LIKE "'.$b.'%"'; 
    $queryb = mysql_query($sqlb) or die("Invalid query: " . mysql_error());
    While ($rowb = mysql_fetch_array ($queryb))
    {$resultsb[] = $rowb;};?>
    <? foreach ($resultsb as $numb=> $resultb ) {
    echo iconv("cp1251", "utf8", "<li><a href=\"\">".$resultb['name']."</a></li>");
    }?>
    </ul>
    </li>
    <li><a class=" link" href="citaty-i-aforizmy/">В</a>
    <ul>
    <?$v =  iconv('utf8', 'cp1251', "В");
    $sqlv = 'SELECT * FROM authors WHERE name LIKE "'.$v.'%"'; 
    $queryv = mysql_query($sqlv) or die("Invalid query: " . mysql_error());
    While ($rowv = mysql_fetch_array ($queryv))
    {$resultsv[] = $rowv;};?>
    <? foreach ($resultsv as $numv=> $resultv ) {
    echo iconv("cp1251", "utf8", "<li><a href=\"\">".$resultv['name']."</a></li>");
    }?>
    </ul>
    </li>
    <li><a class=" link" href="citaty-i-aforizmy/">Г</a>
    <ul>
    <?$g =  iconv('utf8', 'cp1251', "Г");
    $sqlg = 'SELECT * FROM authors WHERE name LIKE "'.$g.'%"'; 
    $queryg = mysql_query($sqlg) or die("Invalid query: " . mysql_error());
    While ($rowg = mysql_fetch_array ($queryg))
    {$resultsg[] = $rowg;};?>
    <? foreach ($resultsg as $numg=> $resultg ) {
    echo iconv("cp1251", "utf8", "<li><a href=\"\">".$resultg['name']."</a></li>");
    }?>
    </ul>
    </li>
    <li><a class=" link" href="citaty-i-aforizmy/">Д</a>
    <ul>
    <?$d =  iconv('utf8', 'cp1251', "Д");
    $sqld = 'SELECT * FROM authors WHERE name LIKE "'.$d.'%"'; 
    $queryd = mysql_query($sqld) or die("Invalid query: " . mysql_error());
    While ($rowd = mysql_fetch_array ($queryd))
    {$resultsd[] = $rowd;};?>
    <? foreach ($resultsd as $numd=> $resultd ) {
    echo iconv("cp1251", "utf8", "<li><a href=\"\">".$resultd['name']."</a></li>");
    }?>
    </ul>
    </li>
    <li><a class=" link" href="citaty-i-aforizmy/">Е</a>
    <ul>
    <?$e =  iconv('utf8', 'cp1251', "Е");
    $sqle = 'SELECT * FROM authors WHERE name LIKE "'.$e.'%"'; 
    $querye = mysql_query($sqle) or die("Invalid query: " . mysql_error());
    While ($rowe = mysql_fetch_array ($querye))
    {$resultse[] = $rowe;};?>
    <? foreach ($resultse as $nume=> $resulte ) {
    echo iconv("cp1251", "utf8", "<li><a href=\"\">".$resulte['name']."</a></li>");
    }?>
    </ul>
    </li>
    <li><a class=" link" href="citaty-i-aforizmy/">Ж</a>
    <ul>
    <?$j =  iconv('utf8', 'cp1251', "Ж");
    $sqlj = 'SELECT * FROM authors WHERE name LIKE "'.$j.'%"'; 
    $queryj = mysql_query($sqlj) or die("Invalid query: " . mysql_error());
    While ($rowj = mysql_fetch_array ($queryj))
    {$resultsj[] = $rowj;};?>
    <? foreach ($resultsj as $numj=> $resultj ) {
    echo iconv("cp1251", "utf8", "<li><a href=\"\">".$resultj['name']."</a></li>");
    }?>
    </ul>
    </li>
    <li><a class=" link" href="citaty-i-aforizmy/">З</a>
    <ul>
    <?$z =  iconv('utf8', 'cp1251', "З");
    $sqlz = 'SELECT * FROM authors WHERE name LIKE "'.$z.'%"'; 
    $queryz = mysql_query($sqlz) or die("Invalid query: " . mysql_error());
    While ($rowz = mysql_fetch_array ($queryz))
    {$resultsz[] = $rowz;};?>
    <? foreach ($resultsz as $numz=> $resultz ) {
    echo iconv("cp1251", "utf8", "<li><a href=\"\">".$resultz['name']."</a></li>");

    нужно чтобы php выводил что то типа
    А Б
    август Брайан
    Бекхем
    и т.д. (c)phpforum.ru

    hookman, 27 Ноября 2011

    Комментарии (13)
  6. C++ / Говнокод #8656

    +1001

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    9. 9
    QStringList list;
    QStringList::iterator i, j;
    //...
    i = qLowerBound(list.begin(), list.end(), value);
    j = qUpperBound(list.begin(), list.end(), value);
    while (i != j) {
    	processItem(*i);
    	++i;
    }

    Пахучее пятнышко из брошюры "Qt 4's Generic Algorithms"

    Xom94ok, 27 Ноября 2011

    Комментарии (131)
  7. PHP / Говнокод #8655

    +147

    1. 1
    Админыч. - ты дебил. Информацию о студентах только дебилы мусолят

    Tundra, 26 Ноября 2011

    Комментарии (15)
  8. Куча / Говнокод #8654

    +136

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    <?
    if(isset($_GET['lllll'])) $true='true';
    else $true='false';
    ?>
    <html>
    <head>
    <script type=text/js>
    var lolll=<?php echo "{$true}" ;  ?>;
    if(lolll==true) document.getElementById("aaabb").setAttribute('style',"display:none") /*nividimost*/
    </script>
    ...

    Очередной школокод?

    AlexT, 26 Ноября 2011

    Комментарии (12)
  9. PHP / Говнокод #8653

    +165

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    function SetAccounts($user, $sys)
    {
     $resp = MySQL::Query("SELECT * FROM `accs` WHERE `user`='".$user."' AND `sys`='".$sys."'");
     $userid = "";
     $dotsys = "";
     while($ob = MySQL::Fetch($resp))
     {
      $userid = $ob["user"];
      $dotsys = $ob["sys"];
      $to_build = $ob["from"];
    }

    Нужно было подставить значения $user и $sys

    mtu, 26 Ноября 2011

    Комментарии (3)
  10. C# / Говнокод #8652

    +1003

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    namespace ExtensionMethods
    {
        public static class MyExtensions
        {
            public static int WordCount(this String str)
            {
                return str.Split(new char[] { ' ', '.', '?' }, 
                                 StringSplitOptions.RemoveEmptyEntries).Length;
            }
        }   
    }
    ....
    string s = "Hello Extension Methods";
    int i = s.WordCount();

    http://msdn.microsoft.com/en-us/library/bb383977.aspx

    In your code you invoke the extension method with instance method syntax. However, the intermediate language (IL) generated by the compiler translates your code into a call on the static method. Therefore, the principle of encapsulation is not really being violated. In fact, extension methods cannot access private variables in the type they are extending.

    Синтаксический сахар. Бессмысленный и беспощадный.
    Ждк, когда шарпоблядки уже начнут дохнуть от диабета.

    3.14159265, 26 Ноября 2011

    Комментарии (140)