Great project. My team used it for a live-coding Python notebook: https://github.com/inkandswitch/livebook#readme To my surprise it was faster than Jupyter / CPython for some tasks (e.g. loading and parsing large CSVs).
Naturally, I changed the first code block to this:
from random import randint, seed
seed()
"\n".join([randint(5, 25) * ' ' + s for s in ['such code', 'much live', 'wow']])