Skip to content

Instantly share code, notes, and snippets.

@geekle
geekle / 1_run
Last active August 29, 2015 13:57
Failing pip install
root@a038d69067b3:/# pip install awscli
Downloading/unpacking awscli
Running setup.py egg_info for package awscli
Downloading/unpacking botocore>=0.34.0,<0.35.0 (from awscli)
Running setup.py egg_info for package botocore
Downloading/unpacking bcdoc>=0.12.0,<0.13.0 (from awscli)
Running setup.py egg_info for package bcdoc
@geekle
geekle / makeiso.sh
Created January 19, 2014 00:27
Create bootable CoreOS ISO from the master PXE images.
#!/bin/bash
# Creates a bootable ISO from CoreOS' PXE images.
# Also adds a run script to the OEM partition and converts the ISO so it can boot from USB media.
# Based heavily off https://github.com/nyarla/coreos-live-iso - Thanks Naoki!
set -e
# Default configurations
SYSLINUX_VERSION="6.02"
@geekle
geekle / CORS Rules
Created July 24, 2013 02:36
S3 CORS Rules for Custom Fonts in Firefox
<CORSConfiguration>
<CORSRule>
<AllowedOrigin>http://www.example.com</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>Content-*</AllowedHeader>
<AllowedHeader>Host</AllowedHeader>
</CORSRule>
</CORSConfiguration>