Skip to content

Instantly share code, notes, and snippets.

View josephabrahams's full-sized avatar

Joseph Abrahams josephabrahams

View GitHub Profile

Docker on Mac OS X

These are my notes based on my experience with using Docker on Mac OS X.

Assumptions

If these assumptions are not true for you, then this document may not be for you.

I assume you have these installed:

  • recent-ish Mac OS X
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible).
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export.
var FORMAT_ONELINE = 'One-line';
var FORMAT_MULTILINE = 'Multi-line';
var FORMAT_PRETTY = 'Pretty';
var LANGUAGE_JS = 'JavaScript';
var LANGUAGE_PYTHON = 'Python';
@josephabrahams
josephabrahams / dyndns53.py
Last active August 29, 2015 14:12 — forked from vrypan/dyndns53.py
Route53 Dynamic DNS Updater
#!/usr/bin/env python
# Adapted from http://joseph.is/1HPHiOE
import sys
import inspect
from datetime import datetime
from syslog import syslog, LOG_ERR
from area53 import route53
from boto.route53.exception import DNSServerError