Skip to content

Instantly share code, notes, and snippets.

@dgozick
dgozick / index.html
Last active December 20, 2015 18:18
This is the Gist Description
<script src="http://cdnjs.cloudflare.com/ajax/libs/processing.js/1.4.1/processing-api.min.js"></script>
<canvas id="canvas1" width="200" height="200"></canvas>
@dgozick
dgozick / gist:3922657
Created October 20, 2012 08:17
Haxe NME test builds
nme test "Actuate Example.nmml" flash
nme test "Actuate Example.nmml" ios -simulator
nme test "Actuate Example.nmml" webos
nme test "Actuate Example.nmml" android
nme test "Actuate Example.nmml" windows
nme test "Actuate Example.nmml" mac
nme test "Actuate Example.nmml" linux
nme test "Actuate Example.nmml" html5
@dgozick
dgozick / gist:3922642
Created October 20, 2012 08:15
Haxe iOS test build
nme test "Actuate Example.nmml" ios -simulator
@dgozick
dgozick / gist:3922641
Created October 20, 2012 08:12
Haxe Android test build
nme test "Actuate Example.nmml" android
@dgozick
dgozick / gist:3922623
Created October 20, 2012 07:57
HaXe install Actuate
haxelib install actuate
@dgozick
dgozick / gist:3922061
Created October 20, 2012 04:57
Haxe output hello world
neko helloworld.n
@dgozick
dgozick / gist:3922056
Created October 20, 2012 04:55
Haxe build command for Hello World
haxe -main Main -neko helloworld.n
@dgozick
dgozick / Main.hx
Created October 20, 2012 04:42
Haxe Main Function
class Main {
public static function main() {
}
}
@dgozick
dgozick / Main.hx
Created October 20, 2012 04:35
Haxe Main Class
class Main {
}
@dgozick
dgozick / Main.hx
Created October 20, 2012 04:29
HaXe Hello World
class Main {
public static function main() {
trace("Hello World");
}
}