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

    Всего: 2

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

    +139

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    var priorities = Repository.Get<IIncidentPriority>().Query().OrderBy(x => x.Priority)
     .Select(x => new InputItem { Id = x.Id.ToString(CultureInfo.InvariantCulture), Value = x.LocalizationValue })
    .ToList();
    
    priorities.Add(new InputItem { Id = "-1", Value = Localizator.Get("X4.Incident.Undefined") });
    priorities.Reverse();

    тру хацкеры презирают метод Insert )

    tob1az, 09 Августа 2012

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

    −37

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    int LoggingProvider::AddJournalPackingLogRecord(int eventId, const astring& userId, 
                                                  const std::vector<std::string>& journals, int errorId, int devCode,
                                                  int sysCode, const astring& errorArgs)
    {
        std::string strUserId(userId.c_str()), strErrorArgs(errorArgs);
    
        return AddJournalPackingLogRecord(eventId, userId, journals, errorId, devCode, sysCode, strErrorArgs);
    }

    Рекурсия!

    tob1az, 30 Мая 2012

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