Reed Weichler
Reed Weichler
No guarantees though.
Actually, I think I could get away with using the OpenGL backend. It's still supported on macOS/iOS, and if support is ever removed, there's always [ANGLE](https://github.com/google/angle), which will always continue...
Workaround: `NODE_OPTIONS=--openssl-legacy-provider yarn install`
I did some digging and found [this stackoverflow post](https://stackoverflow.com/questions/69692842/error-message-error0308010cdigital-envelope-routinesunsupported/73465262#73465262) which seems to indicate that webpack was using md4 for hashing (i assume this is for incremental builds) and apparently they...
Actually I'm not entirely sure if LuaJIT's behavior is strictly better since this returns true in LuaJIT: ```lua print(0xfffffffffffffffffffffffffffffffffffffffff == 0xffffffffffffffffULL) ```
Checked the docs and yea there's a discrepancy here: https://github.com/q66/cffi-lua/blob/master/docs/semantics.md?plain=1#L396-L398 > - **64-bit integer comparison**: two `cdata` number or a `cdata` number and a Lua number can be compared. The...
Thanks. That is unfortunate. I guess in order to get `boxedInt == luaNumber` to behave like one would expect, you would have to do something like `boxedInt >= luaNumber and...
I suppose that works too. I forgot why I didn't go with that approach.... it's been a while.
According to ChatGPT, the answer is yes, `row_desc` guaranteed to be non-nil at that point. https://chatgpt.com/share/690377af-4438-8003-ac51-4da2701e7413 > Short answer: Yes—for any query that returns rows, PostgreSQL guarantees you’ll see a...
Just implemented it. Works perfect. I just realized though, one change I need to make is, the callback should be able to cancel the query, so... something like this: ```lua...