This file contains hidden or 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
| { | |
| "event_id": "64", | |
| "event_type": "member:created", | |
| "event_payload": { | |
| "data": { | |
| "id": "4JKS0a", | |
| "type": "member", | |
| "attributes": { | |
| "id": "4JKS0a", | |
| "bio": null, |
This file contains hidden or 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
| query { | |
| customer(id: "gid://shopify/Customer/XXXXXXXXXX") { | |
| firstName | |
| lastName | |
| paymentMethods(first: 5) { | |
| edges { | |
| cursor | |
| node { | |
| id |
This file contains hidden or 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
| GET https://api.numerousapp.com/v1/metrics |
This file contains hidden or 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
| { | |
| "report": { | |
| "terrestrial_date": "2013-05-01", | |
| "sol": 261, | |
| "ls": 310.5, | |
| "min_temp": -69.75, | |
| "min_temp_fahrenheit": -93.55, | |
| "max_temp": -4.48, | |
| "max_temp_fahrenheit": 23.94, | |
| "pressure": 868.05, |
This file contains hidden or 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
| - (NSDictionary *)num_queryArguments | |
| { | |
| NSMutableDictionary *returnArgs = [NSMutableDictionary dictionary]; | |
| NSString *query = [self query]; | |
| NSArray *strURLParse = [query componentsSeparatedByString:@"?"]; | |
| for(int j=0; j < [strURLParse count]; j++) { | |
| NSArray *arrQueryString = [[strURLParse objectAtIndex:j] componentsSeparatedByString:@"&"]; |
This file contains hidden or 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
| function label_awaiting_reply() { | |
| var emailAddress = Session.getEffectiveUser().getEmail(); | |
| Logger.log(emailAddress); | |
| var EMAIL_REGEX = /[a-zA-Z0-9\._\-]+@[a-zA-Z0-9\.\-]+\.[a-z\.A-Z]+/g; | |
| var label = GmailApp.createLabel("AwaitingReply"); | |
| var d = new Date(); | |
| d.setDate(d.getDate() - 7); | |
| var dateString = d.getFullYear() + "/" + (d.getMonth() + 1) + "/" + d.getDate(); | |
| threads = GmailApp.search("in:Sent after:" + dateString); | |
| for (var i = 0; i < threads.length; i++) |
This file contains hidden or 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
| + | |
| .`. .`. + | |
| ` + ` | |
| _,._ _,._ ,--------. | |
| `-,-`-,-.`-,-`-,-.`._,'| ` `.` |\`-/| | |
| `-.-`-,-.`-.-`-,-.`-.-'|`. . `( ^ . ^) | |
| `-.-` `-.-` `-.-'',,---,,`-,,'` | |
| + | |
| .`. .`. | |
| ` ` |
This file contains hidden or 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
| <?php | |
| // This is a sample PHP script that demonstrates accepting a POST from the | |
| // Unbounce form submission webhook, and then sending an email notification. | |
| function stripslashes_deep($value) { | |
| $value = is_array($value) ? | |
| array_map('stripslashes_deep', $value) : | |
| stripslashes($value); | |
| return $value; | |
| } |