These are just assorted tests of Quartz features like syntax highlighting.

A bit of js

const ULTIMATE_TRUTH = 'YOLO';
console.log(ULTIMATE_TRUTH);

Finally a bit of Terraform

terraform {
  required_version = ">= 1.0.0"
  backend "s3" {
    region       = "eu-central-1"
    bucket       = "my-tf-states"
    use_lockfile = true
    key          = "prod/app"
  }
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = ">= 3.0"
    }
  }
}