Skip to content

Instantly share code, notes, and snippets.

View jonalmeida's full-sized avatar
🦊
making browsers..

Jonathan Almeida jonalmeida

🦊
making browsers..
View GitHub Profile
@jonalmeida
jonalmeida / Posting data
Last active August 29, 2015 14:03
What's the correct way to use inDatabase: within an async networking call?
- (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]];

Keybase proof

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:

#!/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)
}
@jonalmeida
jonalmeida / mindlesscoding.js
Created May 19, 2012 07:21
what i understood from inimino
setTimeout(
function(){
console.log(document.getElementById("list").children[i]);
setTimeout(
function(){
console.log(document.getElementById("list").children[i]);
}, 2000);
}, 2000);
@jonalmeida
jonalmeida / waitJavascript.js
Created May 19, 2012 07:05
javascript wait function
function wait(callback, delay){
var startTime = new Date().getTime();
while (new Date().getTime() < startTime + delay);
callback();
}