11:21:45 em
10:16:03 e.m.
12:44:04 e.h.
10:29:20 f.m.
08:36:43 fm
| NSDate *now = [[NSDate alloc] init]; | |
| NSTimeZone *localTimeZone = [NSTimeZone systemTimeZone]; | |
| NSDateFormatter *rfc3339DateFormatter = [[NSDateFormatter alloc] init]; | |
| NSLocale *enUSPOSIXLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"]; | |
| [rfc3339DateFormatter setLocale:enUSPOSIXLocale]; | |
| [rfc3339DateFormatter setDateFormat:@"yyyy'-'MM'-'dd'T'HH':'mm':'ssZ"]; | |
| [rfc3339DateFormatter setTimeZone:localTimeZone]; | |
| NSString *dateString = [rfc3339DateFormatter stringFromDate:now]; |
| Originally found here: http://newyork.craigslist.org/brk/mis/3985247459.html | |
| I saw you on the Manhattan-bound Brooklyn Q train. | |
| I was wearing a blue-striped t-shirt and a pair of maroon pants. You were | |
| wearing a vintage red skirt and a smart white blouse. We both wore glasses. I | |
| guess we still do. | |
| You got on at DeKalb and sat across from me and we made eye contact, briefly. I | |
| fell in love with you a little bit, in that stupid way where you completely make |
I hereby claim:
To claim this, I am signing this object:
| require 'rubygems' | |
| require 'yaml' | |
| require 'net/http' | |
| require 'uri' | |
| # | |
| # Check that the HTTP Response is as expected. | |
| # See -help for format of the input file | |
| # | |
| class CheckHttpResponse |
| var Promise = require('bluebird'); | |
| function Blah() { | |
| this.foo = 'blah'; | |
| } | |
| Blah.prototype.tester = function() { | |
| console.log(this.foo); | |
| }; |