Chris Davies
Chris Davies
In my case, I had misconfigured my local postgres server. Here's the fix: Find the `pg_hba.conf` location in psql: ```sql SHOW hba_file; ``` Edit it... ``` sudo -u postgres vim...
Looks like bpkdf2 is similarly slow (probably for the same reason): Running the following via time `time bun ./password.mjs` produces these times: ``` bun: 1.319s node: 0.136s ``` Example code:...
Getting the same behavior.
I'm interested in gracefully handling process exit. Right now, I noticed that some SQLite data fails to persist unless the database is gracefully closed. I'd like to do something like...
I built something similar to hooks for a standalone library I built recently. It was pretty handy, so I decided to bundle up the hooks functionality into its own library...
OK. I published `0.0.3` of [xferno](https://www.npmjs.com/package/xferno). It now works almost identically to React hooks. You no longer need to wrap your functional components in an `xferno` call: ```js import {...
I have the same concern. I put together two (very simple) perf files `perf-raw.jsx` and `perf-hooks.jsx`, which I manually use for testing perf between the hooks implementation and the equivalent...
Any progress on this? I'm seeing the same behavior, and it'd be really nice to avoid it. As it is, I have a workaround, which is to turn spellcheck off...
Hey, thanks! There's another discrepancy that I found yesterday, too. My C# implementation is basically the equivalent of a buffered Go channel, in that writes in my C# code are...
I spent a bit of time tinkering with building this out, but it's partially blocked by #781 In order to implement TLS via SMTP, I need to be able to...