Last active
January 24, 2023 22:37
-
-
Save lynaghk/c275aa3c1b5d9efcf8f440408a7abbb3 to your computer and use it in GitHub Desktop.
# A big and slow sketch useful for perf testing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A big and slow sketch useful for perf testing. | |
A | |
A1 -> A2 | |
A2 -> A3 | |
A3 -> A4 | |
A1 | |
A2 | |
A3 | |
A4 | |
A5 | |
B | |
B1 -> B2 | |
B2 -> B3 | |
B3 -> B4 | |
B1 | |
B2 | |
B3 | |
B4 | |
C | |
C1 -> C2 | |
C2 -> C3 | |
C3 -> C4 | |
C1 | |
C2 | |
C3 | |
C4 | |
D | |
D1 -> D2 | |
D2 -> D3 | |
D3 -> D4 | |
D1 | |
D2 | |
D3 | |
D4 | |
E | |
E1 -> E2 | |
E2 -> E3 | |
E3 -> E4 | |
E1 | |
E2 | |
E3 | |
E4 | |
F | |
F1 -> F2 | |
F2 -> F3 | |
F3 -> F4 | |
F1 | |
F2 | |
F3 | |
F4 | |
G | |
G1 -> G2 | |
G2 -> G3 | |
G3 -> G4 | |
G1 | |
G2 | |
G3 | |
G4 | |
H | |
H1 -> H2 | |
H2 -> H3 | |
H3 -> H4 | |
H1 | |
H2 | |
H3 | |
H4 | |
I | |
I1 -> I2 | |
I2 -> I3 | |
I3 -> I4 | |
I1 | |
I2 | |
I3 | |
I4 | |
J | |
J1 -> J2 | |
J2 -> J3 | |
J3 -> J4 | |
J1 | |
J2 | |
J3 | |
J4 | |
K | |
K1 -> K2 | |
K2 -> K3 | |
K3 -> K4 | |
K1 | |
K2 | |
K3 | |
K4 | |
L | |
L1 -> L2 | |
L2 -> L3 | |
L3 -> L4 | |
L1 | |
L2 | |
L3 | |
L4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment