https://orly.dev is the address of the repo (it's a redirect to github using a reverse proxy i modded for this "go vanity imports") and yes , the language is #golang
i have discovered in the last 18 months working on nostr relay dev that it's quite easy to cause a shitload of memory allocation temporarily that causes applications to get killed by the kernel when they exhaust the available memory.
the solution usually just involves changing the algorithm to avoid piling up large amounts of data at once and instead processing things in a pipeline where the memory gets freed properly before it builds into a giant slab of OOM death (out of memory).