Laurence Dougal Myers

Results 10 issues of Laurence Dougal Myers

I have a custom class that extends from Map. This class is "DefaultMap", and provides a default value when an item is not found in the Map. It looks like...

In TypeScript, when calling `getUserPlaylists()`, the options object is ignored when `userId` is passed as undefined. ```typescript const result = await spotify.getUserPlaylists(undefined, { limit: 50 }); console.log(result.length); //

To avoid linting issue sneaking in, particularly in the backend/server code, I've added a GitHub Action workflow to run `tsc` and `tslint` on every push. `yarn` behaves better across different...

I attempted to download all posts from a creator. I got up to "Downloaded 13343/13592" while downloading external images from googleusercontent, then I got this error message, and the app...

https://github.com/hapijs/joi/blob/v10.6.0/API.md#binary---inherits-from-any There's currently no decorators implemented for the binary schemas. Adding these may have implications for projects using tsdv-joi in the browser, but since they'd have to get joi working...

enhancement
help wanted

I'm implementing a worker process with the following requirements: - The notification listener should retry reconnecting indefinitely. (Infinite retry attempts, no timeout) - The worker process should respond to `SIGINT`...

e.g. ```yaml requestBody: content: application/json: schema: $ref: '#/components/schemas/foo-bar-baz' ``` The generate API files have code like this: ```javascript module.exports.do_foo = function do_foo (req, res, next) { var foo-bar-baz = req.swagger.params['foo-bar-baz'].value;...

bug

I ran `gogcli update generate`, and received this error message: ``` GetOwnedGames(page=1, search=) -> json parsing error: invalid character '

bug

Please see the project I've set up to reproduce the problem, here: https://github.com/laurence-myers/hotswap-export-issue (The project is written in TypeScript, but the JavaScript output is located in the "dist" directory.) When...

I'm having trouble chaining functions/promises using the Bluebird extern. I believe Haxe's type inference engine is failing to deduce the return type of a fulfilledHandler that comes after a fulfilledHandler...