Projects

We are known to do some computer-touching from time to time, and occasionaally this ends up being interesting to other folks.

At the moment, we really only have one active project:

Morgana

A small, jsx-inspired component rendering library with with more Rust-like macro syntax. It's used to render this site!

morx! {
    PageLayout title="Code sample" {
        h1="The syntax is designed to be terse but unambiguous"

        p="With an easy shorthand for elements with only text-content"

        p={r#"But Rust expressions are allowed for any value, \
            and attributes are easy to specify as well"#}

        a href={crate::get_link()} { 
            "Like so!"
        }
    }
}

Please don't ever use this, as it's idiosyncratic and designed solely to satisfy our own quirks, but for the curious, you can browse the source code if you are so inclined.

If you'd like to see Morgana in use, feel free to check the source code for this site as well. It does some cool cursed client-side animations, which you may have noticed while clicking around.