I was manually comparing two versions of a contract for 2 hours before I built this tool
Ubed Sheikh developed a tool to compare long-form text documents after struggling to find an effective solution for reviewing contract changes. The tool allows users to compare text directly, upload files, or analyze web pages without uploading content to a server. It features word-level diffs, a similarity score, and multiple viewing options to enhance document comparison efficiency.
- ▪The tool processes everything in the browser, ensuring privacy for sensitive documents.
- ▪It offers three comparison modes: text paste, file uploads, and URL comparisons.
- ▪Users can see word-level changes rather than just line-level differences, making it more useful for detailed document reviews.
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 === 3936210) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Ubed Sheikh Posted on May 24 I was manually comparing two versions of a contract for 2 hours before I built this tool #tooling #productivity #webdev #javascript A few months ago I was helping a friend review a revised freelance contract. The client had "made a few small changes" - their words. We had two PDF versions. No track changes. No diff. Just two documents that looked almost identical. So we did what anyone does in that situation: opened both side by side and started reading.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).