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

    Всего: 3

  2. JavaScript / Говнокод #18395

    +143

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    var pattern = /^([a-z0-9_\.-])+@[a-z0-9-]+\.([a-z]{2,4}\.)?[a-z]{2,4}$/i;
    
    if (pattern.test($(e).val())){
        result = true;
    } else {
        result = false;
    }

    перепроверка же)

    fLa, 24 Июня 2015

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

    −95

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    def self.round_more(number)
      new_number = number.round
      new_number = new_number + 1 if new_number < number
      return new_number
    end

    про ceil мы и не слышали

    fLa, 24 Июня 2015

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

    −108

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    class ApplicationController < ActionController::Base
      protect_from_forgery with: :exception
      skip_before_filter :verify_authenticity_token
      protect_from_forgery unless: -> { request.format.json? }
    
      ...
    end

    fLa, 24 Июня 2015

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