Darius Tan

Results 4 comments of Darius Tan

![dark_mode_bugs](https://github.com/pytorch/pytorch/assets/34214817/9b01c2a9-9b1c-4b91-bd2e-8cff4e3fcef8) Its not just that the white sidebar that is rendering incorrectly in dark mode, the scrolling / auto stopping portion of the sidebar seems broken too. It could be...

@FrappuccinoCaramel I just faced the same problem. You can replace the following: original [get_date function](https://github.com/holwech/WhatsAppBackupFixer/blob/75769cf1201f58d9c7ded06c51cf316824f912c9/fix_exif.py#L14) to: ``` def get_date(filename): date_str = filename.split('-')[1] date_datetime = datetime.strptime(date_str, '%Y%m%d') date_str = date_datetime.strftime("%Y:%m:%d %H:%M:%S")...

@FrappuccinoCaramel here's the full script that worked for me! I added more filetypes (audio, docs, stickers) as i realised WhatsApp's naming convention for them are similar too. ``` from datetime...