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 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright (c) 2026 Tarmac Technologies | |
| # Author: Victor Colomb <victor@tarmactechnologies.com> | |
| ## Usage: git wt [options] [target-name] | |
| ## | |
| ## Options | |
| ## -h|--help: Display this help message and exit |
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 -S uv run --script | |
| # -*- coding: utf-8 -*- | |
| # | |
| # /// script | |
| # requires-python = ">=3.12" | |
| # dependencies = [ | |
| # "valkey-glide-sync", | |
| # "boto3", | |
| # "rich", | |
| # "typer", |
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 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright (c) 2025 Tarmac Technologies | |
| # Author: Victor Colomb <victor@tarmactechnologies.com> | |
| ## Usage: ecr-build-push [options] <ecs-task-id> | |
| ## | |
| ## Options: | |
| ## -h|--help: Display this help message and exit |
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 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright (c) 2025 Tarmac Technologies | |
| # Author: Victor Colomb <victor@tarmactechnologies.com> | |
| ## Usage: cloudwatch-tail [options] <log-group-name> [log-stream-name] | |
| ## | |
| ## Options: | |
| ## -h, --help Display this help message and exit |
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 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright (c) 2025 Tarmac Technologies | |
| # Author: Victor Colomb <victor@tarmactechnologies.com> | |
| ## Usage: ecr-build-push [options] | |
| ## | |
| ## Required options: | |
| ## -r|--repo [repo], TT__ECR_REPO: Set the ECR repository |
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
| # Oh My Zsh | |
| export ZSH="$HOME/.oh-my-zsh" | |
| ZSH_THEME="robbyrussell" | |
| plugins=( | |
| git | |
| opentofu | |
| history-substring-search |
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 python3 | |
| # -*- coding: utf-8 -*- | |
| __author__ = "Victor COLOMB <victor@tarmactechnologies.com>" | |
| __version__ = "0.1" | |
| import asyncio | |
| import logging | |
| from typing import Any |
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
| #!/bin/bash | |
| set -e # Abort on errors | |
| set -u # Abort on unset variables | |
| # PARAMETERS | |
| TRAEFIK_CERT_STORE='/etc/traefik/acme.json' | |
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 python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Downloads all files from a S3 bucket under a prefix that have been modified | |
| after a certain date. | |
| Usage: | |
| Make sure your AWS credentials are set up correctly (e.g. in ~/.aws/credentials) | |
| Edit file and enter bucket name, prefix and minimum modified date below. | |
| Run the script from the command line (e.g. python s3_download_files_by_lastmodified.py) |
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
Show hidden characters
| { | |
| "env": { | |
| "node": true, | |
| "es2021": true | |
| }, | |
| "extends": "eslint:recommended", | |
| "parserOptions": { | |
| "ecmaVersion": "latest", | |
| "sourceType": "module" | |
| }, |
NewerOlder