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 | |
""" | |
Watch the clipboard for URLs and open them in the browser (on Linux) | |
""" | |
import subprocess | |
import time | |
import pyperclip # Requires xclip to be apt installed |
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
REPO_LINE="deb https://${LP_USER}:${PPA_PASSWORD}@${PRIVATE_PPA_URL} ${SUITE} main" | |
REPO_KEY_FINGERPRINT=832749327429CADB77842973ED72947203471037 | |
# Add the private ppa to the system | |
env DEBIAN_FRONTEND=noninteractive chroot "${MOUNTPOINT}" apt-add-repository "${REPO_LINE}" | |
env DEBIAN_FRONTEND=noninteractive chroot "${MOUNTPOINT}" apt-key adv --keyserver keyserver.ubuntu.com --recv ${REPO_KEY_FINGERPRINT} | |
env DEBIAN_FRONTEND=noninteractive chroot "${MOUNTPOINT}" apt-get update | |
# Install from private PPA HERE | |
env DEBIAN_FRONTEND=noninteractive chroot "${MOUNTPOINT}" apt-get install -qqy awesome_package_but_super_secret |
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
# HVM EBS-SSD | |
aws ec2 describe-regions --output text --query 'Regions[*].[RegionName]' --region us-east-1 | while read region; do echo -e "$region "; aws --region $region ec2 describe-images --owners 099720109477 --filters Name=root-device-type,Values=ebs Name=architecture,Values=x86_64 Name=name,Values='*hvm-ssd/ubuntu-xenial-16.04*' --query 'sort_by(Images, &Name)[-1].ImageLocation'; done; | |
# HVM Instance-store | |
aws ec2 describe-regions --output text --query 'Regions[*].[RegionName]' --region us-east-1 | while read region; do echo -e "$region "; aws --region $region ec2 describe-images --owners 099720109477 --filters Name=root-device-type,Values=instance-store Name=architecture,Values=x86_64 Name=name,Values='*hvm-instance/ubuntu-xenial-16.04*' --query 'sort_by(Images, &Name)[-1].ImageLocation'; done; | |
# PV EBS-SSD | |
aws ec2 describe-regions --output text --query 'Regions[*].[RegionName]' --region us-east-1 | while read region; do echo -e "$region "; aws --region $region ec2 describe-images --owners 0997201094 |
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/sh | |
cat > lifecycle.json <<EOF | |
{ | |
"Rules": [ | |
{ | |
"Expiration": { | |
"Days": 7 | |
}, | |
"ID": "Expire, delete, and cancel", |
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
""" | |
Script to download all the books in a humble bundle. | |
May work for other resources, but don't have anything to test against. | |
To use, run from the directory you want to download the books in. | |
Pass the "game" key as the first argument (look in the URL of your normal download page). | |
To restrict to certain formats, pass them as extra positional arguments on the command line. | |
Example: | |
python humble_bundle_download abcdef12345 mobi pdf |
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 | |
cat <<EOF > meta-data | |
instance-id: iid-local01 | |
local-hostname: cloudimg | |
EOF | |
cat <<EOF > user-data | |
#cloud-config | |
ssh_import_id: [ yourlaunchpadid ] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# log from ipython as I played with the pricing api | |
#index.json from https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/index.json | |
# Per http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/price-changes.html#download-the-offer-index | |
# But this may no longer be supported as it (EC2) is not part of the parent index of all services any longer | |
import json | |
with open('index.json', 'r') as foo: | |
data = json.read(foo) | |
with open('index.json', 'r') as foo: |
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 | |
SOURCE=/volume1 | |
DEST=/volume2 | |
APPDIR=\@appstore | |
ASK=true | |
while getopts ":y" opt; do | |
case $opt in |
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
# Get the Ubuntu cloud image of your choosing (this example uses the latest Xenial daily) | |
wget http://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img | |
# Set the cloud-init datasource to use explicitly (this example uses the EC2 datasource) | |
sudo mount-image-callback xenial-server-cloudimg-amd64-disk1.img -- \ | |
sh -c 'echo "datasource: Ec2" > $MOUNTPOINT/etc/cloud/ds-identify.cfg' | |
# Confirm the current datasource configuration | |
sudo mount-image-callback xenial-server-cloudimg-amd64-disk1.img -- \ | |
chroot _MOUNTPOINT_ cat /etc/cloud/ds-identify.cfg |