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

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

    +2

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    let checks: boolean[] = [];
    
          languages.value.map((language) => {
            checks.push(name.value.hasOwnProperty(language.locale) && !!name.value[language.locale]);
            checks.push(description.value.hasOwnProperty(language.locale) && !!description.value[language.locale]);
          });
    
          return !checks.includes(false);

    hulkmaster, 12 Ноября 2021

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

    +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
    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
    uint16_t Mnemonic::describeMnemonics(void) const
    {
    	uint16_t result = 0;
    	size_t i = 0;
    	for (auto&& m : mnemonics)
    		result += m.index() << i++ * 4;
    
    	return result;
    }
    ...
    switch(mnemonic.describeMnemonics())
    {
    	case constructDescription(REGISTER, REGISTER):
    	{
    ...
    	}
    	break;
    
    	case constructDescription(REGISTER, CONSTANT):
    	{
    ...
    	}
    	break;
    
    	case constructDescription(REGISTER, LABEL):
    	{
    ...
    	}
    	break;
    
    	case constructDescription(REGISTER, INDIRECT_ADDRESS):
    	{
    ...
    	}
    	break;
    
    	case constructDescription(INDIRECT_ADDRESS, REGISTER):
    	{
    ...
    	}
    	break;
    
    	default:
    		break;
    
    }

    спасибо папочка за паттерн матчинг

    digitalEugene, 01 Ноября 2021

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

    +2

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    // a.h
    inline struct $q1 {unsigned a;} $q1i;
    
    // main.cpp
    #include "a.h"
    int main(int argc, char** args) 
    {
        $q1i.a = argc; 
        return $q1i.a;
    };

    у некоторых линукс-юзеров может упасть на этапе линковки

    digitalEugene, 31 Октября 2021

    Комментарии (3)
  5. Куча / Говнокод #27708

    +2

    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
    % Totoro sitting in the snow
    % By Noa Hoffmann and Pascal Günthner, 21.12.2020
    \documentclass[tikz,11pt]{{standalone}}
    \usepackage{calligra}
    \usepackage[T1]{fontenc}
    \usetikzlibrary{%
      shapes, shadows, patterns, calc,
      decorations.shapes,
      decorations.fractals,
      decorations.markings,
      decorations.pathmorphing
    }
    
    \colorlet{bodycolor}{black!35!gray!60!brown!98!green}
    \colorlet{bellycolor}{yellow!70!white!92!green}
    
    \tikzset{
       furspot/.pic = {
        \path [draw = black, thick, fill] (0,0)    
        .. controls +(0.3,0)        and  +(0.25,-0.05)   ..  ++(0.35,-.45)
        .. controls +(-0.45,0.25)   and  +(0.1,0)        ..  ++(-0.85,-0.05)
        .. controls +(-0.3,0.1)     and  +(-0.4, 0)      ..  cycle;
       },
       claw/.pic = {
        \path [fill = bodycolor!70, draw] (0,0) arc (0:45:0.2 and 0.8)
                                               arc (135:180:0.2 and 0.8)
        arc (180:360:0.059) -- cycle;
       },
       whiskers/.pic = {
        \path [fill = bodycolor!70,draw] (0,0) arc (0:45:0.05 and 2.3)
                                            arc (135:180:0.3 and 2.3)
        to[out=-90,in=-90] cycle;
       },
       snowflake/.pic = {
       \fill [decoration = Koch snowflake, white] decorate{ decorate{
              decorate{ (-0.5,-0.3) -- ++(60:1) -- ++(-60:1) -- cycle }}};
       \foreach \i in {30, 90, 150, 210, 270, 330} {
            \draw[blue!50!white,very thin] (0,0) -- +(\i:0.3);
            }
        \draw[decoration = Koch snowflake, blue!50!white, very thin]
              decorate{($(0,0)+(60:0.2)$) -- ($(0,0)+(300:0.2)$) --
                       ($(0,0)+(180:0.2)$) -- cycle};
       }
    }
    \tikzset{
      snow/.style   = {decoration = {random steps, segment length = 2mm,
                       amplitude = 0.4mm}, decorate},
      plush/.style  = {decoration = {random steps, segment length = 1mm,
                       amplitude = 0.5mm},decorate}
    }
    
    \begin{document}
    \begin{tikzpicture}[color = bodycolor, draw = black, thick]
    
    %---------------------background and tail----------------------
    % blue sky
    \fill[blue!30!white] (-8cm,-11cm) rectangle (8cm,10cm);
    % random snowflakes
    \foreach \i in {0.1,0.11,...,1}{
      \pic [scale = \i, opacity = 0.9] at (rand*7.5, rnd*18-10.5) {snowflake};}
    % more tiny snowflakes
    %\foreach \i in {0.1,0.11,...,0.5}{
      %\pic [scale = \i, opacity = 0.9] at (rand*7.5, rnd*18-10.5) {snowflake};}
    % cloud with merry christmas
    \node [cloud,aspect = 6.5, cloud puff arc = 120, cloud puffs = 12.9, fill = white,
           color = white] at (0,7) {\Huge M \hspace{9.8cm}.};
    \node [color = red] at (0,7) {\fontsize{50}{80}
                                  \textbf{Merry Christmas \quad }};
    % tail
    \path [draw, fill, rotate = 50] (-4,-7.5) circle (1.5 and 2.2);
    % snowhill
    \fill [draw, gray!6, snow] (-8,-11) to[in=200, out=0] (-3,-7.5) to (3,-7.5)
          to[out=-20, in=180] (8,-11);
    
    %--------------------body-----------------------------------------
    % right ear
    \path [fill, draw] (0.6,2.3)+(-45:1) arc (-60:35:1 and 1.5) 
                       arc (115:210:1 and 1.5);
    % left ear
    \path [fill, draw] (-0.6,2.3)+(-135:1) arc (-120:-215:1 and 1.5)
                       arc (65:-30:1 and 1.5);
    % head
    \path [draw, fill] ($(0,0)+(170:2.5 and 2)$) arc (170:10:2.5 and 2)
                       arc(35:-20: 3 and 2)
            -- ($(0,-0.8)+(200:3 and 2)$) arc (200:145:3 and 2) -- cycle;
    % body
    \path[fill] ($(0,-4)+(200:4 and 4.5)$) arc (200:-20:4 and 4.5);
    
    %----------------------face----------------------------------------
    % left eye
    \path [draw, fill = white] (-1.4,0.7) circle (0.45 and 0.4);
    \fill [black] (-1.2,0.7) circle (0.16);
    \fill [white] (-1.24,0.74) circle (0.03);
    % right eye
    \path [draw, fill = white, thick] (1.4,0.7) circle (0.4);
    \fill [black] (1.25,0.7) circle (0.16);
    \fill [white] (1.20,0.74) circle (0.03);
    % nose
    \path [draw] (0.35, 0.7) .. controls (0.2,0.8) and (-0.2, 0.8)
                             .. (-0.35, 0.7);

    Какое аниме ))) https://texample.net/tikz/examples/totoro/

    CHayT, 08 Октября 2021

    Комментарии (17)
  6. PHP / Говнокод #27670

    +2

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    if($response == null){
        echo "<pre>";
        var_dump($response);
        echo "</pre>";
        die();
    }

    Таким способом выводится на экран надпись NULL

    govnokoder2, 17 Сентября 2021

    Комментарии (2)
  7. Куча / Говнокод #27668

    +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
    (* https://coq.inria.fr/library/Coq.Init.Datatypes.html *)
    
    (* Basic boolean operators *)
    
    Definition andb (b1 b2:bool) : bool := if b1 then b2 else false.
    
    Definition orb (b1 b2:bool) : bool := if b1 then true else b2.
    
    Definition implb (b1 b2:bool) : bool := if b1 then b2 else true.
    
    Definition xorb (b1 b2:bool) : bool :=
      match b1, b2 with
        | true, true => false
        | true, false => true
        | false, true => true
        | false, false => false
      end.
    
    Definition negb (b:bool) := if b then false else true.
    
    Infix "||" := orb : bool_scope.
    Infix "&&" := andb : bool_scope.

    На первый взгляд этот ваш Coq (питух) выглядит как очередной ML-язычок.

    j123123, 16 Сентября 2021

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

    +2

    1. 1
    (format t "~A~%" (*) )

    https://ideone.com/oO7f4I

    3.14159265, 13 Сентября 2021

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

    +2

    1. 1
    https://codeforwin.org/2018/05/10-cool-bitwise-operator-hacks-and-tricks.html

    10 cool bitwise operator hacks and tricks every programmer must know

    Right shift (>>) operator is equivalent to division by 2
    Want to divide a number by 2 quicky. Here you go, use bitwise right shift operator to divide an integer by 2. Each right shift operation reduces the number (operand) to its half.


    Просто напомню, что Jawa-петушки вручную заменяют деление/умножение на 2 на сдвиг, потому что анскильный компилятор так не умеет.

    OCETuHCKuu_nemyx, 12 Сентября 2021

    Комментарии (298)
  10. Куча / Говнокод #27652

    +2

    1. 1
    IT Оффтоп #113

    #83: https://govnokod.ru/27296 https://govnokod.xyz/_27296
    #84: https://govnokod.ru/27336 https://govnokod.xyz/_27336
    #85: https://govnokod.ru/27381 https://govnokod.xyz/_27381
    #86: https://govnokod.ru/27405 https://govnokod.xyz/_27405
    #87: https://govnokod.ru/27429 https://govnokod.xyz/_27429
    #88: https://govnokod.ru/27432 https://govnokod.xyz/_27432
    #89: https://govnokod.ru/27435 https://govnokod.xyz/_27435
    #90: https://govnokod.ru/27439 https://govnokod.xyz/_27439
    #91: https://govnokod.ru/27449 https://govnokod.xyz/_27449
    #92: https://govnokod.ru/27460 https://govnokod.xyz/_27460
    #93: https://govnokod.ru/27463 https://govnokod.xyz/_27463
    #94: https://govnokod.ru/27466 https://govnokod.xyz/_27466
    #95: https://govnokod.ru/27473 https://govnokod.xyz/_27473
    #96: https://govnokod.ru/27478 https://govnokod.xyz/_27478
    #97: https://govnokod.ru/27484 https://govnokod.xyz/_27484
    #98: https://govnokod.ru/27495 https://govnokod.xyz/_27495
    #99: https://govnokod.ru/27504 https://govnokod.xyz/_27504
    #100: https://govnokod.ru/27508 https://govnokod.xyz/_27508
    #101: https://govnokod.ru/27511 https://govnokod.xyz/_27511
    #102: https://govnokod.ru/27518 https://govnokod.xyz/_27518
    #103: https://govnokod.ru/27526 https://govnokod.xyz/_27526
    #104: https://govnokod.ru/27534 https://govnokod.xyz/_27534
    #105: https://govnokod.ru/27544 https://govnokod.xyz/_27544
    #106: https://govnokod.ru/27552 https://govnokod.xyz/_27552
    #107: https://govnokod.ru/27554 https://govnokod.xyz/_27554
    #108: https://govnokod.ru/27557 https://govnokod.xyz/_27557
    #109: https://govnokod.ru/27581 https://govnokod.xyz/_27581
    #110: https://govnokod.ru/27610 https://govnokod.xyz/_27610
    #111: https://govnokod.ru/27644 https://govnokod.xyz/_27644
    #112: https://govnokod.ru/27648 https://govnokod.xyz/_27648

    nepeKamHblu_nemyx, 08 Сентября 2021

    Комментарии (463)
  11. JavaScript / Говнокод #27639

    +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
    Complex numbers:
    >> Complex()({r: 2, i: 0} / {r: 1, i: 1} + {r: -3, i: 2}))
    <- {r: -2, i: 1}
    
    Automatic differentiation:
    Let f(x) = x^3 - 5x:
    >> var f = x => Dual()(x * x * x - {x:5, dx:0} * x);
    
    Now map it over some values:
    >> [-2,-1,0,1,2].map(a=>({x:a,dx:1})).map(f).map(a=>a.dx)
    <- [ 7, -2, -5, -2, 7 ]
    i.e. f'(x) = 3x^2 - 5.
    
    Polynoomials:
    >> Poly()([1,-2,3,-4]*[5,-6]).map((c,p)=>''+c+'x^'+p).join(' + ')
    <- "5x^0 + -16x^1 + 27x^2 + -38x^3 + 24x^4"

    В ЙажаСцрипт завезли перегрузку операторов.
    https://gist.github.com/pyrocto/5a068100abd5ff6dfbe69a73bbc510d7

    3.14159265, 02 Сентября 2021

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