websocket98765

Results 27 comments of websocket98765

I'm also experiencing this date inaccuracy, with RAW files based on TIFF. Here is what `exifr` returns ```js DateTimeOriginal: 2022-07-03T20:58:33.000Z, // inaccurate. This time is local, but Z indicates UTC....

The fix may be to adjust the local time by the offset after creating the date object, by adding something like below [after Line 57 in the tiff reviver](https://github.com/MikeKovarik/exifr/blob/6cbf6e921688faf7723e1f2e0b9e672d1f0aa21c/src/dicts/tiff-revivers.mjs#L52) and...

Maybe "hard coded" isn't the best descriptor. A "custom function"? Rheostat for example says "Feel free to write your own as long as it conforms to the shape". It serves...

The Next.js' plugin, [next-optimized-images](https://github.com/cyrilwanner/next-optimized-images), may also provide useful inspiration. It seems to be the most commonly used for NextJS projects.

Still seeing this issue. I built a [demo that shows the problem](https://github.com/timarney/react-app-rewired/issues/429#issuecomment-562961438) that uses an up-to-date, barebones Create React App + react-app-rewired to include this plugin. Is it certain this...

Fixed by two things: 1. updating `algoliasearch` from `3.x` to `4.2.0`. 2. For my custom refinement, I now sort the values before calling `refine(values)`, otherwise the first request (triggered via...

This one is honestly a lot of work to build a demo to repro. Just ignore my OP in this thread, since I identified the cause in the 2nd comment,...

Possible solution would be to have add something like this to the [config](https://github.com/Dan6erbond/sk-auth/blob/4bf8cc9fa025df6e75505142f1aa7be67cdca139/src/auth.ts#L10): ```js cookie: { maxAge: 1234, // jwtExpires and cookie probably should be set the same automatically sameSite:...

@vhscom Rich Harris said in a video that a better env variable story is on the roadmap--so a workaround like this may be sufficient for now. Github Pages supports specifying...