This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
446B26F2-88BE-450C-8FAC-17BF91AE6B93 - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
751A4522-EAF3-46B3-920E-07A33D52F01D - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4EDF5248-CCF8-4040-B8B2-E83C98B52499 - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In MyLoginViewController.m | |
- (IBAction)loginWithSocial { | |
[_user loginWithSocialNetwork:CMSocialNetworkGithub viewController:self params:@{@"scope" : @"gist"} callback:^(CMUserAccountResult resultCode, NSArray *messages) { | |
if (resultCode == CMUserAccountLoginSucceeded) { | |
NSLog(@"We have successfully logged in!"); | |
} | |
}]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'ido) | |
; ido settings | |
(setq ido-enable-flex-matching t) | |
(setq ido-everywhere t) | |
(ido-mode 1) | |
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.example.Testing" | |
android:versionCode="1" | |
android:versionName="1.0"> | |
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17"/> | |
<!-- GCM connects to Google Services. --> | |
<uses-permission android:name="android.permission.INTERNET" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b0d5853a-7265-4de6-9121-058d2f7eca93 - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81883A97-D747-42C9-A005-136F44B0A2DC - String file contents |