Alex Mayer

Results 9 comments of Alex Mayer

That is interesting. I'm guessing you are pushing from a file system that does not support permissions to one that does?

Not sure if this will play into how we update the documentation but https://github.com/alacritty/alacritty/commit/3c3e6870dedad56b270f5b65ea57d5a6e46b1de6 was added recently and will allow importing additional config files to overwrite settings in the main...

The last commit to this project was 2 years ago also. I dont believe anyone is openly maintaining the project. The current code is pretty solid. I use it daily...

I agree with the btpd.conf option

I believe you can remove the torrent, move the files to the new location, then add the torrent back with the new folder. I have done it this way and...

I believe the issue is that ".git" is in .dockerignore. When `COPY . .` is run, the files in .dockerignore are skipped. Since the .git directory isn't copied into the...

While I agree that the filename being part of a flag and the URL may be redundant, I think using the long form of the flag in examples makes more...

I'm not familiar with [aiohttp](https://docs.aiohttp.org/en/stable/), but I got this example working pretty easily. ```python import aiohttp import asyncio async def main(): async with aiohttp.ClientSession() as session: files = {"file": open("data.txt",...

What queue backend are you using? It sounds like a message reservation is running out and the queue is handing out the job a second time.