Show HN: Happen We Discovered This Minimal Framework of Glue with Superpowers
github.com
Show HN: Happen We Discovered This Minimal Framework of Glue with Superpowers
1–4 of 4 posts
Re: Show HN: Happen We Discovered This Minimal Framework of Glue with Superpowers
#2Am I missing the bigger picture here?
Re: Show HN: Happen We Discovered This Minimal Framework of Glue with Superpowers
#3Will have to look deeper into this later, but on a superficial level, this seems a lot like OOP with extra steps, those being cryptographical verification of each node("objects") and making polymorphism/type erasure implicit(instead of passing an interface to a constructor which then gets used by the object, the object just shouts events into the void hoping someone will answer). Also it's stringly typed because this…
Re: Show HN: Happen We Discovered This Minimal Framework of Glue with Superpowers
#4Will have to look deeper into this later, but on a superficial level, this seems a lot like OOP with extra steps, those being cryptographical verification of each node("objects") and making polymorphism/type erasure implicit(instead of passing an interface to a constructor which then gets used by the object, the object just shouts events into the void hoping someone will answer). Also it's stringly typed because this…
Hey, builder here, appreciate your reply don't normally put our stuff out there so it's a bit of an adventure in an of itself. Totally get where you're coming from with the OOP comparison! The node/event pattern does look familiar on the surface, but instead of objects calling each other's methods directly, components just put information out there and continue with their work. the system maintains causality while re…