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
# Credit http://stackoverflow.com/a/2514279 | |
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r |
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
/** | |
* User: tom | |
* Date: 14/05/12 | |
* Time: 14:46 | |
*/ | |
package { | |
import org.osflash.signals.Signal; | |
import flash.events.TimerEvent; | |
import flash.utils.Timer; |
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
### Basic routes ### | |
Rails 3: | |
# singular resource | |
resource :account | |
# resources with addition member & collection actions | |
resources :games do | |
get :download, :on => :member | |
get :favourites, :on => :collection |