Skip to content

Instantly share code, notes, and snippets.

@jonesd
jonesd / scribus-resizer.py
Last active August 29, 2015 14:05
Scribus DTP image scaling script in support of editing with low resolution images and then switching to high resolution images for final production pdf generation
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
(C)2013.07.26 David Jones
SYNOPSIS
This script supports the development of a scribus document using
@jonesd
jonesd / aws.template
Created January 24, 2014 01:56
CloudFormation template to crete an AWS Elastic Load Balancer setup for VPC with Multi-Availability Zones. For more details see: http://i-proving.com/2014/01/14/aws-elastic-load-balancer-setup-for-vpc-with-multi-availability-zones/
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "ELB with Multi-AZ template",
"Parameters" : {
"WebInstanceType" : {
"Description" : "Web machine instance type",
"Type" : "String",
"Default": "m1.small"
},