This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Xavier Noria
fxn.bsky.social
did:plc:dbfb7k4eiwvy6pomjvexsief
In Ruby, nested module calls reopening objects work independently of the involved constant paths.
That is, you can have modules A::B and X::Y and do this
module A::B
module X::Y
# Nesting here is [X::Y, A::B].
end
end
Today I found a use case for this for the first time!
2024-11-14T16:55:22.432Z