Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
from __future__ import print_function | |
import random | |
buzz = ('continuous testing', 'continuous integration', | |
'continuous deployment', 'continuous improvement', 'devops') | |
adjectives = ('complete', 'modern', 'self-service', 'integrated', 'end-to-end') | |
adverbs = ('remarkably', 'enormously', 'substantially', 'significantly', | |
'seriously') | |
verbs = ('accelerates', 'improves', 'enhances', 'revamps', 'boosts') |
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
#!/usr/bin/env python | |
import boto3 | |
client = boto3.client('s3') | |
Bucket = 'a-bucket' | |
Prefix = 'a-prefix' # leave blank to delete the entire contents | |
IsTruncated = True | |
MaxKeys = 1000 | |
KeyMarker = None |
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
import java.net.URL; | |
import java.security.SecureRandom; | |
import java.security.cert.CertificateException; | |
import java.security.cert.X509Certificate; | |
import javax.net.ssl.HostnameVerifier; | |
import javax.net.ssl.HttpsURLConnection; | |
import javax.net.ssl.KeyManager; | |
import javax.net.ssl.SSLContext; | |
import javax.net.ssl.SSLSession; | |
import javax.net.ssl.TrustManager; |