AbyxDev
AbyxDev
I found a temporary workaround on Linux: Enable swap (I used [this article](https://tecadmin.net/add-swap-on-ubuntu-18-04/)). Language server ran with no issues. I fallocated 4G.
I found that importing `System.Media` was at least not an error, but I have no idea what this is referencing; however I doubt it's correct: ```py >>> import clr >>>...
Yeah, that seems right to me. Something like ```py >>> import dis >>> class C: ... class D: ... def f(): pass ... >>> dis.dis(C) Disassembly of C: Disassembly of...
This came up in the context of ORMs - e.g. something vaguely like ```py T = TypeVar('T', bound=type) P = ParamSpec('P') # Attribute[T] = table field of type T def...
> Mediawiki is VERY complex stuff At least this is just lexing, rather than parsing - parsers run into problems when templates are involved, e.g. what happens when Template:Bold contains...
@apple502j Worked for me: ```python >>> r = s.post('https://scratch.mit.edu/accounts/login/', json={'username': 'TemplatesFTW', 'password': password, 'useMessages': True}, headers={'Cookie': 'scratchcsrftoken=' + s.cookies['scratchcsrftoken'], 'X-CSRFToken': s.cookies['scratchcsrftoken'], 'Referer': 'https://scratch.mit.edu', 'Origin': 'https://scratch.mit.edu', 'X-Requested-With': 'XMLHttpRequest'}) >>> len(r.text) 103...
I'm not so sure, let me test without explicit Cookie
@towerofnix the problem here is that apparently the Python Requests library doesn't send cookies with Session requests like it should.
The Transifex org is not official (yet) and shouldn't be considered a second way to submit translations. @Ascor8522 please don't create things with official names if you are not the...
I've edited the OP after new information has come to light. I don't know enough about any translation platform to be anything but indifferent, though in my hazy memory I...