Jost Triller
Jost Triller
I am using Mozilla Firefox 93.0 (64 bit) for Manjaro Linux. This is the error I get from the ctrl+shift+k console, after I hit reply to some post, then select...
@dom96 It seems like firefox addons like Grammarly or [languagetool](https://languagetool.org/) are part of causing this issue. If I disable languagetool (I don't have Grammarly installed), this problem doesn't happen. [Here's...
Yes, that seems like a better solution.
Likely related, the following example also doesn't work: ```nim import std/[streams] static: var strm = newStringStream() strm.write "" ``` Output: ```bash Hint: used config file '/home/tsoj/.choosenim/toolchains/nim-#devel/config/nim.cfg' [Conf] Hint: used config...
> @tsoj Hi, I cannot reprocude the example listed I use this C compiler: ```bash tsoj@tsoj-desktop /tmp> gcc --version gcc (GCC) 14.0.1 20240411 (Red Hat 14.0.1-0) Copyright (C) 2024 Free...
Also possibly related to https://github.com/nim-lang/Nim/issues/21801
I can't exactly remember what I did, but I think it was similar to what you did. However, as this library isn't really active anymore and as there are still...
I would suggest using [python chess](https://pypi.org/project/python-chess/) which supports easy [pgn parsing](https://python-chess.readthedocs.io/en/latest/pgn.html). It seems like this library isn't maintained anymore.
```go Harry: type = { operator(): (this, i: int) -> int = 123 + i; } Spiderman: type = { operator*: (this) -> Harry = Harry(); operator*: (this, i: int)...
The simple fix would be to make the private member [`_value`](https://github.com/hsutter/cppfront/blob/c618ed507573e935d351b2918a6f1121a6e5bb5c/source/reflect.h2#L1142) of the enum class into a public member (perhaps named `raw_value`). This would of course come with the downside...