Skip to content

Instantly share code, notes, and snippets.

View pablooses-cu's full-sized avatar

Pablo Osés pablooses-cu

View GitHub Profile
@pablooses-cu
pablooses-cu / cu-rds-token.sh
Created April 23, 2026 19:05
interactive RDS token generator
#!/bin/bash
if ! command -v aws >/dev/null 2>&1; then
echo "Error: 'aws' command is not available" >&2
echo "Install with: 'brew install awscli' or alternative ways" >&2
exit 1
fi
if ! command -v gum >/dev/null 2>&1; then
@pablooses-cu
pablooses-cu / cu-npm-token.sh
Created April 23, 2026 19:04
interactive NPM token generator
#!/bin/bash
if ! command -v aws >/dev/null 2>&1; then
echo "Error: 'aws' command is not available" >&2
echo "Install with: 'brew install awscli' or alternative ways" >&2
exit 1
fi
if ! command -v gum >/dev/null 2>&1; then
@pablooses-cu
pablooses-cu / cu-ecr-token.sh
Created April 23, 2026 19:02
interactive ECR token generator
#!/bin/bash
if ! command -v aws >/dev/null 2>&1; then
echo "Error: 'aws' command is not available" >&2
echo "Install with: 'brew install awscli' or alternative ways" >&2
exit 1
fi
if ! command -v gum >/dev/null 2>&1; then