Website in progress

Soon there will be lots of fun code

import matplotlib.pyplot as plt
import random

x, y = [0], [0]

for _ in range(1000):
    angle = random.uniform(0, 2 * 3.14159)
    x.append(x[-1] + 0.5 * cos(angle))
    y.append(y[-1] + 0.5 * sin(angle))

And exciting math

\begin{equation*} G_{\mu\nu} + \Lambda g_{\mu\nu} = \frac{8\pi G}{c^4} T_{\mu\nu} \end{equation*}

Wait… so what happens now?

Wait patiently