Anton Bessonov

Results 206 comments of Anton Bessonov

Я предложил бы отказаться от многоязычной документации. Иметь хорошую документацию - это очень много работы. А поддерживать и держать несколько языков ещё сложнее. [Вот, например](https://github.com/ydb-platform/ydb/pull/103), добавляется непоследовательность. Владеть английским на...

If I've understand [BlobStorage](https://ydb.tech/en/docs/concepts/cluster/distributed_storage) correctly, it is about internal storage. Probably, it isn't a goal, but it would be great if we could use ydb as a blob storage.

This should be closed as duplicate of https://github.com/ffmpegwasm/ffmpeg.wasm/issues/58

Just fixed this issue with [my own module](https://github.com/Bessonov/node-http-router). Now, the micro-memoize is the only module which produces this error.

Did you tried the compiled artifacts? For example, https://github.com/golang-migrate/migrate/releases/tag/v4.15.2

@dhui it would be nice to have this functionality. Is there a chance to get it into main?

Looking at the [published code](https://www.npmjs.com/package/luxon?activeTab=code), I believe tree shaking should work. However, due to many code pieces being used by other code pieces and the extensive use of classes (both...

Working config snippet for nginx: ``` map $http_upgrade $connection_upgrade { default upgrade; '' close; } ``` [...] ``` location /bus { proxy_read_timeout 999999999; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection...

To make it work for lambda, you **MUST** install (and implicitly compile) it for the right version of your runtime. It is different from your local machine. To do so...

Probably, I've encountered one of the issues. **What I want:** I have an nginx container and want it to restart when `nginx.conf` on the host changes. **Expectation 1:** Container should...