First Post
This is the first post to test out how things work and look like in hugo and the template.
Here’s a simple footnote1 to illustrate.
Another long footnote2 is here
Some python code
print('hello world')
for i in range(4):
print(f'index is {i}')
hello world
index is 0
index is 1
index is 2
index is 3
What about C?
#include <stdio.h>
int main(void) {
printf("Hello world\n");
return 0;
}
SQL?
SELECT
DISTINCT
t1.col1,
t2.col2,
AVG(t1.col3) AS avg_col
FROM table1 AS t1
INNER JOIN table2 AS t2
ON t1.col = t2.col
WHERE t2.col4 LIKE '%asdf%'
AND (t1.col5 = 'X' OR t1.col8 = 'Y')
GROUP BY t1.col1, t2.col2
HAVING SUM(t2.col4) > 0
ORDER BY t1.col1, t2.col2
LIMIT 10
Inline math \(a + b = c\)
Block math \[ i\hbar\frac{\partial}{\partial t} \Psi(\mathbf{r},t) = \left [ \frac{-\hbar^2}{2\mu}\nabla^2 + V(\mathbf{r},t)\right ] \Psi(\mathbf{r},t) \]
\[\left\{ % but say if I insert comments here/random text \begin{aligned} \dot{x} & = \sigma(y-x) \newline \dot{y} & = \rho x - y - xz \newline \dot{z} & = -\beta z + xy \end{aligned} % or random text here, problem goes away \right.\]
\[\begin{vmatrix}a & b\\ c & d \end{vmatrix}=ad-bc\]
Tables
col1 | col2 | col3 |
---|---|---|
asdf | asdf | lkj |
aslfd | slkdfj | skfj |
kddkflsjd | sklfdj | slkdfj |
Testing if lastmod works properly on Aug 5 2021