Dana Jansens
Dana Jansens
``` json { "query": { "text": "ptm", "exact_match": false, "open_filenames": [], "current_filename": null, "debug": true, "max_hits": 100 }, "result": { "hits": [ [ "/usr/local/google/home/danakj/s/c/src/third_party/WebKit/Source/WebCore/inspector/front-end/CompilerScriptMapping.js", 5.8 ], [ "/usr/local/google/home/danakj/s/c/src/third_party/WebKit/Source/WebCore/inspector/front-end/DebuggerScriptMapping.js", 5.7 ],...
Choose "manually select settings" which opens the dialog of all the categories. The page is not scrollable, but is a dialog like 2000px tall. You must resize your window to...
The new cgmath has some nice helpers added. The CHANGELOG.md specifies a breaking change however: https://github.com/rustgd/cgmath/blob/master/CHANGELOG.md > Breaking: Quaternion memory layout changed to [x, y, z, w]. The From and...
The build.rs script will use the C preprocessor to pull the API level out of C headers by default. But for build systems that wish to control each build step,...
Found this here: https://chromium-review.googlesource.com/c/chromium/src/+/4087043/4//COMMIT_MSG#26 The `AR` env var can override the tool: https://github.com/rust-lang/cc-rs/blob/0e51f6d8a05548bd9991bfd8184b45b77b261a17/src/lib.rs#L2651-L2653 However the flags passed to it include "-nologo" and `-out:` which then fails with invalid flag. https://github.com/rust-lang/cc-rs/blob/0e51f6d8a05548bd9991bfd8184b45b77b261a17/src/lib.rs#L2107-L2111...
hdoc supports (some of) doxygen syntax, which makes sense. But instead, I would like to write documentation in the syntax of Rustdoc, which doesn't require a lot of keywords. Instead...
Static methods disappear into the list of instance methods. https://docs.hdoc.io/danakj/subspace/r3AD4D4163C31005F.html It would also be really nice to separate constructors and operators out, and maybe even provide them in a more...
Here's a class `f32`: https://docs.hdoc.io/g/subspace/r603874E574DC6453.html It has a ton of static and instance methods declared in macros: https://github.com/chromium/subspace/blob/main/num/float.h#L30-L31 However the documentation omits them all. The same is true for other...
it actually ends up crashing lld-link, but the errors come first, so I think it's also doing something wrong. I tried with and without `used_linker` and get the same thing...