Mustafa Haddara
Mustafa Haddara
`import root from 'react-shadow/emotion` is super useful, but for my use-case I'd like to be able to pass in a custom `key` to the `createCache` call [here](https://github.com/Wildhoney/ReactShadow/blob/af122b1a587969e4ea246baf1ec09b058d0fa9fe/src/emotion/index.js#L12). I can imagine...
Fixes #2457 As per the discussion on that issue, this will need to wait for the next major release.
In [eslint-config-airbnb-base/rules/imports.js](https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/imports.js#L26), `import/ignore` is set to ignore `node_modules` and a number of non-js files (coffee, css, etc.) Ignoring `node_modules` means that none of the lint analysis can happen against external...
I'm trying to read the data off the Nunchuk but failing...I feel like there's some initialization function that I'm not calling or something like that, because the sample scene works...
## Which problem is this PR solving? The Fetch and XHR instrumentations expose `http.response_content_length` attributes but do not expose `http.request_content_length` attributes. This PR adds the `http.request_content_length` attributes to outgoing requests...
While working on #435, I got stuck on initial setup because I was using node 8 and something in the dependency tree didn't like that. Switching to node 14 solved...
I've got a tiny Android application that uses the opentelemetry API, including [their okhttp instrumentation](https://github.com/open-telemetry/opentelemetry-android/blob/main/instrumentation/okhttp3/README.md). This instrumentation defines 2 bytebuddy plugins (linked above and reproduced here): ```java public class OkHttpClientPlugin...
### What happened? ## Steps to Reproduce We got [this bug report](https://github.com/honeycombio/honeycomb-opentelemetry-web/issues/552) on the Honeycomb web SDK about a build error with a particularly strict compiler (closurescript). Reproduction repo: https://github.com/msolli/honeycomb-otel-repro...
I have a span processor that reads from some other resources in my application and there are situations in which that span processor needs to be re-initialized. This requires me...