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 uv run | |
| # /// script | |
| # requires-python = ">=3.12" | |
| # dependencies = [ | |
| # "click", | |
| # "cryptography", | |
| # ] | |
| # /// | |
| """This script generates a Snowflake-compatible RSA key pair. |
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 | |
| # This script checks for and installs the following command line tools: | |
| # 1. brew (MacOS package manager) - https://brew.sh/ | |
| # 2. uv (Python package manager) - https://docs.astral.sh/uv/ | |
| # 3. op (1Password cli) - https://developer.1password.com/docs/cli/ | |
| # 4. aws (Amazon Web Services cli) - https://aws.amazon.com/cli/ | |
| # 5. git (Version control client) - https://git-scm.com/ | |
| # Function to check if a command exists | |
| command_exists() { |
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 uv run | |
| # /// script | |
| # dependencies = [ | |
| # "holidays", | |
| # "typer", | |
| # "numpy" | |
| # ] | |
| # /// | |
| from datetime import date, datetime | |
| from enum import Enum |