[ Launch: Tributary inlet ] 1ccc0fb0a9a67ad0331e by jankei
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
Verifying I am +jankei on my passcard. https://onename.com/jankei |
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
#!/bin/bash | |
for (( i=1; i<=$2; i++ )) | |
do | |
aws lambda delete-function --function-name $1 --qualifier $i &>/dev/null | |
echo "lambda $1 version $i was deleted" | |
done |
I hereby claim:
- I am jankei on github.
- I am jankei (https://keybase.io/jankei) on keybase.
- I have a public key whose fingerprint is 74F9 EAC9 D32F 4F50 A4ED 3CF6 DA24 843D 30FA DC5C
To claim this, I am signing this object:
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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 machine = Machine( | |
{ | |
id: 'prebillerVerified', | |
initial: 'disabled', | |
context: { | |
warnings: { | |
coverageForms: { | |
message: 'At least one Payer must be active.', | |
on: true, | |
valid: values => values.some(c => c.policyActive), |
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 prebillerVerifiedMachine = Machine( | |
{ | |
id: 'prebillerVerified', | |
initial: 'disabled', | |
context: { | |
warnings: [], | |
}, | |
states: { | |
disabled: { | |
id: 'disabled', |