Alexander Demin

Results 12 comments of Alexander Demin

Да, пока этот так. Для полного выключения вижуалайзера надо полность перезагрузить страницу эмулятора. https://rk86.ru/help.html#visualizer

@KonRatt's hack is great, and it works for me in Django 4.0. However, in 4.1, it does not. Django SQL compiler goes into an infinite recursion somewhere. I had to...

Also, the way how I applied the @KonRatt's patch seamlessly without patching [djongo/operations.py](https://github.com/doableware/djongo/blob/master/djongo/operations.py#L10) manually is this -- I added the following snippet to my `settings.py`: ``` from djongo.operations import DatabaseOperations...

It was a cool idea in general, but without the official Django support or active maintenance from the owner(s) it will always be behind, if being developed at all. No...

Another package worked for me without issues: ``` https://www.npmjs.com/package/wordpress-password-js ```

Tested on Oracle OCI linux. Thanks! ![image](https://user-images.githubusercontent.com/84461/201518287-95a1af46-1d77-4fda-99ed-f061039cd77f.png)

Another package worked for me without issues: ``` https://www.npmjs.com/package/wordpress-password-js ```

@Poolitzer Unfortunately, asyncio.run() is not reentrant. I tried to use async PTB in serverless functions (AWS lambda, GCP cloud function, Azure function -- all these frameworks are sync), and PTB...

Sure, there are ways to work around it. However, the main inconvenience I have encountered so far is "RuntimeError: Event loop is closed" when I wrap async calls to PTB...

I understand. "asyncio" in Python, in general, is a valid point going forward. No doubts. However, when you cannot control the comms plumbing and you only provide a callback, being...