jfederer
jfederer
Note I asked this on S.O. too: https://stackoverflow.com/questions/71430497/digest-authentication-in-nodejs I'm using the urllib npm package with the following code: ``` options = { method: 'GET', rejectUnauthorized: false, digestAuth: `${user}:${pass}` } urllib.request(uri,...
With a deployment setup like this: ``` apiGatewayServiceProxies: - s3: path: /s3/{myKey} # use path param method: get action: GetObject bucket: xxxxxxx-images key: pathParam: myKey cors: true roleArn: arn:aws:iam::xxxxxxxx:role/xxxxxxIamRoleCustomResourcesAPIGateway-xxxxxx ```...
Using this layer with a GM wrapper: const GM = require('gm'); const gm = GM.subClass({ imageMagick: true }); exports.osdStamp = async (buf) => { return new Promise((resolve, reject) => {...
When adding a button to a row in a given column, I'd like to be able to click that button without onRowClick firing (or find some other way of cancelling...