Building a local-first clipboard workspace for macOS
Adhibit is a new macOS clipboard workspace designed to enhance productivity and privacy. It allows users to manage copied content as reusable knowledge rather than just a chronological list. The tool emphasizes local-first storage, ensuring sensitive clipboard data remains private and off developer servers.
- ▪Adhibit treats copied content as reusable context, allowing for better organization and retrieval.
- ▪The clipboard workspace supports features like searchable text, image indexing, and customizable Pinboards.
- ▪Users can opt for iCloud sync without needing a product account, prioritizing privacy.
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 === 3952747) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } 刘芷维 Posted on May 27 Building a local-first clipboard workspace for macOS #productivity #privacy #tooling I am the developer of Adhibit, a macOS clipboard workspace mentioned in this article. Most clipboard managers start with one useful question: what did I copy recently? That is a good starting point, but it is not the whole workflow. A lot of copied content stops being temporary after a few minutes.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).