There is already excellent snowfakery documenation. This one-pager acts as a quick-reference guide for common scenarios when working with Salesforce objects ans associated field types.
- Python 3
- Snowfakery
There is already excellent snowfakery documenation. This one-pager acts as a quick-reference guide for common scenarios when working with Salesforce objects ans associated field types.
name: Org Setup | |
run-name: '${{ github.event.inputs.name }}::${{ github.event.inputs.org }}::${{ github.event.inputs.flow }}::${{ github.event.inputs.days }}::${{ github.event.inputs.delete_on_failure }}' | |
on: | |
workflow_dispatch: | |
inputs: | |
name: | |
type: string | |
required: true | |
description: CumulusCI org name (no spaces) |
...and obviously we're building a workaround. But I'm absolutely flabbergasted that a standard <input type="date">
HTML field, in a standard browser, from a company that bases its reputation good design, could be so dreadful.
I'm the developer for a startup that sells a genetic test to recommend medications for high blood pressure. For medical reasons we need to know our customers' birth date. Most of our customers are in their 60s or older. We've found that many of them use iPads or iPhones. And they're the ones who complain to our customer support that our site is unusable.
# Run Command: cci task run robot -o suites robot/NPSP/tests/api/success.robot -o vars BROWSER:headlesschrome | |
[Documentation] Success POST test. | |
*** Settings *** | |
Resource cumulusci/robotframework/Salesforce.robot | |
Resource robot/Cumulus/resources/NPSP.robot | |
Library DateTime | |
Library robot/NPSP/resources/RequestsLibrary/ |
<?= sprintf('::set-output name=var::%s', json_encode([ | |
[ | |
'id' => 'bar', | |
'name' => 'foo', | |
], | |
[ | |
'id' => 'bar2', | |
'name' => 'foo2', | |
], | |
])); |
<?xml version="1.0" encoding="UTF-8"?> | |
<Package xmlns="http://soap.sforce.com/2006/04/metadata"> | |
<types> | |
<members>*</members> | |
<name>ActionLinkGroupTemplate</name> | |
</types> | |
<types> | |
<members>*</members> | |
<name>AnalyticSnapshot</name> | |
</types> |
# CumulusCI | |
alias ccfi='cci flow info' | |
alias ccfl='cci flow list' | |
alias ccfr='cci flow run' | |
alias ccob='cci org browser' | |
alias ccoc='cci org connect' | |
alias ccod='cci org default' | |
alias ccoi='cci org info' | |
alias ccol='cci org list' | |
alias ccor='cci org remove' |
#!/bin/bash | |
if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
appify v3.0.1 for Mac OS X - http://mths.be/appify | |
Creates the simplest possible Mac app from a shell script. | |
Appify takes a shell script as its first argument: | |
`basename "$0"` my-script.sh |