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
NSURL *url = [NSURL URLWithString:@"https://mysite.com/"]; | |
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url]; | |
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys: | |
height, @"user[height]", | |
weight, @"user[weight]", | |
nil]; | |
NSMutableURLRequest *request = [httpClient requestWithMethod:@"POST" path:@"/myobject" parameters:params]; | |
AFHTTPRequestOperation *operation = [AFHTTPRequestOperation operationWithRequest:request |
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
### Keybase proof | |
I hereby claim: | |
* I am mikesaltsman on github. | |
* I am bios (https://keybase.io/bios) on keybase. | |
* I have a public key ASCGRL6dd7SXuQy_FOjAj1DYIn4aOxF4wH2RkqUCKGwHaQo | |
To claim this, I am signing this object: |
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
/************************* | |
Begin Convoy-specific styling | |
*************************/ | |
h3.cnvy-grid { | |
display: none; | |
} | |
img.cnvy-header-img { | |
width: 100%; | |
margin-bottom: 40px; | |
} |