brew install terraform
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
| title = " " | |
| maximize = true | |
| working-directory = "home" | |
| # TODO: fix `command` / `initial-command` error | |
| shell-integration = "bash" | |
| initial-command = "~/.config/ghostty/startup.sh bash" | |
| command = "bash $HOME/.config/ghostty/startup.sh" | |
| quit-after-last-window-closed = true | |
| quick-terminal-screen = mouse | |
| quick-terminal-autohide = true |
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
| rank | ip | dns_provider | min | median | average | max | |
|---|---|---|---|---|---|---|---|
| 1 | 1.1.1.1, 1.0.0.1 | cloudflare | 65.00 | 66.00 | 66.00 | 67.00 | |
| 2 | 208.67.222.222, 208.67.220.220 | opendns | 68.00 | 72.00 | 73.70 | 101.00 | |
| 3 | 9.9.9.9, 149.112.112.112 | quad9 | 77.00 | 78.50 | 80.10 | 87.00 | |
| 4 | 8.8.8.8, 8.8.4.4 | 87.00 | 93.00 | 96.60 | 113.00 |
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
| [env] | |
| TERM = "xterm-256color" | |
| [terminal.shell] | |
| program = "/usr/bin/bash" | |
| args = ["-l", "-c", "zellij"] | |
| [window] | |
| dimensions.columns = 100 | |
| dimensions.lines = 34 |
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 | |
| BASE_URL="https://github.com" | |
| ORG="sschmid" | |
| REPO="pw-terminal-password-manager" | |
| BIN_NAME="pw" | |
| SUBDIR="src" |
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
| sources: | |
| docker: | |
| type: docker_logs | |
| auto_partial_merge: true | |
| docker_host: unix:///var/run/docker.sock | |
| exclude_containers: | |
| - exclude_ | |
| partial_event_marker_field: _partial | |
| retry_backoff_secs: 2 |
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 -euo pipefail | |
| # $USER | |
| [[ -n $(logname >/dev/null 2>&1) ]] && logged_in_user=$(logname) || logged_in_user=$(whoami) | |
| # $UID | |
| # logged_in_uid=$(id -u "${logged_in_user}") |
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 | |
| # Clean up function | |
| cleanup() { | |
| echo "Cleaning up existing cluster..." | |
| kind delete cluster | |
| } |
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
| VERSION 0.8 | |
| ARG --global APP_NAME="hello_rust" | |
| ARG --global PROFILE=release | |
| all: | |
| BUILD \ | |
| --platform=linux/amd64 \ | |
| --platform=linux/arm64 \ | |
| +docker |
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 -eo pipefail | |
| # Default values | |
| PACKAGE_NAME="" | |
| USER_NAME="" | |
| DRY_RUN=false | |
| VERBOSE=false |