Victor Berchet
Victor Berchet
Currently the lexer in change detection uses `StringWrapper.charCodeAt()` - in Dart it returns `s.codeUnitAt()` which supports UTF - in JS it returns `str.charCodeAt()` which does not support UTF
in `@Compoent`, schemas can currently only use the following values: - `CUSTOM_ELEMENTS_SCHEMA` -> allow any `custom-tag` with any property, - `NO_ERRORS_SCHEMA` -> allow any tag and any property We need...
I think that the moving average could be implemented much more efficiently by only adding the new point and removing the old from a long running sum instead of recomputing...
It would be nice to be able to strip (or tree shake) the debug/test geojson code especially to reduce the payload for websites. For tree shaking the debug code should...
TL;DR do no use **strict** [SameSite cookies.](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite) From MDN: > Strict SameSite Cookies will only be sent in a first-party context and not be sent along with requests initiated by...
Everything is fine when I set maxAge to a number. As soon as I set `maxAge` to `"session"` I get a REDIS error: ``` ReplyError$1: ERR value is not an...
See https://github.com/koajs/generic-session/issues/135 Koa sessions stops working when the code is minified with terser 4.7.0. See the linked issue for more details. _Sorry not to put more details here. I might...
I discussed the form package with @haijian-vaadin on the demo repo and @vlukashov on twitter. I have tried the framework in a Typescript project without Vaadin backend. It's quite powerful....
### Description of the feature Context: - I am using the form framework in a standalone TS project (no flow). - relates to vaadin/hilla#290 I would like to be able...
The endpoint [`/live/`](https://github.com/skylines-project/skylines/blob/master/skylines/api/views/tracking.py#L97) returns a 404 if any of the id in the list is not found. That is `/live/1,2,3,4,10` will return a 404 if 1, 2, 3, 4 exist...