My First Post!!

I’m an awesome PIC16B student and I am running Jekyll!
I am also learning about markdown!
I can do lists!

  1. one
  2. two
  3. three

And math!
\(\oint_V f(s) \,ds\)
And I can insert python-styled code!

def f(x):
    """
    A cool function that multiples an input x by 2. 
    """
    return 2*x


I can also insert images!
Sponge
And plots!

import numpy as np
from matplotlib import pyplot as plt
x = np.linspace(0, 2*np.pi, 1001)
y = np.sin(x)
plt.plot(x, y)


image-example.png

Written on March 31, 2022