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
| Selection | |
| browse | |
| select -> editOne | |
| beginSelectRectangle -> drawSelectRectangle | |
| editOne | |
| select -> editOne | |
| removed -> browse | |
| addOneSelect -> selected | |
| beginSelectRectangle -> drawSelectRectangle | |
| selected |
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
| Toolbox | |
| select_tool | |
| select_one -> edit_tool | |
| select_many -> move_tool | |
| # open_tool -> | |
| edit_tool | |
| # text, image, legend are always edit_tool | |
| # switch_tool -> other_tool | |
| save -> select_tool | |
| close -> select_tool |
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
| ChargifyAccount | |
| start | |
| signup -> trial | |
| trial | |
| cancel -> cancelled | |
| expire -> trial_ended | |
| activate -> active | |
| trial_ended | |
| retry -> trial | |
| activate -> active |
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
| Invoicing | |
| start | |
| fetch -> awaiting_send | |
| migrated -> done | |
| awaiting_send | |
| begin -> sending | |
| sending | |
| skip -> skipped | |
| done -> awaiting_import | |
| error -> error_sending |
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
| Initialise | |
| LoggedInAndReady -> CheckIndexedDB | |
| CheckIndexedDB | |
| No Data? -> InitialFetch | |
| Recent Data? -> FetchChangesSince | |
| Old Data? -> InitialFetch | |
| InitialFetch | |
| FetchedEverything -> WatchForUpdates |
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
| DualLock | |
| Locked | |
| Both | |
| unlock a -> OnlyB | |
| unlock b -> OnlyA | |
| OnlyB | |
| lock a -> Both | |
| unlock b -> Unlocked | |
| OnlyA | |
| lock b -> Both |
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
| Off | |
| Boot -> Startup | |
| Startup | |
| success? -> Waiting | |
| failure? -> Error | |
| Waiting | |
| choose plan -> Loading | |
| Shutdown -> Off | |
| Loading |
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
| #!/usr/bin/env bash | |
| # Get a local copy of the destination project state | |
| cd project_dest | |
| terraform state pull > remote.tfstate | |
| # Move from the SRC project to the DEST project | |
| cd ../project_src | |
| terraform state mv \ |
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
| /** | |
| * jscodeshift script that converts | |
| * Template.xyz.{helperName} = function(){} | |
| * to use | |
| * Template.xyz.helpers({ helperName: function(){} }) | |
| */ | |
| export default function transformer(file, api) { | |
| let j = api.jscodeshift; |
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
| pip list --local --format json | jq '[ .[] | .name] | join("\n")' -r | xargs pip uninstall -y |
NewerOlder