alllexx88
alllexx88
Спасибо за быстрый ответ :smiley: Думаю, хорошо оставить такую опцию пользователю, по умолчанию выключенную. Тогда функционал расширится, а опцию включат только те, кому это надо. P.S. Кстати, в myhomelib частично...
@PowerBall253 Thank you for your reply! Here's the list of all files in the saves dir: ``` $ find -type f ./999203116 ./remote/DLC1-AUTOSAVE3/game.details ./remote/DLC1-AUTOSAVE3/game.details-BACKUP ./remote/DLC1-AUTOSAVE3/game_duration.dat ./remote/DLC1-AUTOSAVE3/game_duration.dat-BACKUP ./remote/GAME-AUTOSAVE0/game.details ./remote/GAME-AUTOSAVE0/game.details-BACKUP ./remote/GAME-AUTOSAVE0/game_duration.dat ./remote/GAME-AUTOSAVE0/game_duration.dat-BACKUP...
@PowerBall253 It's Git bash, part of [Git GUI for Windows distribution](https://git-scm.com/download/win). No, I haven't modified any of the files, and the saves are fully functional.
I got this sorted out for DS923+ with DSM 7.1. I had to additionally build and load (together with `iptable_mangle`) the following kernel modules: ``` iptable_raw.ko xt_comment.ko xt_connmark.ko ``` Here're...
The proper solution is to build some kernel modules and just use `AllowedIPs = 0.0.0.0/0`, on DSM 7.1 (DS923+) I needed to provide `iptable_raw.ko`, `xt_comment.ko` and `xt_connmark.ko`. The good news...
Hi @bruth Thank you for your reply! We set up a connection, and after a period of inactivity, the connection ends up being closed, without us doing this explicitly, and...
A reproducer code: ```python import asyncio import nats from alive_progress import alive_it from time import sleep nats_url = "localhost:4222" class NATSPublisher: def __init__(self): self._nc = None self._loop = asyncio.new_event_loop() self._loop.run_until_complete(self.__build())...
You're welcome, and thanks for the tip, @wallyqs !
@cudawarped I just tried code from your PR, and it works great! I'm using it with this helper function I wrote: ``` import cv2 import cupy as cp def cv_cuda_gpumat_from_cp_array(arr:...
I know the question below is very old, but the solution might help someone who found this issue by googling. @Michelvl92 > Unfortunately, it is not working. > > My...