Vladimir Panteleev
Vladimir Panteleev
Sorry for the quick & dirty report, just wanted to leave some feedback as I don't have much time to spend on this. What was advertised: > Currently there are...
Currently this is a static array: https://github.com/flightlessmango/MangoHud/blob/425b98ae9a21b672d2e50338b52ef7efbe384b91/src/overlay.h#L59 Graphs are then drawn using `ARRAY_SIZE` of that array. Would be nice if this limit was configurable instead of hard-coded to 200. Use...
Commit 06e111c229331e152656e1840646a862a4410503 removed the UUID from the beescrawl.dat file name, but this change was not also applied to the wrapper script. Do that now.
The work-in-progress tree-sitter grammar for the D programming language that I am working on currently has [198 conflicts](https://github.com/cybershadow/tree-sitter-d/blob/master/grammar.js#L23-L270). Perhaps some of these should not be listed there, and instead should...
Inlined SVGs may have IDs which are not globally unique. Patch the tree of the inlined images and add a prefix to all IDs, to make collisions much less likely....
```d struct S { int field; } void fun() { S ps; auto x = ps.fie| ``` Cursor at pipe should complete `field`. Note that adding final `}` unbreaks this.
This implements a suggestion from a previous PR: https://github.com/dlang/dlang.org/pull/3033#discussion_r663481518 We can't describe (within the grammar) that `Delimiter` and `MatchingDelimiter` must match, nor that they can't appear within the line, but...
Sometimes, when messing with various toolchains / debugging linking problems, it's useful to look at the object files generated by the compiler. Currently, rdmd unconditionally places them in a temporary...
This mode is automatically enabled iff: - The password field is disabled - Normal login is disabled - Automatic login is enabled In this mode, the login hash cookie acts...
Currently, in a typically configured site using HashOver, the following URLs will work and return the corresponding on-disk files: - http://example.com/hashover/comments/metadata/latest-comments.json, which contains a list of page slugs. If there...