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
### Keybase proof | |
I hereby claim: | |
* I am tracycodes on github. | |
* I am tracyl (https://keybase.io/tracyl) on keybase. | |
* I have a public key whose fingerprint is C113 FB27 4A11 7384 13CC C776 3746 1924 9C9C D1B5 | |
To claim this, I am signing this object: |
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
{ | |
id: 1 | |
changes: [ | |
{ | |
date: "Thu Aug 28 2014 01:06:30 GMT+00:00" | |
}, | |
{ | |
date: "Thu Aug 28 2014 01:06:30 GMT+00:00" | |
}, | |
{ |
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
{ | |
"auto_match_enabled": false, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", | |
"default_line_ending": "unix", | |
"draw_indent_guides": true, | |
"ensure_newline_at_eof_on_save": false, | |
"file_exclude_patterns": | |
[ | |
"optimized_includes.php", |
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 add1(array, val, n) { | |
var iter = 0, | |
end = array.length, | |
count = (n) ? n : -1, | |
multiple = 1; | |
if(n < 0) { | |
iter = array.length - 1; | |
end = 0; | |
multiple = -1; |