I hereby claim:
- I am ignlg on github.
- I am ignlg (https://keybase.io/ignlg) on keybase.
- I have a public key ASAqWciuAJXAL963nSnrwKQuQ23mJiEpi-3YSco87IyKWgo
To claim this, I am signing this object:
| on alfred_script(q) | |
| tell application "iTerm" | |
| activate | |
| create window with default profile | |
| select first window | |
| set onlywindow to true | |
| tell the first window | |
| tell current session to write text q | |
| end tell | |
| end tell |
| #! /bin/bash | |
| BLACK=`tput setaf 0` | |
| RED=`tput setaf 1` | |
| GREEN=`tput setaf 2` | |
| YELLOW=`tput setaf 3` | |
| BLUE=`tput setaf 4` | |
| MAGENTA=`tput setaf 5` | |
| CYAN=`tput setaf 6` | |
| WHITE=`tput setaf 7` |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| set -eo pipefail | |
| json=$(y2j <"$1") | |
| overrides=$(echo "$json" | jq "{spec}") | |
| name=$(echo "$json" | jq -r ".metadata.name") | |
| labels=$(echo "$json" | jq -r '.metadata.labels | keys[] as $k | "\($k)=\(.[$k])"' | paste -sd "," -) | |
| image=$(echo "$json" | jq -r ".spec.containers[0].image") |