Mikk

Results 6 comments of Mikk

@Pastor111, I have a piece of code for it: ```c# /// /// Ray-trace and get closest hit /// /// Ray emitting position /// Ray emitting angle /// Maximum measurement distance...

I've used it for a server implementation for a while now and I would say it's easy to grasp the idea when you look at the [MS LSP specification](https://microsoft.github.io/language-server-protocol/) in...

Found the cuplrit with JustDecompile. Compiler create constructor of class itself with "original" argument: ```csharp protected SomethingUseful(SomethingUseful original) { } ``` Maybe Microsoft DI extensions or DryLoc need a fix?

Casing helps, but not completely. This works: python main.py downloader --classes Adhesive_tape .... This works: python main.py downloader --classes classes.txt .... classes.txt contains: Adhesive tape This doesn't work: python main.py...

Hi @FireSon The thing is that I don't yet want to publish the whole robot code because it is a competition robot and that would give away the advantage. That...