gap: git add -p
for patch mode
.
diff --git a
/gulpfile.js b/gulpfile.js
index 61d4a62..0e626f7 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -7,7 +7,7 @@ require('coffee-script').register();
// * basics libs
gap: git add -p
for patch mode
.
diff --git a
/gulpfile.js b/gulpfile.js
index 61d4a62..0e626f7 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -7,7 +7,7 @@ require('coffee-script').register();
// * basics libs
I hereby claim:
To claim this, I am signing this object:
class: center, middle | |
# Title | |
--- | |
# Agenda | |
1. Introduction | |
2. Deep-dive |
I hereby claim:
To claim this, I am signing this object:
{ | |
"auto_indent": true, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night-Eighties.tmTheme", | |
"drag_text": false, | |
"fallback_encoding": "UTF-8", | |
"file_exclude_patterns": | |
[ |
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="agnoster" | |
DEFAULT_USER="arnaud" |
//FightCode can only understand your robot | |
//if its class is called Robot | |
var Robot = function(robot) { | |
this.state = "spawned"; | |
}; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
switch(this.state) { |
/* | |
This code runs the same test as above but replacing setInterval by a custom interval maker : the Timer class. | |
The results must be read the same way : First value should be as close to 0 or 1000 as possible (any other value shows how "off the spot" the timing of the trigger was.) Second value is number of times the code has been triggered, and third value is how many times the could should have been triggered. | |
*/ | |
Timer = (function() { |