1. Куча / Говнокод #28603

    −2

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    [xcache.admin]
    xcache.admin.enable_auth = On
    
    ; use http://xcache.lighttpd.net/demo/cacher/mkpassword.php to generate your encrypted password
    xcache.admin.user = "mOo"
    xcache.admin.pass = "md5 encrypted password"

    mOo

    HoBorogHuu_nemyx, 16 Февраля 2023

    Комментарии (26)
  2. Haskell / Говнокод #28602

    −4

    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
    (define A (list 1 2 3 4 5 6))
    
    (define (filter number first-number)
      (cond ((= (modulo first-number 2) 0)
             (cond ((= (modulo number 2) 0) (list number))
                   (else '())))
            (else (cond ((not (= (modulo number 2) 0)) (list number))
                   (else '())))))
    
    (define (same-parity-impl L n)
      (let ((C (cdr L)))
        (cond ((null? C)
               (filter (car L) n))
              (else
               (append
                (filter (car L) n)
                (same-parity-impl C n))))))
    
    
    (define result (same-parity-impl A (car A)))
    
    (newline)
    (display result)
    (newline)

    Смотрите, что я сделал!

    JloJle4Ka, 15 Февраля 2023

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

    +2

    1. 1
    2. 2
    Кемел Жомартович взялся за предшественника... Лидер уже не лидер.
    Запасаемся попкорном.

    JlAKOMKA, 15 Февраля 2023

    Комментарии (0)
  4. Java / Говнокод #28600

    −4

    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
    import java.lang.Math;
    import java.util.Random;
    
    public class MyVector {
    
        public static MyVector[] generateVectors(int N) {
            MyVector[] generated_vectors = new MyVector[N];
            for (int i = 0; i < N; i++) {
                MyVector vec = new MyVector();
                generated_vectors[i] = vec;
            }
            return generated_vectors;
        }
    
        public MyVector(double x, double y, double z) {
            this.x = x;
            this.y = y;
            this.z = z;
        }
    
        public MyVector() {
            final Random random = new Random();
            this.x = random.nextInt();
            this.y = random.nextInt();
            this.z = random.nextInt();
        }
    
        public double getX() { return this.x; }
        public void setX(double newX) { this.x = newX; }
    
        public double getY() { return this.y; }
        public void setY(double newY) { this.y = newY; }
    
        public double getZ() { return this.z; }
        public void setZ(double newZ) { this.z = newZ; }
    
        public double getLength() {
            return Math.sqrt(Math.pow(this.x, 2) +
                             Math.pow(this.y, 2) +
                             Math.pow(this.z, 2));
        }
    
        public String toString() {
            StringBuilder representation = new StringBuilder();
            representation.
                append(" { ").
                append(this.x).
                append(" ; ").
                append(this.y).
                append(" ; ").
                append(this.z).
                append(" } ");
            return representation.toString();
        }
    
        public double scalarProduct(MyVector vec) {
            return (this.getX() * vec.getX() +
                    this.getY() * vec.getY() +
                    this.getZ() * vec.getZ());
        }
    
        public MyVector vectorProduct(MyVector vec) {
            MyVector result = new MyVector();
            result.setX(this.getY() * vec.getZ() -
                        this.getZ() * vec.getY());
            result.setY(this.getZ() * vec.getX() -
                        this.getX() * vec.getZ());
            result.setZ(this.getX() * vec.getY() -
                        this.getY() * vec.getX());
            return result;
        }
    
        public MyVector substract(MyVector vec) {
            MyVector result = new MyVector();
            result.setX(this.getX() - vec.getX());
            result.setY(this.getY() - vec.getY());
            result.setZ(this.getZ() - vec.getZ());
            return result;
        }
    
        public MyVector add(MyVector vec) {
            MyVector result = new MyVector();
            result.setX(this.getX() + vec.getX());
            result.setY(this.getY() + vec.getY());
            result.setZ(this.getZ() + vec.getZ());
            return result;
        }
    
        private double x;
        private double y;
        private double z;
    }

    Что здесь не так?

    JloJle4Ka, 13 Февраля 2023

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

    −1

    1. 1
    Пиздец-оффтоп #65

    #35: https://govnokod.ru/27822 https://govnokod.xyz/_27822
    #36: https://govnokod.ru/27826 https://govnokod.xyz/_27826
    #37: https://govnokod.ru/27827 https://govnokod.xyz/_27827
    #38: https://govnokod.ru/27833 https://govnokod.xyz/_27833
    #39: https://govnokod.ru/27862 https://govnokod.xyz/_27862
    #40: https://govnokod.ru/27869 https://govnokod.xyz/_27869
    #41: https://govnokod.ru/27933 https://govnokod.xyz/_27933
    #42: (vanished) https://govnokod.xyz/_27997
    #43: https://govnokod.ru/28042 https://govnokod.xyz/_28042
    #44: https://govnokod.ru/28080 https://govnokod.xyz/_28080
    #45: https://govnokod.ru/28086 https://govnokod.xyz/_28086
    #46: https://govnokod.ru/28105 https://govnokod.xyz/_28105
    #47: https://govnokod.ru/28166 https://govnokod.xyz/_28166
    #48: https://govnokod.ru/28229 https://govnokod.xyz/_28229
    #49: https://govnokod.ru/28298 https://govnokod.xyz/_28298
    #50: https://govnokod.ru/28308 https://govnokod.xyz/_28308
    #51: https://govnokod.ru/28329 https://govnokod.xyz/_28329
    #52: https://govnokod.ru/28340 https://govnokod.xyz/_28340
    #53: (vanished) https://govnokod.xyz/_28346
    #54: https://govnokod.ru/28353 https://govnokod.xyz/_28353
    #55: https://govnokod.ru/28361 https://govnokod.xyz/_28361
    #56: https://govnokod.ru/28383 https://govnokod.xyz/_28383
    #57: https://govnokod.ru/28411 https://govnokod.xyz/_28411
    #58: https://govnokod.ru/28454 https://govnokod.xyz/_28454
    #59: https://govnokod.ru/28472 https://govnokod.xyz/_28472
    #60: https://govnokod.ru/28540 https://govnokod.xyz/_28540
    #61: https://govnokod.ru/28548 https://govnokod.xyz/_28548
    #62: https://govnokod.ru/28555 https://govnokod.xyz/_28555
    #63: https://govnokod.ru/28573 https://govnokod.xyz/_28573
    #64: https://govnokod.ru/28584 https://govnokod.xyz/_28584

    nepeKamHblu_nemyx, 12 Февраля 2023

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

    +1

    1. 1
    Γεια σας, гражданы.

    Как Ваше сердчишко? Не болит, не колет?
    Значит, причина будет иная. Не будем спешить и спойлерить.

    CMEPTb, 10 Февраля 2023

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

    −1

    1. 1
    std::int32_t(v8::Maybe<std::int32_t>::* maybe_from_just)() && = v8::Maybe<std::int32_t>::FromJust;

    ISO, 10 Февраля 2023

    Комментарии (55)
  8. Haskell / Говнокод #28596

    −1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    (define A (list 1 2 3 4 5))
    
    (define (reverse L)
      (let ((C (cdr L)))
        (if (not (null? C))
            (cons (reverse C) (car L))
            (car L))))
    
    (newline)
    (display (reverse A))
    (newline)

    Почему у меня получается х****й лист после реверсинга? :-(

    JloJle4Ka, 10 Февраля 2023

    Комментарии (42)
  9. JavaScript / Говнокод #28595

    −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
    <div v-if="type" v-show="item.item.personalDiscount" class="item__price" style="background: none !important">
                        <span style="background: none !important">
                            {{ `${item.item.personalDiscount} %` }}
                        </span>
                        <span class="item__exchange">
                            {{ $t('pdf.personalDiscount') }} -
                            {{ getExchange(item.item.personalDiscountFinal) }}
                        </span>
                    </div>
                    <div v-if="type" class="item__totalPriceContainer">
                        <span class="item__totalPrice">{{ $t('pdf.itemTotal') }}:</span>
                        <div class="item__price">
                            <span>{{ getTotalOneCartPrice(item.item) }}</span>
                            <span class="item__exchange">
                                {{ $t('pdf.vat') }} —
                                {{
                            getOneCartTotalPriceExchangeNDS(
                              item.item.nds,
                              item.item.basketPriceExchange
                            )
                          }}
                            </span>
                        </div>
                    </div>

    vue js

    Timofey, 09 Февраля 2023

    Комментарии (2)
  10. SQL / Говнокод #28594

    −3

    1. 1
    ТОРПЕДО ВПЕРДЕ

    )

    solntse_v_zenite, 09 Февраля 2023

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