I stopped uploading my files to random websites and built my own tools instead
The article discusses the author's decision to stop using online file compression tools and instead create their own browser-based utilities. This led to the development of PureTools, a suite of 54 free tools that operate entirely client-side, ensuring user privacy. The author emphasizes the importance of keeping files local and avoiding the risks associated with uploading to unknown websites.
- ▪The author stopped using random online tools after reading a privacy policy that raised concerns.
- ▪PureTools consists of 54 utilities for various tasks, all running in the browser without file uploads.
- ▪The tools are built using simple technologies like HTML, CSS, and vanilla JavaScript, focusing on user 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 === 3948342) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } PureTools Posted on May 23 I stopped uploading my files to random websites and built my own tools instead #webdev #javascript #opensource #privacy Every week I'd find myself doing the same thing. Googling "compress PDF Every week I'd find myself doing the same thing. Googling "compress PDF online free", clicking the first result, uploading my file to some website I'd never heard of, and hoping for the best. One day I actually read the privacy policy of one of these tools.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).