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
    
  
  
    
  | #!/usr/bin/env bash | |
| cat << EOF > ~/.direnvrc | |
| use_ryan () { | |
| touch pizza.txt | |
| echo "hello pizza" | |
| } | |
| EOF | |
| cat << EOF > .envrc | 
  
    
      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://www.spinnaker.io/reference/providers/kubernetes-v2/#strategy | |
| # https://github.com/spinnaker/spinnaker/issues/3202#issuecomment-413527927 | |
| apiVersion: v1 | |
| kind: Secret | |
| metadata: | |
| name: myregistrykey | |
| annotations: | |
| 'strategy.spinnaker.io/versioned': 'false' # <-- this is the important part | |
| type: kubernetes.io/dockerconfigjson | |
| data: | 
  
    
      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
    
  
  
    
  | go list -deps | |
| go list -f '{{join .Deps "\n"}}' | 
  
    
      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
    
  
  
    
  | # github.com/unclever-labs/homebrew-unclever-labs | |
| require "FileUtils" | |
| $v = "0.0.1" | |
| class Scidr < Formula | |
| homepage "https://github.com/unclever-labs/scidr" | |
| url "https://github.com/unclever-labs/scidr/releases/download/#{$v}/scidr-#{$v}-darwin-amd64" | 
  
    
      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://www.spamhaus.org/drop/drop.txt | |
| https://www.spamhaus.org/drop/edrop.txt | |
| https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt | 
  
    
      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
    
  
  
    
  | --- | |
| apiVersion: v1 | |
| kind: ClusterRoleBinding | |
| apiVersion: rbac.authorization.k8s.io/v1beta1 | |
| metadata: | |
| name: tiller-role-binding | |
| roleRef: | |
| kind: ClusterRole | |
| name: cluster-admin | |
| apiGroup: rbac.authorization.k8s.io | 
  
    
      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
    
  
  
    
  | CREATE EXTERNAL TABLE IF NOT EXISTS alb_table_name_here ( | |
| type string, | |
| time string, | |
| elb string, | |
| client_ip string, | |
| client_port int, | |
| target_ip string, | |
| target_port int, | |
| request_processing_time double, | |
| target_processing_time double, | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env bash | |
| if [[ ! -f ips.txt ]]; then | |
| echo "ERROR: missing file ./ips.txt" | |
| exit 1 | |
| fi | |
| if [[ ! ${1} ]]; then | |
| echo "ERROR: ip-set-id not provided as \${1}" | |
| exit 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
    
  
  
    
  | #!/usr/bin/env bash | |
| openssl dgst -sha256 -binary lambda.zip | base64 |