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
" Factories and Configuration | |
Rnavcommand config config -suffix=.yml -default=application | |
Rnavcommand factory spec/factories test/factories -suffix=.rb -default=model() | |
" Backbone | |
Rnavcommand bmodel app/assets/javascripts/backbone/models -suffix=.coffee -default=model() | |
Rnavcommand bview app/assets/javascripts/backbone/views -suffix=.coffee | |
" Apotomo Widgets (Cells) | |
Rnavcommand widget app/widgets -suffix=_widget.rb |
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
Saturday April 30, 2011 | |
Wizard Crew Promotions proudly presents | |
*** PHOTON *** | |
An Immersive Visual Experience | |
Wizard Crew is back with our Spring event! | |
If you enjoyed TECHNOLUST, Back2Bassikz, and Snowmageddon last year, you won't want to miss this. | |
Musical Performances by |
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
function arrayChunk(array, size) { | |
var start = 0, result = [], chunk = []; | |
while((chunk = array.slice(start, start += size)).length) { | |
result.push(chunk); | |
} | |
return result; | |
} |
NewerOlder