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

    Всего: 49

  2. Python / Говнокод #16466

    −112

    1. 1
    self.slides = self.tour_data.slides = ...

    makc3d, 03 Августа 2014

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

    +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
    js меня восхищает, реально. это язык, где проблемы с замыканием можно решить, добавив ещё одно замыкание. прикинем, например
    
    var object = ...;
    doShit(function /* async callback */ () { object.doOtherShit(); });
    
    пока вроде как всё зашибись. но вдруг понадобилось написать цикл:
    
    for (var i....) {
      var object = array[i];
      doShit(function /* this now fails hard */ () { object.doOtherShit(); });
    }
    
    что же делац? правильно, врапим всё в ещё одну функцию:
    
    for (var i....) {
      (function(object){
        doShit(function /* oh, it's okay again */ () { object.doOtherShit(); });
      })(array[i]);
    }

    makc3d, 12 Июля 2014

    Комментарии (3)
  4. ActionScript / Говнокод #16161

    −103

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    public static var ssa:uint = 161;
    ...
    Globals.ssa = (Globals.ssa + ++VSIZE);
    sd = new ByteArray();
    ba.readBytes(sd);
    ba.position = 0;
    ba.length = 0;
    do
    {
    	Globals.ssa = sCompress;
    	Globals.ssa = ((Globals.ssa * V[0]) & 4194303);
    	...

    из того же источника

    makc3d, 13 Июня 2014

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

    −102

    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
    x = 1;
    					x = (x >> 11);
    					x = (x + 1);
    					x = (x >> 9);
    					x = (x + 1);
    					x = (x >> 7);
    					x = (x + 1);
    					x = (x >> 5);
    					x = (x + 1);
    					x = (x >> 3);
    					x = (x + 1);
    					x = (x >> 10);
    					x = (x + 1);
    					x = (x >> 8);
    					x = (x + 1);
    					x = (x >> 6);
    					x = (x + 1);
    					x = (x >> 4);
    					x = (x + 1);
    					x = (x >> 2);
    					x = (x + 1);
    					if (x == 1)
    					{
    						ge.ha = true;
    					};

    из недр не менее изощрённого распковщика обфусцированного xml

    makc3d, 13 Июня 2014

    Комментарии (5)
  6. ActionScript / Говнокод #15409

    −129

    1. 1
    2. 2
    private function onError(e:IOErrorEvent):void {
    		(e.target as EventDispatcher).removeEventListener(IOErrorEvent.IO_ERROR, onError);

    какого, спрашивается, хуя e.target типа Object а не EventDispatcher ?

    makc3d, 10 Марта 2014

    Комментарии (9)
  7. Java / Говнокод #14081

    +68

    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
    public static AstRoot parse (String code) {
            CompilerEnvirons env = new CompilerEnvirons();
            env.setRecoverFromErrors(true);
            env.setGenerateDebugInfo(true);
            env.setRecordingComments(true);
    
            // try to ignore errors - does not seem to work
            env.setIdeMode(true);
    
            IRFactory factory = new IRFactory(env);
            AstRoot root = factory.parse(code, null, 0);
    
            // work around rhino bug 800616 (not fixed in neither rhino nor closure)
    
            root.visit(new NodeVisitor() {
                @Override
                public boolean visit(AstNode node) {
                    if (node instanceof NumberLiteral) {
                        NumberLiteral num = (NumberLiteral)node;
                        int from = num.getAbsolutePosition();
                        int to = from + num.getLength() + 2;
                        if (to < code.length()) {
                            String hex = "0x" + num.toSource();
                            if (code.substring(from, to).equals(hex)) {
                                // reset node value and length
                                num.setValue(hex); num.setLength(hex.length());
                            }
                        }
                        return false;
                    }
                    return true;
                }
            });
    
            // work around rhino SwitchStatement.toSource() bug with empty switches
            // https://github.com/mozilla/rhino/blob/master/src/org/mozilla/javascript/ast/SwitchStatement.java#L96
            // https://github.com/mozilla/rhino/blob/master/src/org/mozilla/javascript/ast/SwitchStatement.java#L107-L109
            // https://github.com/mozilla/rhino/blob/master/src/org/mozilla/javascript/ast/SwitchStatement.java#L158
            root.visit(new NodeVisitor() {
                @Override
                public boolean visit(AstNode node) {
                    if (node instanceof SwitchStatement) {
                        SwitchStatement ss = (SwitchStatement)node;
                        if (ss.getCases().isEmpty()) {
                            // need to add at least one node to make ss.cases non-null
                            ArrayList<SwitchCase> cases = new ArrayList<>();
                            cases.add(new SwitchCase());
                            ss.setCases(cases);
                            // set this back to empty list
                            cases.clear();
                            ss.setCases(cases);
                        }
                        return false;
                    }
                    return true;
                }
            });
    
            return root;
        }

    И ещё немножко трудовыебуднев пользователей рино: правда клёво взять и распарсить джаваскрипт одним простым методом? Авотхуй.

    makc3d, 07 Ноября 2013

    Комментарии (2)
  8. Java / Говнокод #14080

    +70

    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
    public static void replaceChild (AstNode parent, AstNode child, AstNode newChild) {
            try {
                parent.replaceChild(child, newChild)
            } catch (NullPointerException e1) {
                // this is one of those shitty nodes with default children handling broken
                try {
                    // maybe it was assignment
                    Assignment ass = (Assignment)parent
                    if (ass.left == child) {
                        ass.left = newChild
                    } else {
                        ass.right = newChild
                    }
                } catch (Throwable e2) {
                    // not assignment :S
                    try {
                        // maybe it's (...)
                        ParenthesizedExpression pae = (ParenthesizedExpression)parent
                        pae.expression = newChild
                    } catch (Throwable e3) {
                        // not (...) either :S
                        try {
                            // Function call?
                            FunctionCall fuc = (FunctionCall)parent
                            for (int i = 0; i < fuc.arguments.size(); i++) {
                                if (fuc.arguments.get(i) == child) {
                                    fuc.arguments.set(i, newChild)
                                    break;
                                }
                            }
                        } catch (Throwable e4) {
                            try {
                                // Expression statement?
                                ExpressionStatement est = (ExpressionStatement)parent
                                est.expression = newChild
                            } catch (Throwable e5) {
                                try {
                                    // var foo = bar?
                                    VariableInitializer vin = (VariableInitializer)parent
                                    if (vin.initializer == child) {
                                        vin.initializer = newChild
                                    } else {
                                        // should not happen in our useage
                                        vin.target = newChild
                                    }
                                } catch (Throwable e6) {
                                    try {
                                        // what if?
                                        IfStatement ifs = (IfStatement)parent
                                        if (ifs.condition == child) {
                                            ifs.condition = newChild
                                        } else if (ifs.thenPart == child) {
                                            ifs.thenPart = newChild
                                        } else {
                                            ifs.elsePart = newChild
                                        }
                                    } catch (Throwable e7) {
                                        try {
                                            // while loop?
                                            WhileLoop whl = (WhileLoop)parent
                                            if (whl.condition == child) {
                                                whl.condition = newChild
                                            } else {
                                                whl.body = newChild
                                            }
                                        } catch (Throwable e8) {
                                            try {
                                                // Infix expression?
                                                InfixExpression iex = (InfixExpression)parent
                                                if (iex.left == child) {
                                                    iex.left = newChild
                                                } else {
                                                    iex.right = newChild
                                                }
                                            } catch (Throwable e9) {
                                                try {
                                                    // do loop?
                                                    DoLoop dol = (DoLoop)parent
                                                    if (dol.condition == child) {
                                                        dol.condition = newChild
                                                    } else {
                                                        dol.body = newChild
                                                    }
                                                } catch (Throwable e10) {
                                                    try {
                                                        // for loop?
                                                        ForLoop fol = (ForLoop)parent
                                                        if (fol.condition == child) {
                                                            fol.condition = newChild
                                                        } else if (fol.initializer == child) {
                                                            fol.initializer = newChild
                                                        } else if (fol.increment == child) {
                                                            fol.increment = newChild
                                                        } else {
                                                            fol.body = newChild
                                                        }
                                                    } catch (Throwable e11) {
                                                        try {
                                                            ConditionalExpression cex = (ConditionalExpression)parent
                                                            if (cex.testExpression == child) {

    Есть такой жавоскриптопарсер рино. И есть в нём замечательный метод replaceChild, который заменяет в AstNode одного ребёнка другим. Вот только в большей части наследников AstNode он сломан нах.

    (пс нету ; ибо груви)

    makc3d, 07 Ноября 2013

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

    +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
    /**
     * Checks if a setting is enabled
     *
     * @api public
     */
    
    Manager.prototype.enabled = function (key) {
      return !!this.settings[key];
    };
    
    /**
     * Checks if a setting is disabled
     *
     * @api public
     */
    
    Manager.prototype.disabled = function (key) {
      return !this.settings[key];
    };

    https://github.com/LearnBoost/socket.io/blob/develop/lib/manager.js

    makc3d, 28 Января 2013

    Комментарии (3)
  10. ActionScript / Говнокод #12450

    −120

    1. 1
    2. 2
    3. 3
    4. 4
    private function uncaughtError (e:UncaughtErrorEvent):void {
    			// be a good girl and swallow
    			e.stopImmediatePropagation ();
    		}

    написал какую-то хуету и сижу, радуюсь как маленький. да, я хочу поговорить об этом.

    makc3d, 19 Января 2013

    Комментарии (2)
  11. ActionScript / Говнокод #12417

    −89

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    if ("c862232051e0a94e1c3609b3916ddb17".substr(0) == "dfeada81ac97cde83665f81c12da7def") {
                    options.ad_started();
                    var fn:Function = function ():void {
                        options.ad_finished();
                    };
                    setTimeout(fn, 100);
                    return;
                }

    сегодня в выпуске - как задизаблить мойшеадс лёгким движением руки в любой флешке, скомпиленной со стандартной либой

    makc3d, 14 Января 2013

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