Bogdan Luca

Results 10 issues of Bogdan Luca

Reproducing sandbox: https://codesandbox.io/s/8w24l?file=/index.js To reproduce: check / uncheck a tree item, the `console.log()` from `index.js:55` will output immediately in Chrome's console, will block the preview for ~30s, and then will...

Consider this code: ```js const testPromise = new Promise((resolve) => setTimeout(() => resolve(42), 1000) ); testPromise.then(() => console.log(testPromise)); ``` Expected output (from Chrome's console): ![image](https://user-images.githubusercontent.com/2083930/119831504-02a4dd00-bf06-11eb-8763-0791eda21fe2.png) Actual output: ![image](https://user-images.githubusercontent.com/2083930/119831676-2e27c780-bf06-11eb-9700-daa810bd9632.png) Reproduction sandbox:...

Brace yourselves, issues from CodeSandbox incoming! 😃 Consider this code: ```js const testSet = new Set(); testSet.add(1); testSet.add(2); testSet.add({ foo: 'bar' }); testSet.add([3, 4]); console.log(testSet); ``` Expected output (from Chrome's...

Consider this code: ```js console.time("merge"); for (let i = 0; i < 100000; i++) { merge(obj, a); shallowEqual(a, b); } console.timeEnd("merge"); ``` Expected output (from Chrome's console): ![image](https://user-images.githubusercontent.com/2083930/119806977-5e15a180-beeb-11eb-9b7b-a355d26bf7fe.png) Actual output:...

Under macOS `duration_segment` fails with ``` -bash: (1638285455N: value too great for base (error token is "1638285455N") ``` This is because macOS's native `date` doesn't support `%N`. I tried installing...

## TL;DR Proposal It would be nice to have an `availabilityZone?: pulumi.Input` in `ClusterNodeGroupOptions` that does the same thing I did below: ## Use case Because ELB volumes can only...

kind/enhancement

### What happened? Running a [BuildKit rootless](https://github.com/moby/buildkit/blob/master/docs/rootless.md) pod on an Ubuntu 20.04 node with `cri-o` 1.23 using a default configuration doesn't work as expected. The pod spec I use (from...

kind/bug
lifecycle/stale

### Is there an existing issue for this? - [X] I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues - [X] I have reviewed the documentation https://docs.sentry.io/ - [X] I am using...

Meta: Help Wanted
Type: Improvement
Package: core

This makes the repository work as a container sandbox inside CodeSandbox - see my fork here: https://codesandbox.io/s/github/lbogdan/vue-next-webpack-preview .