Vladimir Varankin
Vladimir Varankin
@robfig what do you think about adding the support to `L` to the mainline? The project's readme currently refers to [Quartz Cron syntax][1], that has very useful features: > -...
@phpnode but how would you document function's parameter, which is a promise? E.g. ``` js /** * @param {??} p * @returns {??} */ function doSomething(p) { return p.then(() =>...
But it would be much clearer if one would have an ability to specify some details about this `Promise` ``` js /** * @param {Promise.} p my promise */ function...
According to JSDoc3, you can [use `@typedef` tag](http://usejsdoc.org/tags-typedef.html) for this. For me, since Promises are going to become a part of DOM (or ECMAScript?) standard, they should be documented the...
Hey, @tmc I'd be happy to help with the issue, but it feels it'd be best to start with a brief discussion. As I can see, the `mycorp/api/user/v1/` part is...
It would be great if the path to tmp dir could be set to somewhere outside of the project dir. For example if we use enb as a middleware builder...
It seems that it's a regression described in https://github.com/ClickHouse/ClickHouse/issues/17989 Will check after the patch landed to docker hub.
Go 1.13 adds `-trimpath` build flag to > [..] remove all file system paths from the compiled executable, to improve build reproducibility. See https://tip.golang.org/doc/go1.13#go-command
"[Google-Wide Profiling: A Continuous Profiling Infrastructure for Data Centers][1]" describes an analytical approach for comparing several profiles, based on "profile's variation (*entropy*)" (see "Stability of profiles"): > We use a...
Following #92 for `storage/clickhouse` this can be done via ClickHouse's `TTL` directive in database's DDL. Refer to [docs for `MergeTree` table engine](https://clickhouse.tech/docs/en/engines/table_engines/mergetree_family/mergetree/)