Launched this week

CSV Deduper
100% Private B2B CSV Lead List Cleaner via Telegram
14 followers
100% Private B2B CSV Lead List Cleaner via Telegram
14 followers
Ultra-fast B2B CSV Deduper & Lead List Cleaner built on Rust + WebAssembly.

14 followers
14 followers
honestly this looks super useful for anyone wrangling messy lead lists. one thing i'd love to see is a fuzzy match toggle for company names, like catching "Acme Inc" vs "ACME Incorporated" since that's where most of my dupes hide. would make the cleanup way more accurate for B2B data imo
@ceydakl6mhw Thanks for the great feedback, Ceyda! You hit the exact pain point of B2B data cleaning.
Right now, our core engine is optimized for absolute raw speed and 100% exact/deterministic deduplication on client-side WebAssembly to keep it lightweight.
However, adding normalization heuristics (like stripping "Inc", "Ltd", "Incorporated" and converting to lowercase before hashing) is a fantastic idea and totally doable without sacrificing performance. I'll look into adding this toggle in the next update. Thanks for supporting us!
honestly the rust + wasm choice is kind of inspired for something as mundane as deduping csvs, love that you went performance-first on a tool most people would have just shipped as a python script
@toprakkutbay Thanks, Toprak! You nailed it. Shipping this as a standard Python or Node backend script means handling huge file uploads, server bottlenecks, and scaling costs.
By compiling Rust into WebAssembly, we completely offload the processing to the client side. The user gets native performance inside their local WebView container, and we get zero server overhead. Performance-first was definitely the only way to build this. Appreciate your support!
Ran a messy 12k row file through it and the fuzzy match caught duplicates my spreadsheet formulas kept missing, which is honestly more than I expected from something that loads instantly in the browser.