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
rest!,backward,attack!,forward,attack!,forward,shoot!,forward,walk!,forward,walk!,forward,pivot!,backward,shoot!,forward,rest!,forward,attack!,backward,walk!,backward,attack!,backward,attack!,forward,rest!,forward,walk!,backward,shoot!,backward,shoot!,backward,attack!,backward,walk!,backward,pivot!,forward,attack!,backward,pivot!,backward,walk!,forward,pivot!,backward |
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
class Player | |
def initialize | |
end | |
def play_turn(warrior) | |
@warrior = warrior | |
move_forward |
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
#symlink gcc to a non-llvm version installed xCode's CLI tools | |
if [ -f /usr/bin/gcc-4.2 ]; then | |
sudo rm /usr/bin/gcc | |
sudo ln -s /usr/bin/gcc-4.2 /usr/bin/gcc | |
sudo rm /usr/bin/cc | |
sudo ln -s /usr/bin/gcc-4.2 /usr/bin/cc | |
fi |
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
/* | |
This first iteration only paginated an initial set of pages. Adding or removing pages without | |
reinitializing the plugin would stay with the initial set. | |
Everything was encapsulated within a single jQuery plugin which knew everything about pagination: | |
* buttons/etc for moving around pages | |
* jumping to a page | |
* animating moving to a new page | |
* where in the dom the page numbers were stored | |
* updating the ui based upon which page you scrolled to |
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
<?php | |
class active_record | |
{ | |
function table_name() | |
{ | |
return get_class($this); | |
} | |
function conf($conf=NULL) |
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
credentials.rb | |
chromedriver.log | |
.rvmrc | |
Gemfile.lock | |
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
## Just a Battery | |
Rough Cut: http://zeespencer.com/assets/music/JustABatteryRough.mp3 | |
Verses: C/Am/F/G | |
Chorus: C/G/F | |
Bridge: C/F | |
I stay up late every night | |
Bathed in computer light | |
Wake up and take a walk |
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
@@ -29,10 +29,40 @@ | |
"average": 0.0, | |
"count": 0 | |
}, | |
- "score": 22.5, | |
+ "score": 11.25, | |
"strict_match": true | |
}, | |
{ | |
+ "address": "Parnell, Auckland 1010 New Zealand", |
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
It's the eye of the slacker | |
He's been vegging all night | |
Sitting down watching reruns of Lost... | |
And the last season of survivor has a double feature tonight | |
And he's watching them all | |
With the eye of the slacker |
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
Ext.define('CustomApp', { | |
extend: 'Rally.app.App', | |
componentCls: 'app', | |
launch: function() { | |
var id; | |
var inProgressDate; | |
var acceptedDate; | |
var cycleTime; |