I hereby claim:
- I am tyhawkins on github.
- I am tyhawkins (https://keybase.io/tyhawkins) on keybase.
- I have a public key ASC4Qmad-S1sULOwnwUclRXFYL3sjojoqUxoJogcKNpXOQo
To claim this, I am signing this object:
| data "external" "gitrepo" { | |
| program = [ | |
| "bash", | |
| "-c", | |
| <<-EOF | |
| echo "{ \ | |
| \"branch\":\"$(git rev-parse --abbrev-ref HEAD)\", \ | |
| \"sha\":\"$(git rev-parse --short=8 HEAD)\", \ | |
| \"url\":\"$(git remote get-url origin)\" \ | |
| }" |
| ## YAML Anchors and tags | |
| ingress_one: | |
| annotations: &annotations | |
| annotation-one: "true" | |
| annotation-two: "false" | |
| annotation-three: "false" | |
| ingress_two: | |
| annotations: *annotations |
| # $HOME/.k9s/plugin.yml | |
| # move selected line to chosen resource in K9s, then: | |
| # Shift-T (with confirmation) to toggle helm releases or kustomizations suspend and resume | |
| # Shift-R (no confirmation) to reconcile a git source or a helm release or a kustomization | |
| plugin: | |
| toggle-helmrelease: | |
| shortCut: Shift-T | |
| confirm: true | |
| scopes: | |
| - helmreleases |
| # save as much history as possible | |
| HISTFILE="$HOME/.zsh_history" | |
| HISTSIZE=10000000 | |
| SAVEHIST=10000000 | |
| # zsh plugins | |
| plugins=( | |
| aws | |
| docker | |
| git |
| property btnTitle : "Mute audio" | |
| if application "zoom.us" is running then | |
| tell application "System Events" | |
| tell application process "zoom.us" | |
| if exists (menu item btnTitle of menu 1 of menu bar item "Meeting" of menu bar 1) then | |
| set returnValue to "Unmuted" | |
| else | |
| set returnValue to "Muted" | |
| end if |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en" class="gupui flow-authenticate state-method-select"> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <meta name="viewport" content="initial-scale=1, maximum-scale=1"> | |
| <title>Sign In - USA TODAY</title> |
| <!DOCTYPE html> | |
| <html lang="en" class="gupui flow-authenticate state-"> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <meta name="viewport" content="initial-scale=1, maximum-scale=1"> | |
| <title></title> |
| # ----------------------------------------------------------------------------- | |
| # PowerShell script for loading your private key files with pageant.exe | |
| # Author: Martijn Burgers | |
| # Find me on Twitter: http://www.twitter.com/martijnburgers | |
| # ----------------------------------------------------------------------------- | |
| $usage = "Usage: loadppks.ps1 [Dir|ppk file]"; | |
| if ($args.Count -eq 0) { | |
| write-host "No arguments supplied!" | |
| write-host $usage |
| :: This version is not as powerfull as vbs version, please prefere the other one. | |
| :: It's just there if you need a non-visual basic way to perform this. | |
| :: Restrictions: | |
| :: - Password cannot contain a % or finish with @ | |
| :: - Chrome adds a / at the end of the URL, not yet managed | |
| :: The aim of this script is to execute putty with parameters like ssh://login@host | |
| :: Installation: | |
| :: - Launch putty.reg to associate ssh:// and telnet:// to this script | |
| :: - Edit the putty path in parameter below like puttyPath="C:\Program Files (x86)\putty.exe" |