This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?LOL | |
| HAI; | |
| PLZ SHOWS ALL UR VARS; | |
| YINz CAN HAS VARS++; | |
| OK SO $THIS IZ A LOOP | |
| { | |
| (( WOW YINz JAGOFF;) | |
| i CAN HAZz BA$$; | |
| (123 CHECK ITZ;) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| people:[ | |
| { | |
| name:'Narrator' | |
| }, | |
| { | |
| name:'Bill Port' | |
| isPlayer:true | |
| } | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Calculate intersection point in grid | |
| var V = {x:1, y:-1, z:0, w:1}; //direction | |
| var A = {x:1.5, y:1.5, z:0}; //point or origin | |
| var n = {x:0, y:1, z:0, w:1}; //normal | |
| var b = {x:2, y:0, z:0}; //grid block position | |
| var rp = {x:null, y:null, z:null}; //result position | |
| var mid = (A.x * Math.abs(n.x) + A.y * Math.abs(n.y) + A.z * Math.abs(n.z)) - (b.x * Math.abs(n.x) + b.y * Math.abs(n.y) +b.z * Math.abs(n.z) + n.w); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Does it work with clean cookies? | |
| Can it be done the reverse way? | |
| Can you reset and start over? | |
| Check DNS settings | |
| Hidden syntax error? | |
| have you tried simplifying the code bug more? | |
| have you tried removing all excess code to find the bug origin? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package | |
| { | |
| import asset.BadGermGraph; | |
| import away3d.animators.UVAnimationSet; | |
| import away3d.animators.UVAnimationState; | |
| import away3d.animators.UVAnimator; | |
| import away3d.animators.data.UVAnimationFrame; | |
| import away3d.animators.nodes.UVClipNode; | |
| import away3d.containers.View3D; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function test() { | |
| var _self = this; | |
| function subFunction() { | |
| this;//refers to subFunction() | |
| _self;// refers to test() | |
| } | |
| subFunction(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Numbers with a leading 0 use a radix of 8 (octal) | |
| var result = parseInt('0101'); | |
| // Numbers that start with 0x use a radix of 16 (hexidecimal) | |
| var result = parseInt('0x0101'); | |
| // Numbers starting with anything else assumes a radix of 10 | |
| var result = parseInt('101'); | |
| // Or you can specify the radix, in this case 2 (binary) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log( 1 === true );//returns false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log( 1 == true );//returns true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test = "hello"; | |
| function testSomething() { | |
| var test = "world" | |
| } | |
| testSomething(); | |
| console.log(test);//returns "hello" |