1. JavaScript / Говнокод #14076

    +154

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    function FindProxyForURL(url, host) {
      if (shExpMatch(host, "*.govnokod.ru")) {
          return "PROXY 178.63.104.146:80";
      }
      
      return "DIRECT";
    }

    Навеяно прочтением статьи http://en.wikipedia.org/wiki/Proxy_auto-config

    inkanus-gray, 30 Октября 2013

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

    +168

    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
    // ==UserScript==
    // @name        no horses
    // @match       *://govnokod.ru/*
    // @grant       none
    // @run-at      document-start
    // ==/UserScript==
    var CONFIG = {
        horses: [ 
            "Horse2", 
            "PragramistOtBoga", 
            "anonimb84a2f6fd141",
        ],
        autoDownVote: true,
    };
    var observer = new MutationObserver(observeCallback);
    var config = {
        childList: true,
        subtree: true,
    };
    observer.observe(document, config);
    function observeCallback(mutations) {
        mutations.forEach(function(mutation) {
            if (mutation.addedNodes) {
                Array.prototype.forEach.call(mutation.addedNodes, function(node) {
                    try {
                        if (node.nodeType === 1 && /^comments_\d+$/.test(node.id)) {
                            handleComments(node);
                        }
                    } catch (e) {
                        console && console.warn && console.warn(e);
                    }
                });
            }
        });
    }
    function downVote(node, type) {
        var sel;
        switch (type) {
        case "post": sel = ".vote-against"; break;
        case "comment": sel = ".comment-vote-against"; break;
        default: throw 42; break;
        }
        var el = node.querySelector(sel);
        if (el) {
            var evt = document.createEvent("MouseEvents");
            evt.initMouseEvent("click", true, true, unsafeWindow, 
                0, 0, 0, 0, 0, false, false, false, false, 0, null); 
            el.dispatchEvent(evt);
        }
    }
    function handleComments(node) {
        var comments = node.querySelectorAll(".entry-comment-wrapper");
        Array.prototype.forEach.call(comments, function(comment) {
            try {
                handleComment(comment);
            } catch (e) {
                console && console.warn && console.warn(e);
            }
        });
    }
    function handleComment(node) {
        var author = node.querySelector(".entry-author").textContent.trim();
        if (CONFIG.horses.indexOf(author) != -1) {
            node.style.opacity = 0.3;
            node.style.maxHeight = "4em";
            node.style.overflow = "scroll";
    
            if (CONFIG.autoDownVote) {
                downVote(node, "comment");
            }
        }
    }
    function handlePosts(node) {
        var posts = node.querySelectorAll(".hentry");
        var i;
        for (i = 0; i < posts.length; i++) {
            try {
                handlePost(posts[i]);
            } catch (e) {
                console && console.warn && console.warn(e);
            }
        }
    }
    function handlePost(node) {
        var author = node.querySelector(".author a:nth-child(2)").textContent.trim();
        if (CONFIG.horses.indexOf(author) != -1) {
            if (!/^\/\d+$/.test(document.location.pathname)) {
                node.style.opacity = 0.3;
                node.style.maxHeight = "4em";
                node.style.overflow = "scroll";
            }
            if (CONFIG.autoDownVote) {
                downVote(node, "post");
            }
        }
    }
    document.addEventListener("DOMContentLoaded", function() {
        handleComments(document.body);
        handlePosts(document.body);
    });

    Я так и не смог заставить MutationObserver срабатывать на новые элементы, появляющиеся во время загрузки страницы. Отсюда и костыль в последних строчках.

    WGH, 22 Октября 2013

    Комментарии (121)
  3. JavaScript / Говнокод #14045

    +155

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    function printNumbersTimeout20_100() {
      var i = 1;
      var timerId = setTimeout(function go() {
        console.log(i);
        if (i < 20) setTimeout(go, 100);
        i++;
      }, 100);
    }
    
    // вызов
    printNumbersTimeout20_100();

    Вывод чисел каждые 100мс, через setTimeout

    Сделайте то же самое, что в задаче "Вывод чисел каждые 100мс", но с использованием setTimeout вместо setInterval.
    http://learn.javascript.ru/task/vyvod-chisel-kazhdye-100ms-cherez-settimeout

    Tairesh, 22 Октября 2013

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

    +100

    1. 1
    ТРАЛИ ПАБЕДЕЛИ ВАМ НЕАТКУДАВА ЖДАТЬ ПОМАЩИ ЛАЛКИ ИБАНЫЕЙЕ АЗАЗААЗХАЗХЗАХВАХВЩАХВЩАВА

    PragramistOtBoga, 22 Октября 2013

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

    +137

    1. 1
    2. 2
    3. 3
    4. 4
    Эй админ, ты вкурсе что у тебя в каждом посте подключается этот скрипт:
    <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
    
    Не по феньшую как-то.

    PragramistOtBoga, 21 Октября 2013

    Комментарии (0)
  6. JavaScript / Говнокод #13977

    +155

    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
    jQuery('#index_submit').click(function(){
    			var val = jQuery('#indexCity').val(),obj,
    				allWeightCeil = Math.ceil(allWeight/1000),
    				new_del_address = jQuery('#new_del_address');
    			if (val.toString() == parseFloat(val, 10) && val.length == 6) {
    				obj = answerFunc(val,allWeight,'info_zip');
    				if (obj != 'undefined' && obj != '') {
    					if (obj.cityname != '') {
    						jQuery('#cityIndex').text('Ваш город: '+obj.cityname); jQuery('#new_del_address').slideDown('normal');jQuery('#new_del_address>*').show();city_field.val(obj.cityname);index_field.val(val);
    						if (obj.cityname == 'Москва' || obj.cityname == 'Калуга') {
    								jQuery(".from_russia_block #selectPVZ_russia").show();
    								jQuery('#moscow').click();
    							} else {jQuery(".from_russia_block #selectPVZ_russia").hide();}
    							
    								jQuery('.from_russia_block input.deliv-radio').change(function(){
    									var thisRadio = jQuery(this),
    										percent = parseFloat(thisRadio.attr('percent'))/100,
    										procent_price = Math.ceil(actual_price * percent);
    										delivery = answerFunc(val,allWeight,'tarif');
    										
    										selectAddressPVZ = jQuery('.from_russia_block #selectPVZ_russia .address_moscow_select');
    										if (thisRadio.val() == '2072' || thisRadio.val() == '2073') {
    											var deliv = parseFloat(delivery.delivery_ways[0]["Стоимость"], 10),
    												textDel = deliv+' р.';
    											if (thisRadio.val() == '2073')  deliv = Math.ceil(deliv + procent_price);
    											textDel = deliv + ' р.';
    											thisRadio.parent().after(formAddress);
    											formAddress.slideDown('normal');
    										} else jQuery('#form_address').remove();
    										if (thisRadio.val() == '2077') {
    											thisRadio.parent().after(formAddress);
    											formAddress.slideDown('normal');
    										}
    									if (delivery.delivery_ways[1]){
    										if (thisRadio.val() == '2074' || thisRadio.val() == '2075') {
    											var deliv = parseFloat(delivery.delivery_ways[1]["Стоимость"], 10);
    											if (allWeightCeil>10){
    													deliv = deliv+((allWeightCeil-10)*100);
    												}
    											if (actual_price>3000 && allWeightCeil<10) {
    												deliv = 'Бесплатно';
    											}
    											if (thisRadio.val() == '2075') {deliv = (deliv=='Бесплатно') ?  procent_price : Math.ceil(deliv + procent_price);}
    											textDel = (deliv=='Бесплатно') ?  deliv : deliv+' р.';
    										}
    										address_pickup_delivery.val(delivery.delivery_ways[1]["Адрес"]);
    									}
    									if (thisRadio.val() == 'pickup_custom_russia')	{jQuery('.from_russia_block .address_moscow_select').show();} else jQuery('.from_russia_block .address_moscow_select').hide();
    										thisRadio.parent().find('.price-delivery').empty().text(textDel);
    										jQuery('#price_delivery').val(deliv);
    									return false;
    								});
    								jQuery('.from_russia_block input.deliv-radio').click();jQuery('.from_russia_block input.deliv-radio:first').click();jQuery('#form_address').remove();
    						
    					} else {jQuery('#cityIndex').text('Извините, город не найден').css({'font-weight':'bold','color' : '#EC411C'});
    						console.log(true);
    					 //jQuery('#new_del_address').hide('normal');formAddress.hide();
    						jQuery('#new_del_address').show();
    						jQuery('#new_del_address>*').not('.deliveryMode__layout__field_2077').hide();
    					 }
    				}
    			} else {jQuery('#new_del_address').hide();jQuery('#cityIndex').empty();
    			}
    			return false;
    		});

    Нашел на проекте, как понял происходить расчет стоимости доставки по индексу... Весь код не скинуть так как ограничение по количеству строк

    farit_slv, 20 Октября 2013

    Комментарии (7)
  7. JavaScript / Говнокод #13964

    +153

    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
    //Флаг установки поля "дальше"
    var AgreeRes = function () {
        var res             = true,
            people_count    = $('.bookingPassengersTitle').length,
            pcount          = 6,
            $pa             = $('.required.passport_term.checkPassportData.valid'),
            $pas            = $('.required.passposrt_num.valid')  ,
            $male           = $('.male.required.valid'),
            $ch             = $('.required.birth_date.checkBirth.valid') ,
            $nam            = $('.required.first_name.valid'),
            $name           = $('.required.sec_name.valid');
    
        var button_count = 0    +
                $pa.length      +
                $pas.length     +
                $male.length    +
                $ch.length      +
                $nam.length     +
                $name.length;
    
        res = button_count == people_count * pcount || button_count == 0;
        
        if (  $('.required.passport_term.checkPassportData.valid, ' +
                '.required.passposrt_num.valid, ' +
                '.male.required.valid, ' +
                '.required.birth_date.checkBirth.valid, ' +
                '.required.first_name.valid, ' +
                '.required.sec_name.valid').length > 0 ) {
            if (res == false
                || $pa.val().trim().toString()      === ""
                || $pas.val().trim().toString()     === ""
                || $male.val().trim().toString()    === ""
                || $ch.val().trim().toString()      === ""
                || $nam.val().trim().toString()     === ""
                || $name.val().trim().toString()    === "") {
    
                res = false;
            }
        }
    
        return res;
    }

    Клиентская валидация контролов

    sladkijBubaleh, 17 Октября 2013

    Комментарии (0)
  8. JavaScript / Говнокод #13957

    +157

    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
    $("#SubmitButton").click(function () {
    	        for (a_cik = 0; a_cik < 2; a_cik++) {
    	            for (c_cik = 0; c_cik < 7; c_cik++) {
    	                elem_cik=$('#AvailabilityList_'+a_cik+'__Years_'+c_cik+'_');
    	                if (elem_cik != null) {
    	                    if (elem_cik.parent().parent().hasClass('qqq')) {  // Проверка элемента на видимость
    	                        if (!(((elem_cik.val() >= '1') && (elem_cik.val() <= '9')) || ((elem_cik.val() >= '10') && (elem_cik.val() <= '17')))) {
    	                            alert('Ошибка. Возраст ребёнка не указан, или задан в неверном формате. Исправьте ошибку и повторите попытку');
    	                            elem_cik.focus();
    	                            return false;
    	                        }
    	                    }
    	                }
    	            }
    	        }
    	        $("#BookingForm").submit()
    	    });

    Валидация возрастов детей перед их передачей дальше. ATTEMPTION MAGIC NUMBER!

    sladkijBubaleh, 16 Октября 2013

    Комментарии (8)
  9. JavaScript / Говнокод #13956

    +164

    1. 1
    2. 2
    3. 3
    var add_res = titles.pop();//высовываем последний элемент
    add_res.sites.push($(this).find("a").attr("href"));//засовываем еще одну ссылку
    titles.push(add_res);//засовываем взад

    randombot, 16 Октября 2013

    Комментарии (8)
  10. JavaScript / Говнокод #13955

    +153

    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
    function Recalc(index) {
                var url = window.location.pathname + "?";
                var data = "DepartureDate=" + $("#AvailabilityList_" + index + "__DepartureDate").val()
    				 + "&DepartureTime=" + $("#AvailabilityList_" + index + "__DepartureTime").val()
                + "&ArrivalDate=" + $("#AvailabilityList_" + index + "__ArrivalDate").val()
                + "&ArrivalTime=" + $("#AvailabilityList_" + index + "__ArrivalTime").val()
                + "&FromCode=" + $("#AvailabilityList_" + index + "__FromCode").val()
                + "&ToCode=" + $("#AvailabilityList_" + index + "__ToCode").val()
                + "&ShipCode=" + $("#AvailabilityList_" + index + "__ShipCode").val()
                + "&ProviderCode=" + $("#AvailabilityList_" + index + "__ProviderCode").val()
                + "&Duration=" + $("#AvailabilityList_" + index + "__Duration").val()
                + "&AdultCount=" + $("#AvailabilityList_" + index + "__AdultCount").val()
                + "&ChildCount=" + $("#AvailabilityList_" + index + "__ChildCount").val()
                + "&FerryID=" + $("#AvailabilityList_" + index + "__FerryID").val()
                + "&Auto=" + $("#AvailabilityList_" + index + "__Auto").val()
                + "&FareCode=" + $("#AvailabilityList_" + index + "__FareCode").val()
                + "&Years[0]=" + $("#AvailabilityList_" + index + "__Years_0_").val()
                + "&Years[1]=" + $("#AvailabilityList_" + index + "__Years_1_").val()
                + "&Years[2]=" + $("#AvailabilityList_" + index + "__Years_2_").val()
                + "&Years[3]=" + $("#AvailabilityList_" + index + "__Years_3_").val()
                + "&Years[4]=" + $("#AvailabilityList_" + index + "__Years_4_").val()
                + "&Years[5]=" + $("#AvailabilityList_" + index + "__Years_5_").val()
                + "&Years[6]=" + $("#AvailabilityList_" + index + "__Years_6_").val()
                + "&Years[7]=" + $("#AvailabilityList_" + index + "__Years_7_").val()
                + "&Years[8]=" + $("#AvailabilityList_" + index + "__Years_8_").val()
                + "&Index=" + index;
                return data;
            }

    Back-end asp.net mvc, кому интересно

    sladkijBubaleh, 16 Октября 2013

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