Skip to content

Instantly share code, notes, and snippets.

View ethanmick's full-sized avatar
🐺
Hello!

Ethan Mick ethanmick

🐺
Hello!
View GitHub Profile
@ethanmick
ethanmick / gist:4287674
Created December 14, 2012 18:56
Login socially with the CloudMine iOS framework.
// In MyLoginViewController.m
- (IBAction)loginWithSocial {
// Don't need username/password because we are logging in socially.
CMUser *myNewUser = [[CMUser alloc] init];
[myNewUser loginWithSocialNetwork:CMSocialNetworkTwitter viewController:self params:nil callback:^(CMUserAccountResult resultCode, NSArray *messages) {
if (resultCode == CMUserAccountLoginSucceeded) {
@ethanmick
ethanmick / file1.txt
Created December 7, 2012 21:43
Ethan Testing
String file contents
4EDF5248-CCF8-4040-B8B2-E83C98B52499 - String file contents
751A4522-EAF3-46B3-920E-07A33D52F01D - String file contents
446B26F2-88BE-450C-8FAC-17BF91AE6B93 - String file contents
524CF814-EB6C-458B-95CE-D0A8EFC77402 - String file contents
B58E12CE-38C5-44BC-9423-6B05E3545D43 - String file contents
F076CC41-7E8B-41D6-A3F2-27ED9C681E40 - String file contents
@ethanmick
ethanmick / file1.txt
Created December 6, 2012 23:18
Ethan Testing
String file contents
@ethanmick
ethanmick / gist:1712047
Created January 31, 2012 18:28
Error in my iOS app
//
// app delegate
//
RKObjectManager *manager = [RKObjectManager objectManagerWithBaseURL:@"http://129.21.140.120:8080"];
manager.objectStore = [RKManagedObjectStore objectStoreWithStoreFilename:@"db.sqlite"];
//manager.objectStore.managedObjectCache = [[CustomCache alloc] init];
manager.client.requestQueue.showsNetworkActivityIndicatorWhenBusy = YES;
manager.acceptMIMEType = RKMIMETypeJSON;
manager.serializationMIMEType = RKMIMETypeJSON;