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 zsh | |
| set -e | |
| __handle_flag() { | |
| local flagname="--namespace=" | |
| local flagval="kube-system" | |
| flaghash[${flagname}]=${flagval} | 
  
    
      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
    
  
  
    
  | var ids = "ian,superbrothers"; // comma-separated list of connpass ids | |
| ids.split(",").forEach(function (id) { | |
| var href = "/user/" + id + "/"; | |
| var node = document.querySelector('td.name a[href="' + href + '"]'); | |
| if (node === null) { | |
| console.error(id); | |
| return; | |
| }; | 
  
    
      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 | |
| set -e | |
| function minikube_dnsmasq_macos() { | |
| local ip | |
| case $1 in | |
| start) | |
| command minikube "$@" | 
  
    
      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
    
  
  
    
  | @media (min-width: 1200px) { | |
| .sharedHeader_inner, | |
| .teamSubHeader_inner, | |
| .teamMain_inner { | |
| width: 100% !important; | |
| } | |
| .teamSidebarContainer_main { | |
| width: 75% !important; | |
| } | |
| .teamSidebarContainer_sub { | 
  
    
      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 | |
| set -e | |
| tempfile="$(mktemp)" | |
| trap "rm -rf $tempfile" EXIT | |
| dd if=/dev/zero of=$tempfile bs=1M count=1 | |
| start="$(date +%s%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
    
  
  
    
  | apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: default-http-backend | |
| namespace: kube-system | |
| labels: | |
| k8s-app: default-http-backend | |
| spec: | |
| selector: | |
| k8s-app: default-http-backend | 
  
    
      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
    
  
  
    
  | setopt prompt_subst | |
| FOUND_KUBECTL=0 | |
| if which kubectl >/dev/null 2>&1; then | |
| FOUND_KUBECTL=1 | |
| fi | |
| function kubernetes_current_context() { | |
| local context="$(kubectl config current-context)" | |
| [ $? -eq 0 ] && echo "$context" || echo "no context" | 
  
    
      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
    
  
  
    
  | let g:lightline = { | |
| \ 'colorscheme': 'jellybeans', | |
| \ 'mode_map': { 'c': 'NORMAL' }, | |
| \ 'active': { | |
| \ 'left': [ [ 'mode', 'paste' ], [ 'fugitive', 'gitgutter', 'filename' ], [ 'go' ] ] | |
| \ }, | |
| \ 'component': { | |
| \ 'go': '%#goStatuslineColor#%{LightLineGo()}%*', | |
| \ }, | |
| \ 'component_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
    
  
  
    
  | #!/usr/bin/env bash | |
| set -e | |
| ruby -rjson -ryaml -e "puts JSON.dump YAML.load STDIN" | jq $@ | |
| # vim: set ft=sh : | 
  
    
      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
    
  
  
    
  | package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "time" | |
| ) |