Skip to content

Instantly share code, notes, and snippets.

@daveduthie
Last active October 18, 2022 11:51
Show Gist options
  • Save daveduthie/67014cdcc465712d7f7e3c2ae396f8a3 to your computer and use it in GitHub Desktop.
Save daveduthie/67014cdcc465712d7f7e3c2ae396f8a3 to your computer and use it in GitHub Desktop.

Revisions

  1. daveduthie revised this gist Oct 18, 2022. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions is_deleted
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    yep
  2. daveduthie revised this gist Oct 18, 2022. No changes.
  3. daveduthie revised this gist Oct 18, 2022. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -1,14 +1,14 @@
    Debicheck mandate
    Some starting state
    Confirm signatures -> Signatures confirmed
    Stuff&
    A parallel FSM&
    Document FSM
    Signatures confirmed
    Upload FICA docs -> FICA docs uploaded
    FICA docs uploaded
    # guard: debicheck dismissed
    Request approval -> Needs approval
    Doing Debicheck things
    Debicheck FSM
    Awaiting Debicheck
    Start Debicheck -> Debicheck in progress
    Debicheck in progress
  4. daveduthie revised this gist Oct 18, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@ Debicheck mandate
    Some starting state
    Confirm signatures -> Signatures confirmed
    Stuff&
    Document stuff
    Document FSM
    Signatures confirmed
    Upload FICA docs -> FICA docs uploaded
    FICA docs uploaded
  5. daveduthie revised this gist Oct 18, 2022. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -4,8 +4,9 @@ Debicheck mandate
    Stuff&
    Document stuff
    Signatures confirmed
    Upload FICA docs -> FICA
    # guard: debicheck complete
    Upload FICA docs -> FICA docs uploaded
    FICA docs uploaded
    # guard: debicheck dismissed
    Request approval -> Needs approval
    Doing Debicheck things
    Awaiting Debicheck
  6. daveduthie revised this gist Oct 18, 2022. 1 changed file with 5 additions and 4 deletions.
    9 changes: 5 additions & 4 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -2,9 +2,11 @@ Debicheck mandate
    Some starting state
    Confirm signatures -> Signatures confirmed
    Stuff&
    Signatures confirmed
    # guard: debicheck complete
    Request approval -> Needs approval
    Document stuff
    Signatures confirmed
    Upload FICA docs -> FICA
    # guard: debicheck complete
    Request approval -> Needs approval
    Doing Debicheck things
    Awaiting Debicheck
    Start Debicheck -> Debicheck in progress
    @@ -13,5 +15,4 @@ Debicheck mandate
    Debicheck completed
    Dismiss -> Debicheck dismissed
    Debicheck dismissed
    Request approval -> Needs approval
    Needs approval
  7. daveduthie revised this gist Oct 18, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -13,5 +13,5 @@ Debicheck mandate
    Debicheck completed
    Dismiss -> Debicheck dismissed
    Debicheck dismissed

    Request approval -> Needs approval
    Needs approval
  8. daveduthie revised this gist Oct 18, 2022. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -13,4 +13,5 @@ Debicheck mandate
    Debicheck completed
    Dismiss -> Debicheck dismissed
    Debicheck dismissed

    Needs approval
  9. daveduthie revised this gist Oct 18, 2022. No changes.
  10. daveduthie revised this gist Oct 18, 2022. 1 changed file with 12 additions and 6 deletions.
    18 changes: 12 additions & 6 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -1,10 +1,16 @@
    Debicheck mandate
    Some starting state
    Confirm signatures -> Signatures confirmed
    Signatures confirmed
    Start Debicheck -> Debicheck in progress
    Debicheck in progress
    Debicheck completes -> Debicheck completed
    Debicheck completed
    Upload FICA -> Needs approval
    Stuff&
    Signatures confirmed
    # guard: debicheck complete
    Request approval -> Needs approval
    Doing Debicheck things
    Awaiting Debicheck
    Start Debicheck -> Debicheck in progress
    Debicheck in progress
    Debicheck completes -> Debicheck completed
    Debicheck completed
    Dismiss -> Debicheck dismissed
    Debicheck dismissed
    Needs approval
  11. daveduthie revised this gist Oct 12, 2022. No changes.
  12. daveduthie created this gist Oct 12, 2022.
    10 changes: 10 additions & 0 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    Debicheck mandate
    Some starting state
    Confirm signatures -> Signatures confirmed
    Signatures confirmed
    Start Debicheck -> Debicheck in progress
    Debicheck in progress
    Debicheck completes -> Debicheck completed
    Debicheck completed
    Upload FICA -> Needs approval
    Needs approval
    6 changes: 6 additions & 0 deletions SketchSystems_prototype.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    function render(model){
    let current_state_name = model.active_states[0].name;
    return $("h1",
    {style: {color: "darkBlue"}},
    `The current state is: ${current_state_name}`);
    }