Gists for CSS Display Properties: The Pillars Of Layout on Fixate's blog.
Gists for Structuring Your Gulp Workflow on Fixate's blog.
Gists for Make Your CSS Variable Names Suck Less on Fixate's blog.
A Google Apps Script to handle submissions sent to a Google Sheet via a webform, and send emails each time a submission is received.
Largely inspired by Google Sheets as a Database – INSERT with Apps Script using POST/GET methods.
This script must be added to your Google Sheet via 'Tools' -> 'Script Editor...'.
Your spreadsheet's column names must match the field names on your firm to properly submit data.
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 userMachine = Machine({ | |
| id: "user", | |
| initial: "noUser", | |
| states: { | |
| noUser: { | |
| invoke: { | |
| src: "getUser", | |
| onDone: "userFound", |
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 xeroOrgMachine = Machine({ | |
| id: 'xeroOrg', | |
| initial: 'noOrg', | |
| states: { | |
| noOrg: { | |
| invoke: { | |
| src: "requestAuthUrl", | |
| onDone: "exchangingToken", |
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 tradingStrategyMachine = Machine({ | |
| id: 'three-step-trading-process', | |
| initial: 'backtesting', | |
| context: { | |
| timesRefactored: 0, | |
| }, | |
| states: { |