Daniel Cousens
Daniel Cousens
> type ExtendedDuration = Duration & { milliseconds?: number } This is the best approach. I don't think anyone was asking you to change the ISO8601 `Duration` object to include...
When I do these operations myself, I think the verbosity increases readability. For example ``` js isBefore(startOfDay(a), startOfDay(b)) ``` I don't think `isBeforeDay` is easier to read than ^. The...
You can switch to `.zip` from `.tar` by using [`zip-stream`](https://www.npmjs.com/package/zip-stream). It is almost a 1:1 drop in, with `s/finalize/finish` and some different `entry` header syntax.
If this is wanted, I am happy to implement it.
Authentication required
If you are proxying flood through `nginx`, don't forget to `proxy_max_temp_file_size 0` too, nginx has a hard limit of 1024mb otherwise and you're downloads will fail.
@wmpedersen could you please post your log dump from `npm install`?
@wmpedersen it may seem like no one is listening, but I guarantee any information you post about the problems you're having will help *someone* in the future, so please post...
@coreyphillips phillips you understand you could pass in `myRng` as the `options` argument, `{ rng: myRng }` instead of modifying the library? Additionally, your RNG is initializing the `mt19937` every...
``` js var num = random.int32(); buf.fill(num) return buf ``` int32 is not 32-bytes, its 32-bits. That is a `Buffer` with 32 copies of the same number...