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
| #!/bin/bash | |
| # install gpg | |
| brew install gnupg | |
| # this will download a gpg key, for downloaded file verification | |
| gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 | |
| # install rvm | |
| \curl -sSL https://get.rvm.io | bash -s stable | |
| # set Ruby download source to Ruby-China mirror | |
| echo "ruby_url=https://cache.ruby-china.org/pub/ruby" > ~/.rvm/user/db |
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 haxe.Json; | |
| import flash.net.URLLoader; | |
| import flash.net.URLRequest; | |
| import flash.net.URLVariables; | |
| import flash.net.URLRequestMethod; | |
| // Usage | |
| // key - logging instance id from loggly.com |
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 openfl.Assets; | |
| import flash.geom.Rectangle; | |
| import flash.net.SharedObject; | |
| import flixel.ui.FlxButton; | |
| import flixel.FlxG; | |
| import flixel.FlxPath; | |
| import flixel.FlxSave; | |
| import flixel.FlxSprite; |
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 flash.display.Sprite; | |
| import flash.events.Event; | |
| import motion.Actuate; | |
| import motion.easing.Quad; | |
| class Main extends Sprite { | |
| var _sprite_mask:Sprite; |