andre2007

Results 167 comments of andre2007

I think I found a way to wait for a specific amount of time for input. This seems to work in the sample application: ```d void websocketEcho(Cgi cgi) { assert(cgi.websocketRequested(),...

`recvAvailable` timeout works by passing timeout variable to `Socket.select(check, null, null, timeout);`. Socket.select allows to wait an infinite amount of time, by passing `null` as timeout value. Unfortunately, I cannot...

I got this scenario working in the IntelliJ D plugin but also failed for Visual Studio Code so far. I created 2 batch files and set them as dub /gdb...

@WebFreak001 I think the scenario is working if ```sourceFileMap``` would be supported similiar like in the C/C++ extension. My assumption is, the missing source file mapping is the reason why...

I validated, debugging with mago-mi is working in IntelliJ (with D plugin). mago-mi (gdb-mi) console output from IntelliJ: ```12:43:16.288 0> C:\D\tools\gdb-mago-mi.exe --interpreter=mi2 12:43:16.311 1> -file-exec-and-symbols C:/D/projects/sample1/sample1.exe 12:43:16.312 2> -break-insert -f...

@AndrejMitrovic Several remarks regarding mago-mi: - today a bug was solved by Rainer which blocked the usage of mago-mi https://github.com/rainers/mago/issues/31 - there was a bug in mago-mi if you start...

Also see here https://github.com/WebFreak001/code-debug/issues/189

As far as I understand dub issue https://github.com/dlang/dub/issues/1530 is related to this pr. Dub has a retry logic if http download is failing. This retry logic only works if HTTPStatusException...

I am not sure whether this minimized is correct, but it shows the problem: ```d import std; void main() { int x; version(CRuntime_Musl) { auto x = "vvv"; stderr.writeln(x); }...

This issue is also related to https://github.com/intellij-dlanguage/intellij-dlanguage/issues/502