Skip to content

Instantly share code, notes, and snippets.

View alex-moon's full-sized avatar

Alex Moon alex-moon

  • PlaceChangers Ltd
  • Gateshead, Tyne and Wear
View GitHub Profile
#!/bin/bash
shuf -n2 <<EOF
a vagrant breaks out in beads of occasional congregation
frequent manuscript an ancestral home to dazzlement
receipt passing through a second edition
this voluptuary good-natured holiday
full-dress paste lopping off its countrymen
Lord Byron's women feel the sting of makeshift rounds
shipwrecks are often facts of expensive simplicity
@alex-moon
alex-moon / inherited_methods.py
Created August 13, 2015 09:16
Find Inherited Methods on a class in Python
#!/usr/bin/python
import inspect
class SuperSuperClass(object):
def super_super_method(self):
return 'super super method'
class SuperClass(SuperSuperClass):