Dmitry A. Efimenko

Results 37 comments of Dmitry A. Efimenko

I think this also could be due to older IOS version or a particular browser version. Some of our logs captured the following user agent: > Mozilla/5.0 (iPhone; CPU iPhone...

I really like conversations moving in this direction! Thanks, @yjaaidi. However, the amount of boilerplate to get it all wired up is too much - Use component class-level decorator: `@LinkLifecycleHooks()`...

I totally agree with @RobM-ADP. Just recently we had to do quite an ugly workaround to avoid the `CUSTOM_ELEMENTS_SCHEMA` in our app where we'd introduce a million of directives that...

I locked the version of ts-node to 10.2.1 and that helped

@elliottregan in the package.json in the devDependencies in the version for the ts-node, make sure there is no `~` or `^`: ```json "devDependencies": { "ts-node": "10.2.1" } ```

See [this stackoverflow question](http://stackoverflow.com/questions/10825849/mvc3-action-file-size-limit) to find out how you can assign maxRequestLength per controller action

There are two reasons why I came up with my utility function: * avoid boilerplate associated with creating a new Subject (multiplied by the number of methods that need to...

right. This approach works for cases when you don't need to control the timing of the observable emitting. Recently I was writing a unit test where I actually needed to...

I can't share exactly the use-case since it was work related. However, the approximate use-case is following: Component under test is a file-Upload component that implements ControlValueAccessor. Upon selecting a...