How it works
This tool simulates heavy computational tasks (like math algorithms) in two different ways:
1. Main Thread: Runs the task in the primary UI thread. This locks the browser's ability to render or interact until finished.
2. Web Worker: Runs the task in a background thread (parallel). This keeps the UI fluid and responsive even during heavy computation.
No data is transmitted to any servers. All calculations occur locally in your browser.