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

    Всего: 13

  2. 1C / Говнокод #11351

    −121

    1. 1
    2. 2
    3. 3
    Если НЕ Отказ И ЭтоНовый() и Роль = Справочники.РолиКонтактныхЛиц.НайтиПоНаименованию("Директор") Тогда
    	Пол = Перечисления.ПолФизическихЛиц.Мужской;
    КонецЕсли;

    Тысячи теток мужского пола негодуют.

    kovyl2404, 03 Июля 2012

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

    −35

    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
    #ifndef _PERSISTENT_COLLECTION_CPP
    #define _PERSISTENT_COLLECTION_CPP
    
    ////// BASE_CLASS
    #include "Persistent/ObjectP.cpp"
    
    ////// Support
    #include "Persistent/UInt.cpp"
    
    ////// Persistent Level 1
    #include "Persistent/StringP.cpp"
    #include "Persistent/UIntP.cpp"
    #include "Persistent/TimeP.cpp"
    #include "Persistent/StringArrayP.cpp"
    #include "Persistent/BoolP.cpp"
    #include "Persistent/Int64P.cpp"
    #include "Persistent/BinaryP.cpp"
    
    ////// Persistent Level 2
    #include "Persistent/MapStringToObjectPPtr.cpp"
    #include "Persistent/ObjectPArrayPtr.cpp"
    #include "Persistent/ObjectPListPtr.cpp"
    
    ////// Persistent Level 3
    #include "Persistent/PropertySet.cpp"
    
    
    #endif

    Лолшто? Include cpp? 0_o

    kovyl2404, 06 Июня 2012

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

    −30

    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
    BOOL CIniFile::LoadIniFile()
    {
      CString csBuff;
      CFile oIniFile;
      if (oIniFile.Open(csIniFileName, CFile::modeRead))
      {
        ULONGLONG lenReal = oIniFile.GetLength();
        DWORD dwLen = (DWORD) lenReal;
        if (lenReal > UINT_MAX)
        {
          dwLen = UINT_MAX;
          TRACE("ERROR: CIniFile::LoadIniFile();  CFIle::GetLength() > UINT_MAX\n;");
          ASSERT(0);
        }
        if (!dwLen)
          return FALSE;
        boost::scoped_array <char> cBuffer(new char[dwLen]);
        oIniFile.Read(cBuffer.get(), dwLen);
        LoadIniFromBuffer(cBuffer.get(), dwLen);
        oIniFile.Close();
        if (GetCountRecords())
          return TRUE;
      }
      return FALSE;
    }

    boost::scoped_array... nuff said =(

    kovyl2404, 05 Июня 2012

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