Dale L. Jefferson
Dale L. Jefferson
> “It's like donning your heaviest parka in the dead of July just to blast the air and demand an ice lolly.” I'm not sure if the line _"blast the...
While my functions are serverless I have some dependancies which are not, for example I have an on-premise whatsApp server which can only handle 25 requests per second. I fire...
We will have 10s of thousands of events I would like a way to search though the events to aid with debugging. The "user" attribute seems like this was intended...
I assume headers will always be present (at least an empty object) but in the emulator it defaults to undefined. If you tell me httpHeaders could be null I will...
I'm not sure if this is a node-dev issue or a inotify issue? $ npm install dev -g [email protected] install /Users/dale/local/node/lib/node_modules/dev/node_modules/inotify node-waf configure build Checking for program g++ or c++...
input and expected output: ``` class Hello extends React.Component { render() { return ( Hello ); } } ``` current output (esformatter v0.9.1, esformatter-jsx v4.0.6): ``` class Hello extends React.Component...
It would be really useful for integrating with other tools if flow-coverage-report had a programmatic api. ```js import flowCoverageReport from 'flow-coverage-report' flowCoverageReport(options).then(({percent}) => console.log(`${percent}% covered`)) ```
Everything in the VIPER TODO example is using strong references. - View controllers is strongly referenced by the Wireframes. - Presenters are strongly referenced by the View controllers. - View...