No reviews yetBe the first to leave a review for CSV Deduper
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
Report
Maker
@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!
Report
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.
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.