Alexander Salykin

Results 9 comments of Alexander Salykin

В моём случае сработало так: ```py vk_session = vk_api.VkApi(login, password) vk_session.http.headers['User-agent'] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:94.0) Gecko/20100101 Firefox/94.0' vk_session.auth() ``` Не уверен, может быть, дело было...

If anyone wants to somehow workaround the problem, take a look at this bash script: ```bash start_time() { hz=$(getconf CLK_TCK) uptime=$(awk '{print $1}' < /proc/uptime) starttime=$(awk '{print $22}' < /proc/$1/stat)...

Hi, Some suggestions: * You can switch to more verbose mode to see what's going on: `npm install -ddd` * Also please make sure you don't accidentally copy node_modules or...

Clean build with `node:13.12.0-stretch-slim` works fine on my package.json. Docker version 19.03.8, build afacb8b7f0 ```bash $ ulimit -all core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited...

[Safety](https://pypi.org/project/safety/) checker detects a [vulnurability](https://github.com/sqlalchemy/sqlalchemy/pull/8563) in slqalchemy==1.4.50. Authors have fixed it in 2.0+ but don't want to fix it in 1.4+. It seems the best way is to make django-postgrespool2...

+1 To access to last run time we should invent some methods - to store it in another o2o model; to inherit from PeriodicTask to redefine `save` method; and so...

Found the extension at this link: https://chrome-stats.com/d/ejdgfhecpkhdnpdmdheacfmknaegicff. I tried the extension and it works fine.

In case of a chain `CA` -> `Leaf cert` where CA is unavailable next code works fine: ```py import requests import ssl import urllib3 class CustomSslAdapter(requests.adapters.HTTPAdapter): def __init__(self, ssl_context=None, **kwargs):...