Skip to content

Instantly share code, notes, and snippets.

View theseanything's full-sized avatar

Sean Rankine theseanything

  • London
  • 05:54 (UTC +01:00)
View GitHub Profile
@theseanything
theseanything / copy_sm_secrets.py
Last active June 23, 2022 12:43 — forked from sgtoj/copy_sm_secrets.py
Python script to copy AWS SecretsManager Secrets
#!/usr/bin/env python3
import argparse
import os
import boto3
from botocore.exceptions import ClientError
# -------------------------------------------------------------------- main ---
@theseanything
theseanything / setup.sh
Last active December 14, 2018 15:25 — forked from bradp/setup.sh
New Mac Setup Script
echo "Installing xcode-stuff"
xcode-select --install
# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi