Alexey Svetliakov

Results 91 comments of Alexey Svetliakov

If i understood correctly you need to instantiate Person with name property by somehow calculated dynamically, correct? Yes, you need to use Factory pattern for this. Either create manual factory...

Thanks for letting me know, basically i'm using typings in my other work projects. Regarding huject, i'll probably provide definition to work with just TS module resolve system (i.e without...

Yes, the fix should be: 1. Remove ambient declarations 2. Add "typings" to package.json to allow to work with TS module resolver 3. Optionally add typings.json 2 & 3 could...

The problem is that typescript enums are number based. Consider following: ``` ts enum First { FIRST, SECOND } enum Second { SecondFirst, SecondSecond } engine.register(First.FIRST, 10); engine.register(Second.SecondFirst, 15); engine.resolve(First.FIRST);...

@pyros2097 I've been always avoiding child containers since i thought it's leading to bad design. Also i never encountered that someone was testing requests/responses by unit tests (it's better to...

>I want know from what point that you remove the original implementation Since redis doesn't provide any constraint checks as RD, it's very expensive and time consuming to implement it...

Hello Jason, so you want to use own instance of redis connection? Unfortunately it's not possible now, but i think it's not hard to make a PR for this -...

Github codespaces should support installing neovim binaries to communicate locally within same container. I guess that's not the case currently. Unfortunately there are no other ways here.

@theol0403 That's awesome! Mind to write guide how to do it ? I think we can add `"workspace"` to extension kind then to support this scenario

>and the other two directly download and update from github releases. We can't do it till stable 0.5 release: downloading nightly every time is no-way and keeping single nightly version...