Guillaume VARA

Results 41 comments of Guillaume VARA

Bump again. Not being able to get the "Content-length" header on gzip'd files makes useless my beautiful download progress bar :(

With Next.js, you can use some kind of a workaround by disabling SSR explicitly https://nextjs.org/docs/advanced-features/dynamic-import#with-no-ssr ``` const Wheel = dynamic( () => import('react-custom-roulette').then(mod => mod.Wheel), { ssr: false } )...

This would be a great feature to add ! Looking forward to it :)

> _methodChannel.invokeMethod('updateScanWindow', {'rect': data}); > > This invokes native methods inside kotlin and switf where we have updateScanWindow methods but web doesn't. @juliansteenbakker would @ribeiro-gabriel proposition to opt-out conditionally of...

Bumping this. Working in a context of a Web3 app, storing users public keys as Uint8list will be more efficient and would save us from the hassle of parsing bytes...

> @Amphaal Thanks for sharing your use case! To help us prioritize issues, please thumbs up the first comment if interested! > > Edit: note that the objectbox package does...

Many thanks @muhammadsaddamnur for this PR ! I wish this repo was still maintained tho...

Hi, Have you tried to update boost Asio to 1.13.0 ? Looking at their most recent patchnote, some issues related to TLS disconnections have been fixed.

Are you trying to send big chunks of data to your server that might take longer than the default websocketcpp timeout period ? Looking at your log, there might be...