Nei Cardoso de Oliveira Neto

Results 30 comments of Nei Cardoso de Oliveira Neto

That stuff with the database is all with @LameLemon. In my fork, I implemented the feature of "resuming unfinished downloads" and "not redownloading everything everytime" without using it at all.

@baraa272 hahah I'm sorry. It was indeed broken. I just fixed it. Since we don't have a test suite yet, sometimes new features introduce bugs. Maybe we should create some...

I created a gitter.im community for us: https://gitter.im/archive-chan/community

>it would be nice from you if implement skip already downloaded files on here (i mean original repo lol) If you take a look at #2, you'll see I actually...

Sounds pretty good. Might I recommend checking if the media file is already downloaded with: ```python from pathlib import Path media_file_path = Path(f"{reply['filename']}{reply['ext']}") if params.preserve and not media_file_path.is_file(): # download...

>As for the text, I was thinking of the just overwriting the HTML file on each iteration. What if a mod deleted one of the posts? Would we now lose...

I thought a bit more about my suggested way of checking if a file has already been downloaded. Since it only checks if the file path exists, we could end...

So, huge bug found, because we were saving the media files with their original file names, anytime a thread had more than one media file with the same name, only...

>I think the hash would probably be the best option Here it looks like you want option `c`. >we can preserve the file name to the original But here it...

So, I managed to reproduce 4chan's base64-encoded binary md5 hash with `openssl md5 -binary $filename | openssl base64`. Next step is choosing how to deal with the filenames. I'm thinking...