Monthly Archives: March 2011

Miracles on a refridge.

For Christmas I used my scroll saw to make some dinosaur magnets for Mallory. ย She really likes dinosaurs and doesn’t seem to have anything serious against magnets, so I figured it was a “good idea”. I drew them and cut … Continue reading

Posted in Uncategorized | 15 Comments

Lest the whole program be smitten with a curse.

class ParseNode: def __init__(self, name): self.name = name self.parent = None self.children = [] def spirit_of_elijah(self): for child in self.children: child.parent = self child.spirit_of_elijah()

Posted in Uncategorized | 4 Comments