├── rq-version ├── .gitignore ├── README.md ├── package.json ├── public │ ├── 2200.json │ ├── favicon.ico │ ├── index.html │ ├── login.json │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── GPS.jsx │ ├── GlobalState.jsx │ ├── Logger.jsx │ ├── Login.jsx │ ├── Stopwatch.jsx │ ├── WebWorker.jsx │ ├── client.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ ├── setupTests.js │ └── worker.js └── yarn.lock └── swr-version ├── .gitignore ├── README.md ├── package.json ├── public ├── 2200.json ├── favicon.ico ├── index.html ├── login.json ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── GPS.js ├── GlobalState.js ├── Logger.js ├── Login.js ├── Stopwatch.js ├── WebWorker.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js ├── setupTests.js └── worker.js └── yarn.lock /rq-version/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/.gitignore -------------------------------------------------------------------------------- /rq-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/README.md -------------------------------------------------------------------------------- /rq-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/package.json -------------------------------------------------------------------------------- /rq-version/public/2200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/public/2200.json -------------------------------------------------------------------------------- /rq-version/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/public/favicon.ico -------------------------------------------------------------------------------- /rq-version/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/public/index.html -------------------------------------------------------------------------------- /rq-version/public/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 2200 3 | } -------------------------------------------------------------------------------- /rq-version/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/public/logo192.png -------------------------------------------------------------------------------- /rq-version/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/public/logo512.png -------------------------------------------------------------------------------- /rq-version/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/public/manifest.json -------------------------------------------------------------------------------- /rq-version/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/public/robots.txt -------------------------------------------------------------------------------- /rq-version/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/App.css -------------------------------------------------------------------------------- /rq-version/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/App.js -------------------------------------------------------------------------------- /rq-version/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/App.test.js -------------------------------------------------------------------------------- /rq-version/src/GPS.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/GPS.jsx -------------------------------------------------------------------------------- /rq-version/src/GlobalState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/GlobalState.jsx -------------------------------------------------------------------------------- /rq-version/src/Logger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/Logger.jsx -------------------------------------------------------------------------------- /rq-version/src/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/Login.jsx -------------------------------------------------------------------------------- /rq-version/src/Stopwatch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/Stopwatch.jsx -------------------------------------------------------------------------------- /rq-version/src/WebWorker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/WebWorker.jsx -------------------------------------------------------------------------------- /rq-version/src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/client.js -------------------------------------------------------------------------------- /rq-version/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/index.css -------------------------------------------------------------------------------- /rq-version/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/index.js -------------------------------------------------------------------------------- /rq-version/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/logo.svg -------------------------------------------------------------------------------- /rq-version/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/reportWebVitals.js -------------------------------------------------------------------------------- /rq-version/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/setupTests.js -------------------------------------------------------------------------------- /rq-version/src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/src/worker.js -------------------------------------------------------------------------------- /rq-version/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/rq-version/yarn.lock -------------------------------------------------------------------------------- /swr-version/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/.gitignore -------------------------------------------------------------------------------- /swr-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/README.md -------------------------------------------------------------------------------- /swr-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/package.json -------------------------------------------------------------------------------- /swr-version/public/2200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/public/2200.json -------------------------------------------------------------------------------- /swr-version/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/public/favicon.ico -------------------------------------------------------------------------------- /swr-version/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/public/index.html -------------------------------------------------------------------------------- /swr-version/public/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "2200" 3 | } -------------------------------------------------------------------------------- /swr-version/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/public/logo192.png -------------------------------------------------------------------------------- /swr-version/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/public/logo512.png -------------------------------------------------------------------------------- /swr-version/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/public/manifest.json -------------------------------------------------------------------------------- /swr-version/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/public/robots.txt -------------------------------------------------------------------------------- /swr-version/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/App.css -------------------------------------------------------------------------------- /swr-version/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/App.js -------------------------------------------------------------------------------- /swr-version/src/GPS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/GPS.js -------------------------------------------------------------------------------- /swr-version/src/GlobalState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/GlobalState.js -------------------------------------------------------------------------------- /swr-version/src/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/Logger.js -------------------------------------------------------------------------------- /swr-version/src/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/Login.js -------------------------------------------------------------------------------- /swr-version/src/Stopwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/Stopwatch.js -------------------------------------------------------------------------------- /swr-version/src/WebWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/WebWorker.js -------------------------------------------------------------------------------- /swr-version/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/index.css -------------------------------------------------------------------------------- /swr-version/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/index.js -------------------------------------------------------------------------------- /swr-version/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/logo.svg -------------------------------------------------------------------------------- /swr-version/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/reportWebVitals.js -------------------------------------------------------------------------------- /swr-version/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/setupTests.js -------------------------------------------------------------------------------- /swr-version/src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/src/worker.js -------------------------------------------------------------------------------- /swr-version/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/five-clever-rq-and-swr-hacks/HEAD/swr-version/yarn.lock --------------------------------------------------------------------------------