Hello, world

meta
R
First boilerplate post. Site is built with Quarto, hosted on GitHub Pages, edited in Positron.
Author

Jem Arnold

Published

September 5, 2026

This site is a Quarto website. Posts are .qmd files under blog/posts/, each in its own folder, and can include executable R code.

x <- seq(0, 6 * pi, length.out = 300)
plot(
    x,
    exp(-x / 8) * sin(x),
    type = "l",
    lwd = 2,
    col = "#5b8db8",
    xlab = "x",
    ylab = "y",
    bty = "l",
    las = 1
)
Line plot of a damped sine wave, demonstrating executed R code in a post.
Figure 1

Computed output is frozen (freeze: true in blog/posts/_metadata.yml), so re-rendering the site does not re-run old posts.