1. Список говнокодов пользователя WGH

    Всего: 9

  2. PHP / Говнокод #18537

    +2

    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
    protected function ___install($filename) {
    
    		$basename = $this->pagefiles->cleanBasename($filename, true, false, true); 
    		$pathInfo = pathinfo($basename); 
    		$basename = basename($basename, ".$pathInfo[extension]"); 
    
    		$basenameNoExt = $basename; 
    		$basename .= ".$pathInfo[extension]"; 
    
    		// ensure filename is unique
    		$cnt = 0; 
    		while(file_exists($this->pagefiles->path() . $basename)) {
    			$cnt++;
    			$basename = "$basenameNoExt-$cnt.$pathInfo[extension]";
    		}
    
    		if(strpos($filename, ' ') !== false && strpos($filename, '://') !== false) $filename = str_replace(' ', '%20', trim($filename)); // per Pete
    		$destination = $this->pagefiles->path() . $basename; 
    		if(!@copy($filename, $destination)) throw new WireException("Unable to copy: $filename => $destination"); 
    		if($this->config->chmodFile) chmod($this->pagefiles->path() . $basename, octdec($this->config->chmodFile));
    		$this->changed('file');
    		parent::set('basename', $basename); 
    	}

    WGH, 27 Июля 2015

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

    +125

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    #include "server.h"
    
    const server::CServer s(8085, 1111);
    
    int main() {return 0;}

    http://habrahabr.ru/post/213301/
    От автора http://govnokod.ru/14526

    >И еще на мой взгляд, функция main() — атавизм, доставшийся программистам от СИ. В С++ она лишняя. Но компиляторы пока этого не знают к сожалению.
    >Но я решил «наказать» эту ненужную функцию, отобрав у нее возможность что-либо сделать — изменил файл serv.cpp следующим образом

    WGH, 21 Февраля 2014

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

    +63

    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
    int main()
    {
    	server::CServer();
    	return 0;
    }
    
    class CServer {
    public:
        CServer()
        {
            SOCKET listen_sd = socket (AF_INET, SOCK_STREAM, 0);	  CHK_ERR(listen_sd, "socket");
            SET_NONBLOCK(listen_sd);
    
            struct sockaddr_in sa_serv;
            memset (&sa_serv, '\0', sizeof(sa_serv));
            sa_serv.sin_family      = AF_INET;
            sa_serv.sin_addr.s_addr = INADDR_ANY;
            sa_serv.sin_port        = htons (1111);          /* Server Port number */
    
            int err = ::bind(listen_sd, (struct sockaddr*) &sa_serv, sizeof (sa_serv));      CHK_ERR(err, "bind");
            
            err = listen (listen_sd, 5);            CHK_ERR(err, "listen");
    
            while(true)
            {
                    Sleep(1);
    
                    struct sockaddr_in sa_cli;  
                    size_t client_len = sizeof(sa_cli);
    #ifdef WIN32
                    const SOCKET sd = accept (listen_sd, (struct sockaddr*) &sa_cli, (int *)&client_len);
    #else
                    const SOCKET sd = accept (listen_sd, (struct sockaddr*) &sa_cli, &client_len);
    #endif  
                    Callback(sd);
            }
        }
    };

    http://habrahabr.ru/post/211853/

    Бесконечный цикл (event loop) в конструкторе.

    Опущены неинтересные строчки инициализации всякой фигни.

    Про Sleep вместо select/epoll/etc. я вовсе молчу.

    WGH, 08 Февраля 2014

    Комментарии (7)
  5. Си / Говнокод #14097

    +137

    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
    int memcmp (const void* v1, const void* v2, size_t n)
    {
       uint32_t *s1;
       uint32_t *s2;
       size_t  i;
    
       s1 = (uint32_t*) v1;
       s2 = (uint32_t*) v2;
    
       for (i = 0; i < n; i++) {
                    if (*s1 != *s2) {
                            return *(const uint32_t *)s1 >
                                   *(const uint32_t *)s2 ? 1 : -1;
                    }
                    s1++;
                    s2++;
            }
       return 0;
    }

    Реализация memcmp в библиотеке одной малоизвестной "учебной" ОС реального времени. Учебной в том смысле, что по этой системе разве что доклады, презентации и статьи делали, где-то реально она вряд ли использовалась.
    Для интересующихся http://pok.safety-critical.net/

    WGH, 14 Ноября 2013

    Комментарии (14)
  6. JavaScript / Говнокод #14047

    +168

    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
    // ==UserScript==
    // @name        no horses
    // @match       *://govnokod.ru/*
    // @grant       none
    // @run-at      document-start
    // ==/UserScript==
    var CONFIG = {
        horses: [ 
            "Horse2", 
            "PragramistOtBoga", 
            "anonimb84a2f6fd141",
        ],
        autoDownVote: true,
    };
    var observer = new MutationObserver(observeCallback);
    var config = {
        childList: true,
        subtree: true,
    };
    observer.observe(document, config);
    function observeCallback(mutations) {
        mutations.forEach(function(mutation) {
            if (mutation.addedNodes) {
                Array.prototype.forEach.call(mutation.addedNodes, function(node) {
                    try {
                        if (node.nodeType === 1 && /^comments_\d+$/.test(node.id)) {
                            handleComments(node);
                        }
                    } catch (e) {
                        console && console.warn && console.warn(e);
                    }
                });
            }
        });
    }
    function downVote(node, type) {
        var sel;
        switch (type) {
        case "post": sel = ".vote-against"; break;
        case "comment": sel = ".comment-vote-against"; break;
        default: throw 42; break;
        }
        var el = node.querySelector(sel);
        if (el) {
            var evt = document.createEvent("MouseEvents");
            evt.initMouseEvent("click", true, true, unsafeWindow, 
                0, 0, 0, 0, 0, false, false, false, false, 0, null); 
            el.dispatchEvent(evt);
        }
    }
    function handleComments(node) {
        var comments = node.querySelectorAll(".entry-comment-wrapper");
        Array.prototype.forEach.call(comments, function(comment) {
            try {
                handleComment(comment);
            } catch (e) {
                console && console.warn && console.warn(e);
            }
        });
    }
    function handleComment(node) {
        var author = node.querySelector(".entry-author").textContent.trim();
        if (CONFIG.horses.indexOf(author) != -1) {
            node.style.opacity = 0.3;
            node.style.maxHeight = "4em";
            node.style.overflow = "scroll";
    
            if (CONFIG.autoDownVote) {
                downVote(node, "comment");
            }
        }
    }
    function handlePosts(node) {
        var posts = node.querySelectorAll(".hentry");
        var i;
        for (i = 0; i < posts.length; i++) {
            try {
                handlePost(posts[i]);
            } catch (e) {
                console && console.warn && console.warn(e);
            }
        }
    }
    function handlePost(node) {
        var author = node.querySelector(".author a:nth-child(2)").textContent.trim();
        if (CONFIG.horses.indexOf(author) != -1) {
            if (!/^\/\d+$/.test(document.location.pathname)) {
                node.style.opacity = 0.3;
                node.style.maxHeight = "4em";
                node.style.overflow = "scroll";
            }
            if (CONFIG.autoDownVote) {
                downVote(node, "post");
            }
        }
    }
    document.addEventListener("DOMContentLoaded", function() {
        handleComments(document.body);
        handlePosts(document.body);
    });

    Я так и не смог заставить MutationObserver срабатывать на новые элементы, появляющиеся во время загрузки страницы. Отсюда и костыль в последних строчках.

    WGH, 22 Октября 2013

    Комментарии (121)
  7. JavaScript / Говнокод #12640

    +169

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    function hereDoc(f) {
      return f.toString().
          replace(/^[^\/]+\/\*!?/, '').
          replace(/\*\/[^\/]+$/, '');
    }
    
    var tennysonQuote = hereDoc(function() {/*!
      Theirs not to make reply,
      Theirs not to reason why,
      Theirs but to do and die
    */});

    Многострочные стринги в JavaScript, получаемые путем извлечения комментария из тела функции.

    http://stackoverflow.com/a/5571069/371970

    WGH, 23 Февраля 2013

    Комментарии (8)
  8. Python / Говнокод #11909

    −102

    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
    def pagecd_to_dict(page, cd):
        return {
            "key_name": page.title(),
            "title": cd.title or page.title(),
            "group": cd.groupjp or cd.group,
            "released": calendar.timegm(cd.released.timetuple()),
            "rev_timestamp": calendar.timegm(time.strptime(page.editTime(), "%Y%m%d%H%M%S")),
            "tracks": [
                {"title": track.title, "sources": list(itertools.chain.from_iterable(
                        ({"game": source.game, "song": title} for title in source.titles)
                        for source in track.sources
                    ))
                }
                for track in cd.tracks
            ]
        }

    По мотивам http://govnokod.ru/11905

    Та страшная штука, которая находится под ключом tracks, делает примерно следующее:
    (1, [a, b, ...]), (2, [c, d, ...]) ... => (1, a), (1, b), ..., (2, c), (2, d), ...

    WGH, 10 Октября 2012

    Комментарии (2)
  9. Си / Говнокод #11511

    +132

    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
    int enctypex_decoder_rand_validate(unsigned char *validate) {
        int     i,
                rnd;
    
        rnd = ~time(NULL);
        for(i = 0; i < 8; i++) {
            do {
                rnd = ((rnd * 0x343FD) + 0x269EC3) & 0x7f;
            } while((rnd < 0x21) || (rnd >= 0x7f));
            validate[i] = rnd;
        }
        validate[i] = 0;
        return(i);
    }

    WGH, 01 Августа 2012

    Комментарии (10)
  10. Python / Говнокод #6879

    −167

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    9. 9
    def word(long):
       s=''
       for j in range(0,long):
          lit =  struct.unpack('c',plik.read(1))[0]
          if ord(lit)!=0:
             s+=lit
             if len(s)>300:
                break
       return s

    WGH, 06 Июня 2011

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