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.Bitmap; | |
| import flash.display.BitmapData; | |
| import flash.display.Sprite; | |
| import flash.display.StageAlign; | |
| import flash.display.StageQuality; | |
| import flash.display.StageScaleMode; | |
| import flash.geom.Point; | |
| import flash.geom.Rectangle; | |
| import flash.events.Event; |
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 net.flashpunk.Entity; | |
| import net.flashpunk.Sfx; | |
| import net.flashpunk.tweens.misc.ColorTween; | |
| import net.flashpunk.tweens.misc.VarTween; | |
| import net.flashpunk.graphics.Image; | |
| import flash.filters.GlowFilter; | |
| import flash.display.BitmapData; | |
| import flash.geom.Rectangle; |
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
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |
NewerOlder