Denys Nykula

Results 24 comments of Denys Nykula

I see the mentioned bridge error message during every conference, at the moment the other person joins. According to the Network tab of the inspector, the first request to /colibri-ws/jvb/...

Commenting out the swaggerbag and swaggerauth require_once lines in wp-api-swaggerui.php restores my access to wp-json using Application Passwords (WP 5.6+) after installing this plugin. It provides the clearest and most...

Hello, thanks for a detailed question. Please try using the TypeORM transformer property according to the [Entities documentation](https://typeorm.io/#/entities): ```ts @Index() @Column("bigint", { transformer: { from: (db: string) => Number(db), to:...

Hello, thanks for your proposal. Will the following alternative suffice? ``` diff --git a/src/app/TypeormStore/TypeormStore.ts b/src/app/TypeormStore/TypeormStore.ts index 86cffa1..0351f8c 100644 --- a/src/app/TypeormStore/TypeormStore.ts +++ b/src/app/TypeormStore/TypeormStore.ts @@ -102,2 +98,3 @@ export class TypeormStore extends...

@yagoferrer Haven't merged yet. Could you please try adding the change like in my comment above to your fork, and add some simple cases for checking it to TypeormStore.test.ts?

Prettier allows JS oneliners like: ```js var debug = ({ message, stack }) => console.error({ message, stack }); configure({ port: process.env.PORT }).catch(debug); ``` Overall, condensing micro statements helps maintain code....

Prettier is much lighter, and the point is to be internally consistent and not customize. I've been setting up stylelint, but every project using Prettier can benefit from the single...

@evilebottnawi Selectors do belong each on own line IMO: ```css .mt7, .mt-standard { margin-top: 16rem; } ```

Hmm, I initially thought of reusing the existing HTML+Xpath scraping function and adding a checkbox to turn off DOM parsing, but that was a more invasive change and decoupling the...

What would be an appropriate `CURLOPT_MAXFILESIZE` in that case, and would it help? The files I want to watch are indeed of varied size and not very small, some are...