I hereby claim:
- I am jonalmeida on github.
- I am jonalmeida (https://keybase.io/jonalmeida) on keybase.
- I have a public key whose fingerprint is 831C F54A 918F 0986 6E4A 7E59 1DB0 4496 F117 C452
To claim this, I am signing this object:
- (void) sendPostData:(NSDictionary *)data withDbIndexArray:(NSMutableArray *)dbIndexArray { | |
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; | |
manager.requestSerializer = [AFJSONRequestSerializer serializer]; | |
[manager POST:[_urlEndpoint absoluteString] parameters:data success:^(AFHTTPRequestOperation *operation, id responseObject) { | |
NSLog(@"JSON: %@", responseObject); | |
[_dbQueue inDatabase:^(FMDatabase *db) { | |
for (int i=0; i < dbIndexArray.count; i++) { | |
NSLog(@"Removing event at index: %@", dbIndexArray[i]); | |
[_db removeEventWithId:[[dbIndexArray objectAtIndex:i] longLongValue]]; |
I hereby claim:
To claim this, I am signing this object:
#!/bin/env python | |
for x in xrange(1, 101): | |
# Calculate once, refer to the results again instead of re-calculating | |
isFive = (x%5 == 0) | |
isThree = (x%3 == 0) | |
if(isFive & isThree): | |
print "CracklePop" | |
elif(isFive): | |
print "Pop" |
var items=[1,2,3]; | |
foo = function(items, 1000){ | |
bar = function(items[0]); | |
setTimeout( function(){ | |
foo(items.slice(1), 1000 | |
}, 1000) | |
} |
setTimeout( | |
function(){ | |
console.log(document.getElementById("list").children[i]); | |
setTimeout( | |
function(){ | |
console.log(document.getElementById("list").children[i]); | |
}, 2000); | |
}, 2000); |
function wait(callback, delay){ | |
var startTime = new Date().getTime(); | |
while (new Date().getTime() < startTime + delay); | |
callback(); | |
} |