So, I spent a quite a while pimping up my blog engine. And here is the list of awesome features it can do. And event more to come soon. You probably already noticed the cool dark CSS styling of an open-source Jekyll theme, but there is much more to go.
Alright, let’s move.
MathJax support
See the awesome math needed for researching DSP whitepapers and stuff.
Solving quadratic equations
When \(a \ne 0\), there are two solutions to \(ax^2 + bx + c = 0\) and they are
$\begin{align*} & \phi(x,y) = \phi \left(\sum_{i=1}^n x_ie_i, \sum_{j=1}^n y_je_j \right) = \sum_{i=1}^n \sum_{j=1}^n x_i y_j \phi(e_i, e_j) = \\ & (x_1, \ldots, x_n) \left( \begin{array}{ccc} \phi(e_1, e_1) & \cdots & \phi(e_1, e_n) \\ \vdots & \ddots & \vdots \\ \phi(e_n, e_1) & \cdots & \phi(e_n, e_n) \end{array} \right) \left( \begin{array}{c} y_1 \\ \vdots \\ y_n \end{array} \right) \end{align*}$
AlphaTab sheet music support
I’m struggling to teach myself music theory the most thoughtful way – through understanding written scores and sheet music. There is something about written notations, that makes me feel sorta sophisticated, and as I total narcissist I like that feeling.
Rendering sheet music
AudioJS Embeded MP3 player
Feels super cool to be able to embed my audio demos and sketches with a music player via audioJS. Then they are all nicely sorted Now also with playlist support!
Embeded MP3 player
ThebeLab emneded Jupyter notebooks
Python + scipy + numpy inside a Jupyter notebook. There is nothing better to sketch/flesh-out mathematical ideas than that. With [ThebeLab] and a dedicated Jupyter server available, you can make your Python sketches runnable on your site.
Interactive Jupyter Notebooks
%matplotlib inline import numpy as np from jupyterthemes import jtplot import matplotlib.pyplot as plt jtplot.style() x = np.linspace(0,10) plt.plot(x, np.sin(x)) plt.plot(x, np.cos(x))