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
https://deliver.goshippo.com/ci_a4c3d97c3a334e6cb50c0d4fe0a188db.pdf?Expires=1640550320&Signature=ZGieNVqFQXyAfI7ricFYja45LvwCRLwMiQaJ~P~hizoojERQDLIMeZPVgco7QORQ6kqHiJT7ZHhHl-G2GktkDYSwLV8y~OgYlbXB60BczdkDgPIBUrdPjgfb2EP5K~HpRJvlSZeeivDwhBOI07TxdAsZcBFIdMjQ8Ua4vwIIUaTPHGReKJNZodaZagh4RIlkx8TWCA1TVyKEk8qNzUfZLNwkQk79dXMUf88LluqZW5q9DDj6Dwv8NAbL5LstHR5gZXpWP6jOSNWPeir9vpX2310YnLRXsXxDvVKb4wu49Y64kO5JcYWsTgpS4xzHPPTpQRgNI5JEDoSMxuDSqEXtzA__&Key-Pair-Id=APKAJRICFXQ2S4YUQRSQ | |
https://deliver.goshippo.com/a4c3d97c3a334e6cb50c0d4fe0a188db.pdf?Expires=1640550319&Signature=TakVgOOQycm-sye6imLdxLCPFABz-Y7oaYICJ7du3TsD0OR3XhfDUCgsCbRWM1BXBJLRYOYgXqKKeePZDJSAwLIz8ckq4k4xAtQjae3jCyvqaRbBB~H1fQfLNy8nWTXl639YrPSx6XcQ0igSFtLHOHOUL-nNazTCvNR92XwwZQjkVoeOQl61NcWN3~F6VWjSN3eNOWfoG6ib9ebI~rLus4w7MBJvfCbiu8cd~P7C3m6wxEXo~jZz751q7NW1TL7w4Eeorarf~WBPw1hYJi3lucTDsV-g2oz3OznbnfNgbdj5vkZCk7D0NePQ1KxPdU6y15L8IK8qkTiXJANlqNdXXA__&Key-Pair-Id=APKAJRICFXQ2S4YUQRSQ | |
https://deliver.goshippo.com/b3b76c97847f48e5b4d9bb35c332aa5a.pdf?Expires=1 |
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
public static int dayOfYear(int month, int dayOfMonth, int year) { | |
if (month == 2) { | |
dayOfMonth += 31; | |
} else if (month == 3) { | |
dayOfMonth += 59; | |
} else if (month == 4) { | |
dayOfMonth += 90; | |
} else if (month == 5) { | |
dayOfMonth += 31 + 28 + 31 + 30; | |
} else if (month == 6) { |
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
Dsb35N8ZK3JqTmh9tzHMswECLGNdJbFtrYa |
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
06cf71fc89346bb828639bf1a6f73379ce6f639ac3f7d42606a685f8f7af40dd3a9ff83222ab |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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 example demonstrates how to purchase a label for a domestic US shipment. | |
*/ | |
require_once('lib/Shippo.php'); | |
// Replace <API-KEY> with your credentials | |
Shippo::setApiKey("<API-KEY>"); | |
//example fromAddress array object | |
$fromAddress = array( |