I hereby claim:
- I am adamjspooner on github.
- I am zpooner (https://keybase.io/zpooner) on keybase.
- I have a public key ASDOuRk3yMBz0xOeeUTUIiSYCdfchITG--wEAwGti6TOHwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
I hereby claim:
To claim this, I am signing this object:
| var my_array = []; | |
| if (my_array instanceof Array) { | |
| console.log('Congrats, you have an array!'); | |
| } |
| Number.prototype.yoString = function() { | |
| return 'Yo, ' + this + '!'; | |
| }; | |
| var num = 3; | |
| console.log(num.yoString()); |
| NSString *string = [[NSString alloc] initWithString:@"Ladies Love Cool James"]; | |
| NSLog(@"%@", string); | |
| NSLog(@"%d", (int)string); // the string's value | |
| NSLog(@"%d", (int)&string); // the string's pointer |
| require 'rake/clean' | |
| STYLUS = FileList['./**/*.styl'] | |
| COFFEE = FileList['./**/*.coffee'] | |
| CSS = STYLUS.ext('css') | |
| JS = COFFEE.ext('js') | |
| CLOBBER.include(CSS, JS) |
| stylus: | |
| compress: true | |
| path: ./path/to/styl |