Setting up PGlite in Deno
2 min read
353 words
2 min read
353 words
1 min read
209 words
Hey there, 👋
I needed to set up a Datadog agent to check remote Postgres instances as a regular container. All the documentation I found was about injecting secrets like passwords or hostnames via Kubernetes secrets. This seemed to be the only way to do it besides using Docker Swarm secrets. Since I had to set up a container definition for AWS ECS Fargate, neither of these options were available. So I wanted to see if I could use "regular" environment variables from which the agent could pull the secrets on startup.
2 min read
287 words
As someone with visual impairment in one eye, I understand firsthand the challenges of navigating websites with less-than-perfect vision. That's why I recently made a significant change to my website: I switched to the Atkinson Hyperlegible Font.
1 min read
128 words
I've been working more with Golang for a while now, so I set up my Zed editor to
use gofumpt
instead of gofmt
as my default formatter.
2 min read
437 words
Hey there, 👋! I needed to set up automatic registration of ECS tasks of a
service in our load balancer. The previous setups were done by colleagues, but
now I had the chance to do it myself. Since we're setting up everything via
Terraform as Infrastructure as Code, the example
below will be written in hcl
, the format that Terraform uses to set up
resources.