Andrei Cioara

Results 7 issues of Andrei Cioara

Example: Have a plot with 2 time axis, one which shows time in NYC, one which shows time in SF

Type: Feature Request
Cards
Contour
Status: Needs Triage

``` typescript protected _onDatasetUpdate() { this._updateExtents(); this._dataChanged = true; this.render(); } ``` Is misleading. Generally methods starting with on are setting a callback, like in ``` typescript public onMouseDown(callback: MouseCallback)...

Type: Refactor
P1

![screen shot 2015-07-22 at 2 57 02 pm](https://cloud.githubusercontent.com/assets/3248682/8838535/07a3b24a-3082-11e5-9774-acccda61c8e7.png) ^ That is for a single plot rendered. The logged values are the `domain[]` of the x-scale, which as it can be...

Domain: Performance

I use the following under Windows ```js const readdir = require('readdir-enhanced') const result = readdir.sync.stat('C:/') ``` Under my system this fails because some files are protected (for instance C:\pagefile.sys). Should...

**Describe the bug** Background: I have a long running process (days/months) that will dynamically add and remove dirs to watch. I use `.add()` and `.unwatch()` for the two operations and...

In https://github.com/MikeKovarik/exifr/issues/58, I presented a few edge cases in which exifr (probably rightly) returns an error in Node.js. Whether or not it should return an error in those edge cases...

I have a CPU intensive task (task1) and a Network intensive task (task2), which I want to run in parallel. Now, if task1 fails, task2 is not killed, but grunt...