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
/** | |
* Simple query string decoder. | |
*/ | |
var QueryStringDecoder = (function() { | |
return { | |
decode: function(url) { | |
var decoded = {}, | |
count = 0, | |
pairs = url.slice(url.indexOf('?') + 1).split("&"), | |
pair; |
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.utils.ByteArray; | |
import flash.display.Sprite; | |
/** | |
* | |
* @author Rafael Rinaldi (rafaelrinaldi.com) | |
* @since 23/02/2011 | |
* |
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
github_user="your-user-goes-here" | |
git-push() { | |
git push `printf [email protected]:$github_user/%s.git $1` | |
} |
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.DisplayObject; | |
import flash.display.DisplayObjectContainer; | |
/** | |
* | |
* @author Rafael Rinaldi (rafaelrinaldi.com) | |
* @since 25/03/2011 | |
* |
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
// | |
// Don't poop in your workplace. | |
// | |
// @author Rafael Rinaldi (rafaelrinaldi.com) | |
// | |
var glade : String = Bath.get().split(Fragrances.SHIT).join(Fragrances.SPRING); |
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
random() { | |
value=$RANDOM | |
length=$1 | |
if [[ ! $length ]]; then | |
length=5 | |
fi | |
echo ${value:0:$length} | |
} |
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
# | |
# Repeats a character how many times you want. | |
# | |
# $1 The character you want. | |
# $2 How many times you want. | |
# | |
repeat() { | |
character=$1 | |
times=$2 | |
string=$(printf "%""$times""s") |
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
1) Execute 'fdb' | |
2) Initialize a session typing 'run' | |
3) When you open the SWF file fdb will output this: | |
Player connected; session starting. | |
Set breakpoints and then type 'continue' to resume the session. | |
[SWF] path:file.swf - N bytes after decompression | |
(fdb) | |
4) Then you set your breakpoints. E.g: To set a breakpoint in the line 100 of your Main.as class, you will use: |
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
# Return the file extension. | |
get_file_extension() { | |
echo $1 | awk -F . '{print $NF}' | |
} |
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/bash | |
# | |
# Helpful for when you want to change the name of a sequence of images at the same time. | |
# | |
# Author: Rafael Rinaldi (rafaelrinaldi.com) | |
# Since: 15/04/2011 | |
# | |
path=$1 |