Isaac Nygaard
Isaac Nygaard
When a user doesn't provide a timezone in a string, I would like to assume GMT/UTC timezone. Currently, if a timezone is not provided, it is assuming my local computer's...
How about having another `onSize(limit)` promise, which resolves when size
Test case: https://jsfiddle.net/azmisov/zm7Ls1L7/ You can see two tooltips overlapping. The tooltip is set in the `iconCreateFunction`. Not sure if this is really a bug. I'm guessing you reuse the older...
Would be nice to add this: ```javascript // returns +/-1 giving the number's sign, except when value is zero, in which +/-0 is returned P.signum = function () { return...
Perhaps I simply cannot find it, but it appears min-vid can only be opened from the UI controls overlayed on enabled websites. Since min-vid keeps track of your old queue...
I know the `vw` and `n` values for bars are not officially released, but from the days+tickers I have downloaded, 86 thousand have at least one bar with zero for...
The in the boto3 docs it says Session objects are not thread safe. [See here](https://github.com/boto/botocore/issues/1246#issuecomment-832971185), which mentions clients are threadsafe once created, but not session or resource. I was wondering...
Typically, you'll have a source structure like so: "src/package/path/MyClass.java". When you add `src` to the list of sources, it will include the contents, e.g. `package.path.MyClass`. That is sensible. There is...
I have a project with an "unmanaged folder", and it gets an autogenerated name when first opened. Something like: "myproject_380e1993". Is there a way to configure this name explicitly? When...
```js const grammar = ` root ::= ws 'x' ws ::= #x20* `; const parser = new Grammars.W3C.Parser(grammar, {debug:true}); console.log(parser.getAST('x')); console.log(parser.getAST(' x')); ``` I'd expect both cases to work, but...