This file contains 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 com.thomasuster.js; | |
import js.html.Blob; | |
import haxe.io.Bytes; | |
import haxe.io.BytesBuffer; | |
import js.html.ArrayBuffer; | |
import js.html.DataView; | |
class ByteBufferConverter { | |
public function new():Void {} |
This file contains 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 com.thomasuster.ws; | |
import haxe.io.Bytes; | |
import haxe.crypto.Sha1; | |
import haxe.crypto.Base64; | |
class HandShaker { | |
public function new() {} | |
public function shake(key:String):String { | |
var magic:String = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11'; |
This file contains 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
#!/bin/sh | |
# Download Neko | |
curl -L http://nekovm.org/_media/neko-2.0.0-osx.tar.gz > neko-2.0.0-osx.tar.gz | |
# Extract and copy files to /usr/lib/neko |
This file contains 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
#!/bin/sh | |
# Download Neko | |
curl -L http://nekovm.org/_media/neko-2.0.0-osx.tar.gz > neko-2.0.0-osx.tar.gz | |
# Extract and copy files to /usr/lib/neko |
This file contains 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
#!/bin/sh | |
# Download Neko | |
curl -L http://nekovm.org/_media/neko-2.0.0.tar.gz > neko-2.0.0.tar.gz | |
# Extract and copy files to neko |
This file contains 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 com.underscorediscovery; | |
import com.eclecticdesignstudio.spritesheet.data.SpriteSheetFrame; | |
import com.eclecticdesignstudio.spritesheet.SpriteSheet; | |
import com.eclecticdesignstudio.spritesheet.data.BehaviorData; | |
import hxjson2.JSON; | |
class TexturePackerJSON { |
This file contains 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
class BabyTest() | |
{ | |
//setup function constructing a baby | |
[Test] | |
public function testWalk():void | |
{ | |
baby.shouldWalk(); //My Cursor is baby.shouldWalk[HERE]();, alt+enter won't suggest generating the non-existent method or property for the class Baby. | |
} | |
} |
This file contains 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 flash.display.Sprite; | |
import flash.utils.getTimer; | |
public class MakeGrid extends Sprite | |
{ | |
private const numCols:uint = 500; | |
private const numRows:uint = 500; | |