gitextract_m49ewkoa/ ├── .gitignore ├── README.md ├── d1-1-worker-setup/ │ ├── app.js │ ├── index.html │ └── w/ │ └── main-worker.js ├── d1-2-alternative-communication/ │ ├── app.js │ ├── index.html │ └── w/ │ └── main-worker.js ├── d10-passing-window/ │ ├── app.js │ ├── index.html │ └── w/ │ └── main-worker.js ├── d11-change-detection/ │ ├── MOCK_DATA_2.json │ ├── app.js │ ├── index.html │ └── w/ │ ├── main-worker.js │ └── utils.js ├── d2-prime-numbers/ │ ├── app.js │ ├── index.html │ └── w/ │ └── main-worker.js ├── d2-prime-numbers-without-worker/ │ ├── app.js │ └── index.html ├── d2-prime-numbers-without-worker-until-number/ │ ├── app.js │ └── index.html ├── d3-sub-worker/ │ ├── app.js │ ├── index.html │ └── w/ │ ├── main-worker.js │ └── network-check.js ├── d4-random-users/ │ ├── app.js │ ├── index.html │ └── w/ │ ├── main-worker.js │ └── network-check.js ├── d5-mix-d2-3-4-random-images/ │ ├── app.css │ ├── app.js │ ├── image-worker/ │ │ └── image.js │ ├── index.html │ ├── main-worker/ │ │ ├── main-worker.js │ │ └── network-check.js │ └── primes-worker/ │ └── primes.js ├── d5-mix-no-worker/ │ ├── app.css │ ├── app.js │ └── index.html ├── d6-mix-d2-3-4-random-images-alt/ │ ├── app.css │ ├── app.js │ ├── image-worker/ │ │ └── image.js │ ├── index.html │ ├── main-worker/ │ │ ├── main-worker.js │ │ └── network-check.js │ └── primes-worker/ │ └── primes.js ├── d7-transferables/ │ └── index.html ├── d8-transferables-2/ │ ├── app.css │ ├── app.js │ ├── index.html │ └── main-worker/ │ └── main-worker.js └── d9-too-many-messages/ ├── app.js ├── index.html └── w/ ├── w1.js └── w2.js