Part 8: Free Self-Hosted Mind Mapping for a Home Lab: Why I Put a Significant Part of MindMapVault on GitHub
Kornel Maraz discusses the importance of open-sourcing the MindMapVault project on GitHub. By making parts of the mind mapping app publicly available, users can verify the privacy claims and inspect the implementation. This approach fosters trust and allows for better self-hosted operations in home lab environments.
- ▪MindMapVault is a privacy-first mind mapping app that has parts open-sourced on GitHub.
- ▪Open repositories allow users to inspect architecture decisions, release history, and deployment options.
- ▪The project aims to provide transparency and trust by enabling users to evaluate the software's privacy boundaries.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2501031) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Kornel Maraz Posted on May 29 • Originally published at mindmapvault.com Part 8: Free Self-Hosted Mind Mapping for a Home Lab: Why I Put a Significant Part of MindMapVault on GitHub #github #opensource #privacy #productivity Privacy-first mind mapping app (9 Part Series) 1 Privacy-first mind mapping app. Part 0: Motivations and Mind Maps 2 Privacy-first mind mapping app. Part 1: Constraints Before Tech ... 5 more parts... 3 Privacy-first mind mapping app.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).