Skip to content

Instantly share code, notes, and snippets.

View rcludwick's full-sized avatar

Rob Ludwick rcludwick

View GitHub Profile
@rcludwick
rcludwick / nginx-docker-compose.yml
Last active July 14, 2018 03:14
Rob's nginx seafile docker compose.yml
version: "2"
networks:
default:
proxy:
services:
nginx:
restart: always
image: nginx:alpine
super(Mod1Task, self).__init__()
Verifying I am +robludwick on my passcard. https://onename.com/robludwick
@rcludwick
rcludwick / depgen.py
Created September 7, 2012 06:57
Python ordering a build list by giving a dictionary of dependencies.
'''
These functions take a dictionary of dependencies in the following way:
depdict = { 'a' : [ 'b', 'c', 'd'],
'b' : [ 'c', 'd'],
'e' : [ 'f', 'g']
}