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 javax.net.ssl.SSLSocket; | |
import javax.net.ssl.SSLSocketFactory; | |
import java.io.*; | |
/** Establish a SSL connection to a host and port, writes a byte and | |
* prints the response. See | |
* http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services | |
*/ | |
public class SSLPoke { | |
public static void main(String[] args) { |
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
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Metadata": { | |
"AWS::CloudFormation::Designer": { | |
"f700037a-b1cd-40cc-968f-c67ea5a2d96f": { | |
"size": { | |
"width": 60, | |
"height": 60 | |
}, | |
"position": { |
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
To search the node api, filtering by role:manager | |
http://127.0.0.1:2375/nodes?filters=%7B%22role%22%3A%5B%22manager%22%5D%7D | |
Filters= is the URLEncoded version of {"role":["manager"]} |
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 jhmartin on github. | |
* I am toger (https://keybase.io/toger) on keybase. | |
* I have a public key whose fingerprint is C79F 0853 C15A C7E9 E798 C97E D81C 9326 A979 840A | |
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
[Unit] | |
Description=Var Lib Expansion Mount | |
[Mount] | |
What=/dev/disk/by-label/DOCKER | |
Where=/var/lib/docker | |
[Install] | |
RequiredBy = local-fs.target |
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
require 'aws-sdk' | |
role_credentials = Aws::AssumeRoleCredentials.new( | |
client: Aws::STS::Client.new(), | |
role_arn: "arn:aws:iam::123:role/cross-account-role", | |
role_session_name: ENV['USER'], | |
serial_number: "arn:aws:iam::123:mfa/usernamehere", | |
token_code: ARGV[0] | |
) | |
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
#!/bin/bash -e | |
# Setup a Root CA in vault | |
# Generate and sign an Intermediate cert | |
# | |
# Requires: | |
# * A running vault server already initialzed and unsealed | |
# * Environment variable VAULT_TOKEN is set | |
# * vault cli (https://www.vaultproject.io) | |
# * httpie (https://github.com/jkbrzt/httpie) |
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
<node> | |
<deviceClass> | |
<basicDeviceClass>ROUTING_SLAVE</basicDeviceClass> | |
<genericDeviceClass>SENSOR_NOTIFICATION</genericDeviceClass> | |
<specificDeviceClass>NOTIFICATION_SENSOR</specificDeviceClass> | |
</deviceClass> | |
<homeId>0xd91cc41a</homeId> | |
<nodeId>10</nodeId> | |
<version>4</version> | |
<manufacturer>0x27a</manufacturer> |
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
#!/bin/sh | |
# Fetch 2-3 minutes in the past as current data isnt there yet | |
NOWDATE=$(date -v-2M -u +"%Y-%m-%dT%H:%M:%SZ") | |
LASTDATE=$(date -v-3M -u +"%Y-%m-%dT%H:%M:%SZ") | |
date | |
#-start-time 2014-04-08T23:18:00Z --end-time 2014-04-09T23:18:00Z --period 3600 --namespace AWS/EC2 --statistics Maximum --dimensions Name=InstanceId,Value=i-abcdef | |
export AWS_PROFILE=jmtdlcw | |
UTILSLATENCY=$(aws cloudwatch get-metric-statistics --start-time $LASTDATE --end-time $NOWDATE --metric-name Latency --period 60 --namespace AWS/ELB --statistic Average --dimensions Name=LoadBalancerName,Value=abc-prod-utilsapi|jq .Datapoints[0].Average) |
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
input { | |
lumberjack { | |
port => 5043 | |
type => "squid" | |
ssl_certificate => "/home/ec2-user/logstash-forwarder/logstash-forwarder.crt" | |
ssl_key => "/home/ec2-user/logstash-forwarder/logstash-forwarder.key" | |
} | |
udp { |