Skip to content

Instantly share code, notes, and snippets.

@coylums
coylums / podcasts.md
Created August 13, 2014 13:15
Current Podcasts...

#Coy's Podcasts...

##Tech

  • Accidental Tech Podcast
  • Mobile Couch
  • Iterate
  • Debug
  • Core Intuition
  • TLDR
@coylums
coylums / awesome-php.md
Created October 31, 2012 20:47 — forked from ziadoz/awesome-php.md
Awesome PHP Libraries
@coylums
coylums / Reachability.h
Created October 31, 2011 20:30 — forked from darkseed/Reachability.h
Reachability (iOS) ARCified
/*
File: Reachability.h
Abstract: Basic demonstration of how to use the SystemConfiguration Reachablity APIs.
Version: 2.2 - ARCified
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc.
("Apple") in consideration of your agreement to the following terms, and your
use, installation, modification or redistribution of this Apple software
#import "AsyncURLConnection.h"
@implementation AsyncURLConnection
+ (id)request:(NSString *)requestUrl completeBlock:(completeBlock_t)completeBlock errorBlock:(errorBlock_t)errorBlock
{
return [[[self alloc] initWithRequest:requestUrl
completeBlock:completeBlock errorBlock:errorBlock] autorelease];
}
#import <Foundation/Foundation.h>
typedef void (^completeBlock_t)(NSData *data);
typedef void (^errorBlock_t)(NSError *error);
@interface AsyncURLConnection : NSURLConnection
{
NSMutableData *data_;
completeBlock_t completeBlock_;
errorBlock_t errorBlock_;
@coylums
coylums / about.md
Created August 10, 2011 15:21 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer