Ian Goodacre
Ian Goodacre
I am testing code that accesses an API I do not control. The API sets statusMessage to provide information additional to the statusCode (i.e. for a given statusCode, the API...
I'm not sure if you are asking me, and I am hesitant to say more. I'm just a user with scant experience. FWIW, my inclination at the moment is to...
I have had a similar problem using passport-azure-ad-oauth2. This inherits from passport-oauth2 but it overrides authorizationParams to ``` Strategy.prototype.authorizationParams = function (options) { return options; }; ``` Where the original...
I just figured out settings for 'Compose key bindings' to swap cmd_paste and cmd_pasteNoFormatting, because I really don't like pasting with formatting by default. ``` { "ctrl+v": "cmd:cmd_pasteNoFormatting", "ctrl+shift+v": "cmd:cmd_paste"...
github dependabot is also reporting a vulnerability: [CVE-2021-3807](https://github.com/advisories/GHSA-93q8-gq69-wqmw)
I just installed camelot using pip, according to the installation instructions, and I am getting the same error when I use camelot CLI: ``` $ camelot --output test.out -f json...
I solved the problem with: ``` $ pip uninstall PyPDF2 $ pip install PyPDF2==2.12.1 ``` This rolls PyPDF2 back to version 2.12.1 which is the last version before 3.0.0 which...
The node-csv on npmjs.com is linked to https://github.com/chriso/node-csv, not this node-csv, but chriso/node-csv doesn't exist and node-csv was last published to npmjs.com 11 years ago, which is even older than...
I had a look at the code of parseOpcode for M6809. Because the offset is 1, it is executing the block that emits opcodes for 5-bit offset but this offset...