%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from IPython.html.widgets import interact
@interact
def explore(n=10):
x = np.linspace(0, n, 1000)
plt.plot(x, np.sin(x), x, np.cos(x));
sns.set()
plt.plot(x, np.sin(x), x, np.cos(x));
The code runs Jupyter kernels inside of Docker containers, through a temporary notebook system. The frontend exposed here is O'Reilly Media's Thebe.
There is no network access and operations are limited. If you find a bug, report it. Change the code to your hearts content.
Hosting for the kernels is provided by developer.rackspace.com.