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
Fields------------------------------------------ | |
@interface SubViewController : UIViewController { | |
MyAppDelegate *appDelegate; | |
} | |
@end | |
@implementation SubViewController | |
- (void)dealloc { | |
[appDelegate release]; appDelegate = nil; |
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
// I needed a basis with which to mock. | |
function CanYouMockMe(){ | |
this.i_want_stubbed = function(){ return false; }; | |
this.say = function(){ console.log(arguments[0] || "hi!"); }; | |
}; | |
// new Object def. | |
function Foo() { | |
this.do_something_interesting = function() { | |
//hard coded dependency... like my ex-wife. :P |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style type="text/css"> | |
.completedItems > li { text-decoration: line-through; } | |
</style> | |
<script type="text/javascript" src="jquery.min.js"></script> | |
<script> | |
$(function(){ | |
var newToDoFieldEl = $("#newToDoField"); |
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
ツツツツツツツツツツツツツツツツツツツツツツツツツツツツツツ |
I hereby claim:
- I am leongersing on github.
- I am leongersing (https://keybase.io/leongersing) on keybase.
- I have a public key whose fingerprint is C95A 91B3 58D6 34E3 0DC9 B47F 098B F145 57EC 1906
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
testing. |
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
### | |
### this is a comment | |
double = (n)-> | |
n*2 | |
#Placeholder