This is pretty much where my head is at too. I am an engineer by trade and have done a fair amount of programming, although never became an expert in it.
Do you have ideas on how to create class template that is unique and does not cross contaminate. This is where I am currently stuck.
I want to start with myself/mind at center starting point, but use a common class template to inherit from.
But I’m having the issue that the only way to make file structure unique that I am aware of to is to create new vaults. I want everything to stay in the same vault.
I imaging each file being essentially an object
My simple example
me → .friends → Mike, Ben, Alex, Sam
Mike -->.friends → Eric, me, Tom, Mitch
when you invoke the file “Friends”, which returns the note containing the list of friends for the instance of “me” class
Can we make .friends unique to different people within the note structure? Or do I have to create a unique file every time, and then the reusability, OOP kind of goes away? .friends-Mike to get Mike’s friends. Then I can no longer easily inherit the class template across friends