Quentin Bramas

Results 7 comments of Quentin Bramas

Hi, If you want, you can use docker compose using the config I created to easily deploy HotCRP: https://github.com/Bramas/hotcrp-docker-compose I successfully used it in production for a conference and it...

Hi, I faced the same problem when using it recently. I think it will be hard to throttle the mail sending using php (except by having a long running script...

Hello, I have the same error. And I don't understand how can client_id can be an attribute of request.client if client is just a param extracted from the query string...

In AuthorizationCodeGrant::validateTokenRequest, we have ``` python if self.request_validator.client_authentication_required(request): if not self.request_validator.authenticate_client(request): log.debug('Client authentication failed, %r.', request) raise errors.InvalidClientError(request=request) elif not self.request_validator.authenticate_client_id(request.client_id, request): log.debug('Client authentication failed, %r.', request) raise errors.InvalidClientError(request=request) if...

Same here, when using cli ``` $ node -v v8.11.4 ``` ``` $ markdown-pdf -V 9.0.0 ```

Hi, I have the same error presented here #481 It seems the build process is broken when some packages are used (also introducing errors that are unrelated like this aws...

I solved my problem here #481 I think you should just add some packages in the file `vite.config.ts`: add the option: ```js ssr: { external: ["LIB1", "LIB2"], } ``` where...