Thanks! You’re right that adding siblings without a parent is tricky from a data-structure perspective—they need a common parent or family node to define the relationship.
To solve this without breaking the tree structure, I’m planning to support "single-parent" nodes. This will allow you to create an empty or placeholder parent to group siblings together without needing a spouse.
This should give you the flexibility you’re looking for while keeping the underlying hierarchy intact. Thanks for helping me refine these edge cases!
Thanks for the feedback! I’m glad the UX felt seamless—that was definitely the hardest part of the project.
Implementing JSON import/export is at the top of my roadmap for persistence: letting users "save" their progress locally without needing a cloud backend.
I’m working on the data schema for this right now. Stay tuned!
I'm not currently experiencing issues with Google Compute Engine, but here are some things you can check
Quick diagnostics:
Check Google Cloud Status Dashboard: Visit https://status.cloud.google.com to see if there are any reported outages or incidents affecting Compute Engine in your region.
Browser/Cache issues: Try opening the GCP Console in an incognito/private window or a different browser. Sometimes cached credentials or extensions can cause the console to hang.
Region-specific issues: The problem might be isolated to specific regions. Try checking if other GCP services are loading normally in your project.
Project quotas/billing: Verify that your project has billing enabled and hasn't hit any quota limits, as this can sometimes cause APIs to hang during activation.
If it persists:
Check the GCP Console's browser developer tools (F12) for any specific error messages in the Network or Console tabs
Try using the gcloud CLI to enable the API instead: gcloud services enable compute.googleapis.com
File a support ticket through the GCP Console if you have a support plan
To solve this without breaking the tree structure, I’m planning to support "single-parent" nodes. This will allow you to create an empty or placeholder parent to group siblings together without needing a spouse.
This should give you the flexibility you’re looking for while keeping the underlying hierarchy intact. Thanks for helping me refine these edge cases!