November 24, 2025
Notebook Demo
Simple executed notebook embedded in the site.
This is an example notebook rendered through the SSG
import math
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 10, 100)
y = np.sin(x)
plt.plot(x, y)
plt.show()
math.sqrt(16)

4.0