This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Matthew Sanabria
matthewsanabria.dev
did:plc:brfbmfg2d2ug37sxe7yehocc
Go method receivers should just default to `self`.
I should be able to do the following.
func (Person) Name() string {
return self.Name
}
If need to change the receiver name I can just use the existing syntax.
func (p Person) Name() string {
return p.Name
}
Don't @ me. You're wrong!
2025-05-02T16:37:18.489Z