Yagiz Nizipli
Yagiz Nizipli
This is a breaking change since we need to update Snuba to use `FxHashMap` instead of `HashMap`. I believe the performance benefits makes this justifiable, but I'm not sure what...
We currently use `rapidjson` and default `json` library to parse/stringify JSON. The alternative library `orjson` is 6 times faster than `json` and 2-3 times faster than `rapidjson`. We (me and...
For certain vsbuild.bat actions, it executes makefile and on PowerShell it was throwing error for me because `uname` doesn't exist. This pull-request doesn't solve all Windows related issues in makefile...
The proposed change correctly splits the positional arguments. Fixes: https://github.com/nodejs/node/issues/52740
`.then` is never called, also the failure function. Therefore unable to continue. `Saved` or `Image cache failed` never written to console. ``` $ImageCacheFactory.Cache([ $scope.latestPhoto + '', $scope.currentUser.profile_picture + '' ])...
The following code takes the upper bound of 170.6666 (which is 171) when UIScreen.main.scale is 3.0 ``` let size = 512 / UIScreen.main.scale let image = Toucan(image: item.image!).resize(CGSize(width: size, height:...
We have enough confidence to say that `orjson` doesn't cause any errors/issues. We can now safely get rid of `json` and `rapidjson` in our repository. Ref: https://github.com/getsentry/sentry/issues/68903
It's been a honor and a privilege to be a Node.js Technical Steering Committee voting member. At the current time, I'm not able to give Node.js the time and attention...
Using the following code on quibble fails ``` import WebhookExamples from '@octokit/webhooks-examples/api.github.com/index.json' ``` ``` Uncaught exception in test/events/github/delete.test.js TypeError [ERR_IMPORT_ASSERTION_TYPE_MISSING]: Module "file:///home/runner/work/api/api/node_modules/@octokit/webhooks-examples/api.github.com/index.json" needs an import assertion of type "json" ›...
Hi everyone! First of all thank you for everything related to testdouble. I'm having some trouble regarding a esm import in a fastify project I've been working on. Here's the...