Damian Kaczmarek

Results 192 comments of Damian Kaczmarek

Thanks for sharing the code sample. While it may be zero-copy for Node.js, the resulting buffer is still marked as untransferable. To address this without introducing a copy, we could...

I think Node.JS behavior is both correct and expected — digging into `node_buffer.cc`, I think the behavior here does relate directly to how memory ownership is tracked for external ArrayBuffer...

Also experiencing this problem and the workarounds above don't help.

We're using this workaround: ```js { test: /sharp\/lib\/sharp\.js$/, loader: 'string-replace-loader', options: { search: 'sharp = require(path)', replace: existsSync(resolveModuleDir('sharp', `./src/build/Release/sharp-${process.platform}-${process.arch}.node`)) ? `sharp = require('../src/build/Release/sharp-${process.platform}-${process.arch}.node')` : `sharp = require('@img/sharp-${process.platform}-${process.arch}/sharp.node')`, }, }, ```

> [@Rush](https://github.com/Rush) [@Abraham-Flutterwave](https://github.com/Abraham-Flutterwave) Don't forget to vote on this issue. I'm not expecting it to make a big difference, but not voting definitely won't help. I am happy with my...

> The existing advice in the documentation to use Webpack's `externals` configuration remains. > > https://sharp.pixelplumbing.com/install/#webpack > > Please remember that Webpack is a code bundler and not a code...

Perhaps we need to update dependencies like nan. PRs welcome.

Well. After using Angular for 2 years I finally have a use case for using lazy modules .. only to discover they don't get unloaded when navigating away from a...

I’m considering adopting Listmonk, and the addition of this feature (dynamic subscriber lists) would make it an easy decision to switch. Example use case: localized newsletters and user selecting their...

What are your workarounds? https://github.com/knadh/listmonk/issues/2693 I think this is one of the workarounds: > A current workaround is to call the Send test email API endpoint on an inactive or...