I hereby claim:
- I am ebberg on github.
- I am ebberg (https://keybase.io/ebberg) on keybase.
- I have a public key ASBKkAsl7PgvpGSXGkcHnd1nOuN_IBXaZ6I77VOgw6dtbgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
class Do (): | |
def __init__(self, item, meta, dbf = "DATALISP"): | |
self.item = item | |
self.meta = meta | |
self.dbf = dbf | |
self.children = [] | |
def insert(self, child): | |
if self.is_root(): | |
child.meta['path'] = [len(self.children)] |
#!/usr/bin/env bash | |
function numeralDict { # a simple dictionary. `numeralDict "I"` returns 1, etc. | |
local I=1; | |
local V=5; | |
local X=10; | |
local L=50; | |
local C=100; | |
local D=500; | |
local M=1000; |