Skip to content

Instantly share code, notes, and snippets.

Get in touch at hi@rowan.earth

FTE: Lead Engineer

MiraDx (2021 - 2023)

MiraDx is a molecular diagnostics lab with specialty cancer tests. I was hired as the first in-house engineer, built and managed an in-house engineering team of 3, and worked closely with the founder/CEO to identify and decide direction of engineering needs.

I owned the Typescript+Nextjs platform and worked with UCLA scientists to productionize the statistics model in Python. I brought in security researchers to harden the codebase's security, redesigned the system for new markets, and productionized research classification models.

Project: health data pipeline

# https://gist.github.com/dovinmu/bcab247b063cd3e294e57d06440268a1
def popParens(s):
return s[s.find('(')+1:s.rfind(')')]
def getArgs(s):
def appendArg(arg):
if '(' in arg:
args.append(getArgs(arg.strip()))
else:
def loadWordSet():
s = set()
try:
with open('/usr/share/dict/american-english', 'r') as f:
for line in f:
s.add(line.strip())
except:
print("Could not find built-in dictionary")
# rely on https://github.com/dwyl/english-words.git
try: