1. C++ / Говнокод #28581

    0

    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
    /*++
    
    
        Intel Corporation Proprietary Information
        Copyright (c) 1995 Intel Corporation
    
        This listing is supplied under the terms of a license agreement with
        Intel Corporation and may not be used, copied, nor disclosed except in
        accordance with the terms of that agreeement.
    
    
    Module Name:
    
        addrconv.c
    
    Abstract:
    
        This module contains the address conversion routines from the
        winsock2 API. This module contains the following functions.
    
        htonl()
        htons()
        ntohl()
        ntohs()
        inet_addr()
        inet_ntoa()
        WSAHtonl()
        WSAHtons()
        WSANtohl()
        WSANtohs()
    
    
    Author:
    
        Dirk Brandewie [email protected]  14-06-1995
    
    [Environment:]
    
    [Notes:]
    
    Revision History:
    
        22-Aug-1995 [email protected]
            Cleanup after code review. Moved includes to precomp.h
    
    --*/
    
    #include "precomp.h"
    
    // these defines are used to check if address parts are in range
    #define MAX_EIGHT_BIT_VALUE       0xff
    #define MAX_SIXTEEN_BIT_VALUE     0xffff
    #define MAX_TWENTY_FOUR_BIT_VALUE 0xffffff
    
    // Defines for different based numbers in an address
    #define BASE_TEN     10
    #define BASE_EIGHT   8
    #define BASE_SIXTEEN 16
    
    //
    // Macros for swapping the bytes in a long and a short.
    //
    
    #define SWAP_LONG(l)                                \
                ( ( ((l) >> 24) & 0x000000FFL ) |       \
                  ( ((l) >>  8) & 0x0000FF00L ) |       \
                  ( ((l) <<  8) & 0x00FF0000L ) |       \
                  ( ((l) << 24) & 0xFF000000L ) )
    
    #define WS_SWAP_SHORT(s)                            \
                ( ( ((s) >> 8) & 0x00FF ) |             \
                  ( ((s) << 8) & 0xFF00 ) )
    
    //
    // This preinitialized array defines the strings to be used for
    // inet_ntoa.  The index of each row corresponds to the value for a byte
    // in an IP address.  The first three bytes of each row are the
    // char/string value for the byte, and the fourth byte in each row is
    // the length of the string required for the byte.  This approach
    // allows a fast implementation with no jumps.
    //
    
    BYTE NToACharStrings[][4] = {
        '0', 'x', 'x', 1,
        '1', 'x', 'x', 1,
        '2', 'x', 'x', 1,
        '3', 'x', 'x', 1,
        '4', 'x', 'x', 1,
        '5', 'x', 'x', 1,
        '6', 'x', 'x', 1,
        '7', 'x', 'x', 1,
        '8', 'x', 'x', 1,
        '9', 'x', 'x', 1,
        '1', '0', 'x', 2,
        '1', '1', 'x', 2,
        '1', '2', 'x', 2,
        '1', '3', 'x', 2,
        '1', '4', 'x', 2,
        '1', '5', 'x', 2,
        '1', '6', 'x', 2,

    голубой ёбаный, иди на хуй отсюда

    cepreu_monoJlb, 02 Февраля 2023

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

    0

    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
    HRESULT SHUrlParse(LPCWSTR pszBase, LPCWSTR pszUrl, PSHSTRW pstrOut, DWORD dwFlags);
    HRESULT SHUrlCreateFromPath(LPCWSTR pszPath, PSHSTRW pstrOut, DWORD dwFlags);
    
    // Ansi wrappers might overwrite the unicode core's return value
    // We should try to prevent that
    HRESULT ReconcileHresults(HRESULT hr1, HRESULT hr2)
    {
        return (hr2==S_OK) ? hr1 : hr2;
    }
    
    
    
    PRIVATE CONST WORD isSafe[96] =
    
    /*   Bit 0       alphadigit     -- 'a' to 'z', '0' to '9', 'A' to 'Z'
    **   Bit 1       Hex            -- '0' to '9', 'a' to 'f', 'A' to 'F'
    **   Bit 2       valid scheme   -- alphadigit | "-" | "." | "+"
    **   Bit 3       mark           -- "%" | "$"| "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")" | ","
    */
    /*   0  1  2  3  4  5  6  7  8  9  A  B  C  D  E  F */
    //    {0, 8, 0, 0, 8, 8, 0, 8, 8, 8, 8, 4, 8,12,12, 0,    /* 2x   !"#$%&'()*+,-./  */
    // IE4 BETA1: allow + through unmolested.  Should consider other options
    // post beta1.  12feb97 tonyci
        {0, 8, 0, 0, 8, 8, 0, 8, 8, 8, 8, 12, 8,12,12, 0,    /* 2x   !"#$%&'()*+,-./  */
         3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 0, 8, 0, 0,    /* 3x  0123456789:;<=>?  */
         8, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1,    /* 4x  @ABCDEFGHIJKLMNO  */
         1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 8,    /* 5X  PQRSTUVWXYZ[\]^_  */
         0, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1,    /* 6x  `abcdefghijklmno  */
         1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 8, 0};   /* 7X  pqrstuvwxyz{|}~  DEL */
    
    PRIVATE const WCHAR hex[] = L"0123456789ABCDEF";
    
    PRIVATE inline BOOL IsSafe(WCHAR ch, WORD mask)
    {
        if(((ch > 31 ) && (ch < 128) && (isSafe[ch - 32] & mask)))
            return TRUE;
    
        return FALSE;
    }

    несвежее говно из потрох мумии

    cepreu_monoJlb, 01 Февраля 2023

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

    0

    1. 1
    https://career.habr.com/vacancies?s[]=2&s[]=3&s[]=82&s[]=4&s[]=5&s[]=72&s[]=1&s[]=75&s[]=6&s[]=77&s[]=7&s[]=83&s[]=84&s[]=8&s[]=85&s[]=73&s[]=9&s[]=86&s[]=106&type=all

    Что бы это могло значить...

    JloJle4Ka, 31 Января 2023

    Комментарии (40)
  4. Куча / Говнокод #28578

    +1

    1. 1
    error[E0277]: the trait bound `Filtered<tracing_subscriber::fmt::Layer<Layered<OpenTelemetryLayer<Layered<Filtered<tracing_subscriber::fmt::Layer<Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>, Pretty, tracing_subscriber::fmt::format::Format<Pretty>>, tracing_subscriber::reload::Layer<EnvFilter, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, opentelemetry::sdk::trace::tracer::Tracer>, Layered<Filtered<tracing_subscriber::fmt::Layer<Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>, Pretty, tracing_subscriber::fmt::format::Format<Pretty>>, tracing_subscriber::reload::Layer<EnvFilter, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>>, Pretty, tracing_subscriber::fmt::format::Format<Pretty>, fn() -> Stderr {stderr}>, EnvFilter, Layered<OpenTelemetryLayer<Layered<Filtered<tracing_subscriber::fmt::Layer<Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>, Pretty, tracing_subscriber::fmt::format::Format<Pretty>>, tracing_subscriber::reload::Layer<EnvFilter, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, opentelemetry::sdk::trace::tracer::Tracer>, Layered<Filtered<tracing_subscriber::fmt::Layer<Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>, Pretty, tracing_subscriber::fmt::format::Format<Pretty>>, tracing_subscriber::reload::Layer<EnvFilter, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>, Layered<Box<dyn tracing_subscriber::Layer<Registry> + Send + Sync>, Registry>>>>: tracing_subscriber::Layer<Registry>` is not satisfied

    PE3yC, 30 Января 2023

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

    0

    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
    export function compareTwoObjectExceptTime (obj1, obj2) {
      const obj1Copy = { ...obj1 }
      const obj2Copy = { ...obj2 }
      delete obj1Copy.ScheduledStartOn
      delete obj1Copy.ScheduledFinishOn
      delete obj1Copy.FinishedStartOn
      delete obj1Copy.FinishedFinishOn
      delete obj1Copy.ScheduledDuration
      delete obj1Copy.FinishedDuration
      delete obj1Copy.tasks
    
      delete obj2Copy.ScheduledStartOn
      delete obj2Copy.ScheduledFinishOn
      delete obj2Copy.FinishedStartOn
      delete obj2Copy.FinishedFinishOn
      delete obj2Copy.ScheduledDuration
      delete obj2Copy.FinishedDuration
      delete obj2Copy.tasks
      return JSON.stringify(obj1Copy) === JSON.stringify(obj2Copy)
    }

    tosetac135, 30 Января 2023

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

    +1

    1. 1
    https://www.youtube.com/shorts/XTUYEkDy-5M

    Такое ощущение, что наступил на коровью бомбочку.

    CMEPTb, 29 Января 2023

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

    +5

    1. 1
    2. 2
    Это очень забавно, скажу я Вам, установив очередной антивирус, втыкать в инонку в трее, представляя, как она защищает 
    твою систему от несуществующих угроз.

    Задача любого антивирусника - ЛЮБОГО! - продержаться на компьютере как можно дольше чтобы он продлил лицензию ещё хоть пару раз. Лет 15-20 назад не иметь антивируса было вообще неприлично. Именно тогда вендоры научились наёбывать пользователей, внушив им, что системная защитная утилита, которой и интерфейс-то нахуй не нужен, должна быть напичкана свистоперделками и иметь приоритет Проводника. Внешний вид - половина успеха. И похуй, что кроме мигания значком в трее софтина в принципе ничего не делает.

    ...Тем более странно, что на фоне набитых скинами софтин паучок Данилова выглядит "голяком". Может, метод от противново?

    Кстати, почему все так текут от 360? Говно говном.

    Support, 28 Января 2023

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

    −1

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

    #136: https://govnokod.ru/27845 https://govnokod.xyz/_27845
    #137: https://govnokod.ru/27857 https://govnokod.xyz/_27857
    #138: https://govnokod.ru/27867 https://govnokod.xyz/_27867
    #139: https://govnokod.ru/27887 https://govnokod.xyz/_27887
    #140: https://govnokod.ru/27900 https://govnokod.xyz/_27900
    #141: https://govnokod.ru/27914 https://govnokod.xyz/_27914
    #142: https://govnokod.ru/27942 https://govnokod.xyz/_27942
    #143: https://govnokod.ru/27960 https://govnokod.xyz/_27960
    #144: https://govnokod.ru/27972 https://govnokod.xyz/_27972
    #145: https://govnokod.ru/27996 https://govnokod.xyz/_27996
    #146: https://govnokod.ru/28008 https://govnokod.xyz/_28008
    #147: https://govnokod.ru/28049 https://govnokod.xyz/_28049
    #148: https://govnokod.ru/28087 https://govnokod.xyz/_28087
    #149: https://govnokod.ru/28136 https://govnokod.xyz/_28136
    #150: https://govnokod.ru/28157 https://govnokod.xyz/_28157
    #151: https://govnokod.ru/28209 https://govnokod.xyz/_28209
    #152: https://govnokod.ru/28217 https://govnokod.xyz/_28217
    #153: https://govnokod.ru/28232 https://govnokod.xyz/_28232
    #154: https://govnokod.ru/28275 https://govnokod.xyz/_28275
    #155: https://govnokod.ru/28281 https://govnokod.xyz/_28281
    #156: https://govnokod.ru/28322 https://govnokod.xyz/_28322
    #157: https://govnokod.ru/28344 https://govnokod.xyz/_28344
    #158: https://govnokod.ru/28366 https://govnokod.xyz/_28366
    #159: https://govnokod.ru/28391 https://govnokod.xyz/_28391
    #160: https://govnokod.ru/28434 https://govnokod.xyz/_28434
    #161: https://govnokod.ru/28449 https://govnokod.xyz/_28449
    #162: https://govnokod.ru/28477 https://govnokod.xyz/_28477
    #163: https://govnokod.ru/28501 https://govnokod.xyz/_28501
    #164: https://govnokod.ru/28527 https://govnokod.xyz/_28527
    #165: https://govnokod.ru/28557 https://govnokod.xyz/_28557

    nepeKamHblu_nemyx, 26 Января 2023

    Комментарии (426)
  9. Куча / Говнокод #28573

    −1

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

    #33: https://govnokod.ru/27801 https://govnokod.xyz/_27801
    #34: https://govnokod.ru/27817 https://govnokod.xyz/_27817
    #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

    nepeKamHblu_nemyx, 26 Января 2023

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

    −2

    1. 1
    Политота #19

    #1: https://govnokod.ru/15804 https://govnokod.xyz/_15804
    #2: https://govnokod.ru/19910 https://govnokod.xyz/_19910
    #3: https://govnokod.ru/23643 https://govnokod.xyz/_23643
    #4: (vanished) https://govnokod.xyz/_24822
    #5: https://govnokod.ru/24868 https://govnokod.xyz/_24868
    #6: (vanished) https://govnokod.xyz/_26648
    #7: https://govnokod.ru/26673 https://govnokod.xyz/_26673
    #8: https://govnokod.ru/27052 https://govnokod.xyz/_27052
    #9: https://govnokod.ru/27852 https://govnokod.xyz/_27852
    #10: https://govnokod.ru/28060 https://govnokod.xyz/_28060
    #11: https://govnokod.ru/28091 https://govnokod.xyz/_28091
    #12: https://govnokod.ru/28103 https://govnokod.xyz/_28103
    #13: https://govnokod.ru/28144 https://govnokod.xyz/_28144
    #14: https://govnokod.ru/28270 https://govnokod.xyz/_28270
    #15: https://govnokod.ru/28341 https://govnokod.xyz/_28341
    #16: https://govnokod.ru/28379 https://govnokod.xyz/_28379
    #17: https://govnokod.ru/28394 https://govnokod.xyz/_28394
    #18: https://govnokod.ru/28440 https://govnokod.xyz/_28440

    nepeKamHblu_nemyx, 23 Января 2023

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