alterae

🏳️‍⚧️

  • it/its, she/her

former government employee, CS major, ski lift operator, and summer camp counselor. currently shooting for EMT certification


homepage (old)
alterae.github.io/
other homepage (largely deprecated)
alterae.srht.site/
reposted writings, something blog-ish
alterae.prose.sh/
fediverse (again!)
tech.lgbt/@alterae

local root_name = "alterae:chunk-power"

local mt = {}

local function make_namespace(name)
    local ns = {
        name = name
    }

    setmetatable(ns, mt)
    return ns
end

function mt.__index(table, key)
    return make_namespace(table.name .. ":" .. key)
end

function mt.__call(table, name)
    return table.name .. ":" .. name
end

return make_namespace(root_name)
syntax highlighting by codehost

lua is so cursed (code from a factorio mod i made)


You must log in to comment.