| BirthAddress | FinancialInstitutionAddress | TradeAddress |
|---|---|---|
| cityName | buildingNumber | additionalStreetName |
| countryId | cityId | attentionOf |
| countrySubDivisionName | cityName | buildingName |
| countryId | buildingNumber | |
| countryName | careOf | |
| countrySubDivisionId | cityId | |
| countrySubDivisionName | cityName |
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
| 1. Create a new directory; | |
| mkdir Apple\ Enterprise | |
| cd Apple\ Enterprise | |
| 2. Generate a certificate signing request | |
| openssl req -nodes -newkey rsa:2048 -keyout aps.key -out CertificateSigningRequest.certSigningRequest | |
| 3. With the information like so (ensure you give it a password): | |
| Country Name (2 letter code) [AU]:GB | |
| State or Province Name (full name) [Some-State]:London |
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
| import com.cloudbees.plugins.credentials.* | |
| import com.cloudbees.plugins.credentials.domains.* | |
| // When called without paramters will returns all global credentials | |
| retrieveCredentials() | |
| // To retrieve specific credentials, just pass their ids as parameter. | |
| // For instance to retrieve credentials credId_1 and credId_2, just perform | |
| // such call: | |
| // retrieveCredentials('credId_1','credId_2') |
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
| openapi: 3.0.0 | |
| info: | |
| description: '' | |
| title: Main | |
| version: '' | |
| servers: [] | |
| paths: | |
| /Consignments: | |
| get: | |
| tags: |
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
| { | |
| "@context": [ | |
| { | |
| "@version": 1.1, | |
| "id": "@id", | |
| "type": "@type", | |
| "dc": "http://purl.org/dc/terms/", | |
| "sec": "https://w3id.org/security#", | |
| "xsd": "http://www.w3.org/2001/XMLSchema#", | |
| "edi3": "http://edi3.org/vocab#" |
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
| { | |
| "@context": { | |
| "@vocab": "http://edi3.org/vocab/mmt#", | |
| "context": { "@type": "@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
| { | |
| "@context": { | |
| "xsd": "http://www.w3.org/2001/XMLSchema#", | |
| "@version": 1.1, | |
| "@vocab": "http://edi3.org/vocab/mmt/", | |
| "type": { | |
| "@id": "@type", | |
| "@type": "@vocab" | |
| }, | |
| "Academic_Qualification": { |
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
| 10010 FAIL (Cookie No HttpOnly Flag) |
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
| #!/bin/bash | |
| # send message to slack channel | |
| # define the boundaries after which the message will be sent will be sent as an attachment | |
| # count "c" characters or "l" lines from stdin | |
| stdin_check="l" | |
| # define number of characters or lines from stdin | |
| stdin_count="2" | |
| # define usage function |
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
| "NAT": "ami-3d28d45f", | |
| "EC2": "ami-942dd1f6", | |
| "ECS": "ami-36867d54" |