╭☞( ͡ ͡° ͜ ʖ ͡ ͡°)╭☞ it's a boilerplate of code to help you create presentations using cool kids' technologies.
Reveal.js
Jade
Stylus
Gulp
Browser Sync
...
Math like we did in the elementary school...
$$-b \pm \sqrt{b^2 - 4ac} \over 2a$$(Yeah, I do remember this.)
Or maybe math we do these days...
$$ \mathop{\int \!\!\! \int}_{\mathbf{x} \in \mathbf{R}^2} \! \langle \mathbf{x},\mathbf{y}\rangle \,d\mathbf{x} $$Code like we did when learning Haskell <3 ...
import Control.Parallel
main = a `par` b `par` c `pseq` print (a + b + c)
where
a = ack 3 10
b = fac 42
c = fib 34
fac 0 = 1
fac n = n * fac (n-1)
ack 0 n = n+1
ack m 0 = ack (m-1) 1
ack m n = ack (m-1) (ack m (n-1))
fib 0 = 0
fib 1 = 1
fib n = fib (n-1) + fib (n-2)