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

    Всего: 9

  2. C# / Говнокод #26275

    −4

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    9. 9
    public static unsafe int Strlen(byte* data)
    {
                int i = 0;
                while (data[i] != 0)
                {
                    ++i;
                }
                return i;
    }

    Работа с C строками

    Koshak90, 20 Декабря 2019

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

    −13

    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
    #include <iostream>
    #include <vector>
    enum  class en : int {first,second,};
    int main(int argc, char **argv) {
       
        std::initializer_list<int> l = {1,2,3,4,5,6,};
        std::cerr << "size:" << l.size() << std::endl;
        for (const auto & elem : l )
        {
            std::cerr << elem << ' ';
        }
        std::cerr << std::endl;
        return 0;
    }

    WTF???

    Koshak90, 02 Мая 2017

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

    −21

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    try {
                    shadow_page.insert_record(index, record);
                } catch ( ... ) {
                    throw;
                }

    Koshak90, 07 Февраля 2017

    Комментарии (11)
  5. SQL / Говнокод #22104

    −50

    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
    DROP TABLE cur; 
    create table cur ( 
    id int AUTO_INCREMENT, 
    name varchar(3), 
    value int, 
    data datetime, 
    PRIMARY KEY (id) 
    ); 
    
    insert into cur values 
    (1, 'usd', 30, '20170130'), 
    (2, 'usd', 33, '20170130'), 
    (3, 'eur', 40, '20170130'), 
    (4, 'gbp', 50, '20170130'); 
    
    select * from (select * from cur order by data DESC, id desc) 
    t1 group by name; 
    # работает только на MySQL

    no coments;

    Koshak90, 01 Февраля 2017

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

    −51

    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
    const char * c_version()
    {
      const char * hui = "hui";
      const char * pizda = "pizda";
      unsigned long huilen = strlen ( hui );
      unsigned long pizdalen = strlen ( pizda );
      char * sobaka = ( char* ) ::malloc ( (huilen + pizdalen) + 2 );
      strcat ( sobaka,hui );
      strcat ( ( sobaka + huilen ),"&" );
      strcat ( ( sobaka + huilen + 1 ),pizda );
      sobaka[huilen + pizdalen + 1] = '\0';
      return sobaka;
    }

    Склеиваем строки

    Koshak90, 01 Февраля 2017

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

    −21

    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
    #include <iostream>
    #include <regex>
    #include <strstream>
    double calc(const double& a,const double & b,char op)
    {
        switch(op)
        {
            case '+':
                return a+b;
            case '-':
                return a-b;
            case '/':
                return a/b;
            case '*':
                return a*b;
        }
    }
     
    std::string calc(const std::string & ex )
    {
        double a{},b{};
        char op{};
        std::stringstream str;
        str << ex;
        str >> a >> op >> b;
        return std::to_string(calc(a,b,op));
    }
    std::string parse_first(const std::string & in)
    {
        std::string res;
        std::regex re("\\(\\d+(\\*|\\/|\\+|\\-)\\d+\\)");
        std::sregex_token_iterator begin(in.begin(),in.end(),re,0);
        while(begin != std::sregex_token_iterator())
        {
     
            std::string temp = begin->str();
            std::regex r("(\\(|\\))");
            temp = std::regex_replace(temp,r,"");
            std::string calced = calc(temp);
            r.assign(begin->str());
            res = std::regex_replace(in,re,calced);
            ++begin;
        }
        return res;
    }
     
    std::string parse_second(const std::string & in)
    {
        std::string res = in;
        std::regex re("\\d+(\\.\\d+)?(\\*|\\/)\\d+(\\.\\d+)?");
        std::sregex_token_iterator begin(in.begin(),in.end(),re,0);
        while(begin != std::sregex_token_iterator())
        {
            std::string calced = calc(*begin);
            std::regex r(begin->str());
            res = std::regex_replace(in,r,calced);
            ++begin;
        }
        return res;
    }
     
    double calculate(const std::string & in)
    {
        std::string res = parse_second(parse_first(in));
        std::stringstream final;
        final << res;
        double result{},second{};
        final >> result;
        char op;
        while ((final >> op >> second ))
        {
            result =calc(result,second,op);
        }
        return result;
    }
     
    int main(int argc, char *argv[])
    {
        std::string in;
        std::getline(std::cin,in);
        std::regex re(" ");
        in =std::regex_replace(in,re,"");
        std::cerr << calculate(in) << std::endl;
        return 0;
    }

    Посчитал выражение)

    Koshak90, 30 Января 2017

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

    −15

    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
    #include "document_validator_factory.h"
    
    std::unique_ptr<ortax::DocumentValidator>
    ortax::DocumentValidatorFactory::create_validator(ortax::DocumentType doc_type)
    {
        if (doc_type == DocumentType::RussianPassport) //21
        {
            return std::make_unique<BirthPlaceValidator>(
                   std::make_unique<DocIssuerValidator>(
                   std::make_unique<SubdivisionCodeValidator>(
                   std::make_unique<PassportExpireDateValidator>(
                   std::make_unique<RussianPassportValidator>()))));
        }
        else if (doc_type == DocumentType::MilitarySoldierTicket) //4
        {
            return std::make_unique<BirthPlaceValidator>(
                   std::make_unique<DocIssuerValidator>(
                   std::make_unique<DefaultDocumentValidator>()));
        }
        else if (doc_type == DocumentType::MilitarySoldierTicket) //7
        {
            return std::make_unique<BirthPlaceValidator>(
                   std::make_unique<DocIssuerValidator>(
                   std::make_unique<DefaultDocumentValidator>()));
        }
        else if (doc_type == DocumentType::SeamanPassport) //26
        {
            return std::make_unique<BirthPlaceValidator>(
                   std::make_unique<ExpireDateValidator>(
                   std::make_unique<DefaultDocumentValidator>()));
        }
        else if (doc_type == DocumentType::TemporaryIdentityCard) //14
        {
            return std::make_unique<BirthPlaceValidator>(
                   std::make_unique<ExpireDateValidator>(
                   std::make_unique<DefaultDocumentValidator>()));
        }
        else if (doc_type == DocumentType::ResidensePermitRu) //12
        {
            return std::make_unique<BirthPlaceValidator>(
                   std::make_unique<ExpireDateValidator>(
                   std::make_unique<DefaultDocumentValidator>()));
        }
        else if (doc_type == DocumentType::ForeignPassport) //10
        {
            return std::make_unique<BirthPlaceValidator>(
                   std::make_unique<DocIssuerValidator>(
                   std::make_unique<DefaultDocumentValidator>()));
        }
        else if (doc_type == DocumentType::ForeignPassport) //15
        {
            return std::make_unique<ExpireDateValidator>(
                   std::make_unique<DefaultDocumentValidator>());
        }
        else
        {
            return std::make_unique<DefaultDocumentValidator>();
        }
    }

    Мой архитектор использует паттерны

    Koshak90, 16 Января 2017

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

    −14

    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
    #ifndef RPCCALL_H
    #define RPCCALL_H
    #include <deque>
    #include <typeinfo>
    #include <string>
    #include "byteinbuffer.h"
    #include <byteoutbuffer.h>
    #include <ostream>
    class RPCPack
    {
    public:
        RPCPack();
        //RPCPack(const RPCPack &obj);
        RPCPack(RPCPack && obj);
        RPCPack & operator = (RPCPack&& obj);
        template<class T, typename std::enable_if<
            std::is_pod<T>::value && !std::is_pointer<T>::value>::type* = nullptr>
        bool pack(const T& param);
        template <class T,typename std::enable_if<
                      std::is_same<typename T::iterator::iterator_category,std::random_access_iterator_tag>::value>::type* = nullptr>
        bool pack(const T& param);
    
        template <class T,typename std::enable_if<
                      std::is_same<typename T::iterator::iterator_category,std::bidirectional_iterator_tag>::value>::type* = nullptr>
        bool pack(const T& param);
    
        template <class T,typename std::enable_if<
                      std::is_same<typename T::iterator::iterator_category,std::forward_iterator_tag>::value>::type* = nullptr>
        bool pack(const T& param);
    
        template<class D,class ... T >
        bool pack(const D& param,const T& ... params);
    
        template<class ... T>
        bool pack(const T& ... params);
    
        template<class T, typename std::enable_if<
            std::is_pod<T>::value && !std::is_pointer<T>::value &&  !std::is_array<T>::value>::type* = nullptr>
        bool unpack(T& param);
    
        template <class T,typename std::enable_if<
                      std::is_same<typename T::iterator::iterator_category,std::random_access_iterator_tag>::value>::type* = nullptr>
        bool unpack(T& param);
    
        template <class T,typename std::enable_if<
                      std::is_same<typename T::iterator::iterator_category,std::bidirectional_iterator_tag>::value>::type* = nullptr>
        bool unpack(T& param);
    
        template <class T,typename std::enable_if<
                      std::is_same<typename T::iterator::iterator_category,std::forward_iterator_tag>::value>::type* = nullptr>
        bool unpack(T& param);
    
    
        template<class D,class ... T >
        bool unpack(D& param, T& ... params);
    
        template<class ... T>
        bool unpack(T& ... params);
        template <class T,class D>
        bool pack(const std::pair<T,D> & p);
        template <class T,class D>
        bool unpack(std::pair<T,D>& p);
        std::vector<char> getSerialized();
    
        void deserialize(std::istream &vs);
        size_t getSize();
        bool isEmpty();
        void copyOuttoIn();
        void moveOuttoIn();
        ByteOutBuffer<char> getBuffer() const;
        void setBuffer(const ByteOutBuffer<char> &value);
    
    private:
        std::deque<size_t> sig;
        std::vector<char> outdata;
        std::vector<char> indata;
        ByteOutBuffer<char> outbuffer;
        ByteInBuffer<char> inbuffer;
        std::istream is;
        std::ostream os;
    };
    
    
    template<class T, typename std::enable_if<
        std::is_pod<T>::value && !std::is_pointer<T>::value>::type*>
    
    bool RPCPack::pack(const T& param)
    {
       sig.push_back(typeid(param).hash_code());
      if(os.write((char*)&param,sizeof(param)))
          return true;
      return false;
    }
     template <class T,class D>
    bool RPCPack::pack(const std::pair<T,D>& param)
    {
       return pack(param.first) & pack(param.second);
    }
    
    template <class T,class D>

    Хуячу сериализацию. Я метапрограммер)

    Koshak90, 16 Января 2017

    Комментарии (79)
  10. Java / Говнокод #16812

    +73

    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
    for (int i = 1; i <= 3; i++) {
                if (i <= arr.length) {
                    xmlDocumentNode.setNodeValue("P_15_" + i, arr[i - 1].getNAME());
                    xmlDocumentNode.setNodeValue("P_16_" + i, arr[i - 1].getSERIAL());
                    xmlDocumentNode.setNodeValue("P_17_1_" + i, arr[i - 1].getPLANTMANUF());
                    xmlDocumentNode.setNodeValue("P_17_2_" + i, arr[i - 1].getPLANTMANUFNAME());
                    xmlDocumentNode.setNodeValue("P_18_" + i, arr[i - 1].getDATEMANUF());
                    xmlDocumentNode.setNodeValue("P_19_1_" + i, arr[i - 1].getPLANTREP());
                    xmlDocumentNode.setNodeValue("P_19_2_" + i, arr[i - 1].getPLANTREPNAME());
                    xmlDocumentNode.setNodeValue("P_20_" + i, arr[i - 1].getDATEREP());
                    xmlDocumentNode.setNodeValue("P_21_1_" + i, arr[i - 1].getDEFECT());
                    xmlDocumentNode.setNodeValue("P_21_2_" + i, arr[i - 1].getDEFECTNAME());
                } else {
                    xmlDocumentNode.setNodeValue("P_15_" + i, "");
                    xmlDocumentNode.setNodeValue("P_16_" + i, "");
                    xmlDocumentNode.setNodeValue("P_17_1_" + i, "");
                    xmlDocumentNode.setNodeValue("P_17_2_" + i, "");
                    xmlDocumentNode.setNodeValue("P_18_" + i, "");
                    xmlDocumentNode.setNodeValue("P_19_1_" + i, "");
                    xmlDocumentNode.setNodeValue("P_19_2_" + i, "");
                    xmlDocumentNode.setNodeValue("P_20_" + i, "");
                    xmlDocumentNode.setNodeValue("P_21_1_" + i, "");
                    xmlDocumentNode.setNodeValue("P_21_2_" + i, "");
                }
            }

    Обработка XML-таблиц. fillTable? не, не слышал

    Koshak90, 07 Октября 2014

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