Jonathan Castello

Software Engineer

Discuss:

This is a test

‘Ello everyone. I’m testing my new blog, server, etc. right now. Time will tell whether this post sticks around in the long term (it probably won’t), but for now, excuse the dust.

(If a blogger publishes a post and nobody reads it, was it ever really published?)

MathJax:

\[f'(x) = \lim\limits_{z \to x} \frac{f(z) - f(x)}{z - x}\]

Syntax highlighting:

def parabola(a, b, c):
  def inner(x):
    return c + x*(b + x*a)
  return inner