andre2007
andre2007
Is the index.md feature supported as described here? https://github.com/mkdocs/mkdocs/issues/1139#issuecomment-449770285
This sample application cannot be debugged ``` import std.stdio; void main(string[] args) { writeln(args); } ``` I set a breakpoint on the writeln(args) command but the debugger stops on __entrypoint.main()...
I have following sample code: ``` import std.stdio; void test1(string s) { } void main(string[] args) { writeln(args); string[] test = ["aaa", "bbb"]; test1(test[0]); } ``` In Visual Studio I...
For this source code, a break point is set on line 12 (```writeln(args);```). ```d import std.stdio; void test1(string s) { } void main(string[] args) { writeln(args); string[] test = ["aaa",...
For rdkafka.h (https://github.com/edenhill/librdkafka/archive/v1.1.0.zip) this coding is generated ``` extern (C): /import core.stdc.stdio; import core.sys.posix.sys.socket; * Restore indent */ ``` While fails due to the /import. Ubuntu 18.04 with llvm-7, clang-7...
While opening the main window, I want another window on top be opened which queries for some paramters needed for the main window. This could be e.g. login credentials or...
I try to write a websocket client server echo scenario. The server part is working fine now and looks like this ```d /+ dub.sdl: name "server" dependency "arsd-official:cgi" version="6.0.2" +/...
If my understanding is correct, the equivalent to win32 List Box is the ListWidget. But this widget can only be used by setting a specific version. The List Box is...
By adding a file `.github/workflows/test.yml` with this content ```yaml name: Run all D Tests on: [push, pull_request] jobs: test: name: Dub Tests strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] dc: [dmd-latest,...
On a specific request, the server should stop listen and the application should shutdown gracefully. I use a dummy exception to stop the http server. Is there any better way...