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
const fleetScheduleApp = { | |
id: 'app', | |
initial: 'idle', | |
type: 'compound', | |
states: { | |
idle: { | |
id: 'app-idle', | |
on: { | |
eventClick: { |
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
const loggedInSuccess = () => true | |
const userAddedNotification = () => true | |
const assetAddedNotification = () => true | |
const podAddedNotification = () => true | |
const podUpdatedNotification = () => true | |
const addAssetMachine = { | |
initial: "", | |
states: { | |
} |
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
Accelerun Idea Onboarding | |
Do you have a name? | |
yes -> describe the idea | |
no -> I do not have a name | |
I do not have a name | |
try to give a working title | |
ok -> working title | |
working title | |
still none -> idea name refinement | |
done -> describe the idea |
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
Interacting with a Vessel | |
Click a Vessel | |
Add unavialble times | |
Interacting with a Requirement | |
Click on a Requirement | |
Open the details panel | |
Right Click a Requirement | |
Show Requirement Unassignment dialog | |
Drag and Drop a Requirement | |
Show Requirement Assignment Dialog |
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
Fanar | |
Planning | |
Plan | |
do promote -> Promote | |
Promote | |
persist plan | |
persist plan -> persist actual | |
persist actual | |
persist actual -> Operation | |
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
Sorting Game Tracker For Gali | |
Idle* | |
Start Playing* | |
Pick up shape* | |
Name the shape | |
Name match success -> Attempt match | |
Name match failure -> Name the shape | |
Attempt match | |
Move -> Move the sorter | |
Match success -> Success |
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
State Mahchine Building | |
Prep | |
set title -> Set Title | |
Set Title | |
title set -> Enumerate States | |
Enumerate States | |
define state -> Define State | |
Define State | |
set name -> Set Name | |
define substates -> Enumerate States |
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
header { | |
grid-area: header; | |
} | |
main { | |
grid-area: main; | |
} | |
aside { |
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
{ | |
"id": "cirkzmrhzgmzos03mzm1ltqwngqtywy2ni1jnzdjzjezyte1zjgsbwxvy2fs", | |
"enabled": true, | |
"display_name": "Euan Garden", | |
"email": "[email protected]", | |
... | |
"identities": { | |
... | |
}, | |
"attributes": { |
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
const configuration = { | |
authority: `https://${process.env.REACT_APP_OIDC_DOMAIN}/dex`, | |
clientId: process.env.REACT_APP_OIDC_CLIENT_ID, | |
autoSignIn: true, | |
responseType: "id_token", | |
scope: "openid profile email", | |
redirectUri: window.location.origin, | |
audience: process.env.REACT_APP_OIDC_AUDIENCE, | |
onSignIn: () => { | |
window.location.replace(window.location.origin); |