Eric Haynes

Results 60 comments of Eric Haynes

Huh, I don't have a file of that name anywhere on my filesystem. I haven't encountered it again since I filed this, though. I still think more informative output would...

This is a problem with `tidy`, not `auto-save`. It should allow specifying the event that triggers it, but it's hardcoded: https://github.com/mcauley-penney/tidy.nvim/blob/9b15a0eb12d6d4f0bb5c197c1f5b72bcc57f09ff/lua/tidy/init.lua#L49 ```lua vim.api.nvim_create_autocmd("BufWritePre", { ``` Ideally, we could get some...

Heh, I was just coming to see if this had been filed before. I'm a little swamped right now, but might be able to look into in a few weeks....

Tangentially related to: https://github.com/rabbitmq/rabbitmq-server/issues/9437

In [the linked issue in node-gcm](https://github.com/ToothlessGear/node-gcm/issues/370), the OP assumes that since it was deprecated on June 20, 2023, it will be discontinued on June 20, 2024, but [Google doesn't actually...

FWIW, here's a general example of what I ended up with using `firebase-admin` directly. I closed my copy of this PR because it wasn't working correctly, and it was too...

To answer the "why both exist" question, `ioredis` was created as an alternative client 9 years ago by an individual: https://github.com/luin According to his profile page: > I created [ioredis](https://github.com/redis/ioredis),...

At first I thought about using a `drain` event, as vanilla amqplib does [emit one](https://github.com/amqp-node/amqplib/blob/4791f2dfbe8f3bfbd02bb0907e3c35129ae71c13/lib/connection.js#L402-L408), though after digging a bit, I'm not sure that it's a workable solution for graceful...

One other quick note... According to the docs, closing a channel will wait for the buffers to be emptied. Closing the _connection_ would cause them all to drop. Thus, it's...

The peer dependency allows a range. E.g. an application could have `0.29`, and that would not compile because the `StaticDecode` type would not exist. The minimum would have to be...