I hereby claim:
- I am svagi on github.
- I am svagi (https://keybase.io/svagi) on keybase.
- I have a public key whose fingerprint is 0792 2B57 6EE3 01A0 8CC7 7041 ACD0 7C2A D71E B183
To claim this, I am signing this object:
| const routerMachine = Machine({ | |
| id: "routerMachine", | |
| initial: "topics", | |
| states: { | |
| topics: { | |
| on: { | |
| next: "dashboard", | |
| }, | |
| }, | |
| dashboard: { |
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
I hereby claim:
To claim this, I am signing this object:
| function getPrimes (n) { | |
| const sieve = new (Uint32Array || Array)(n + 1); | |
| const primes = []; | |
| const length = sieve.length; | |
| const limit = Math.floor(Math.sqrt(n + 1)) | |
| let p = 0; | |
| let m = 0; | |
| for (p = 2; p <= limit; p++) { | |
| for (m = p * 2; m < length; m += p){ |
| { | |
| "100": "Continue", | |
| "101": "Switching Protocols", | |
| "200": "OK", | |
| "201": "Created", | |
| "202": "Accepted", | |
| "203": "Non-Authoritative Information", | |
| "204": "No Content", | |
| "205": "Reset Content", | |
| "206": "Partial Content", |