i30817
i30817
Makes total sense. I usually use savestates as a soft substitute when i need to get information much later, but screenshots would be safer. BTW; if the core ever gets...
Also i'd like to ask 'what accents are unacceptable' if the 'grave accent' was supposed to represent all latin accents. Is something like this python code viable to transform a...
I did one for users too: https://github.com/i30817/libretrofuzz I tested it on the 'Retroplay whdload' and scummvm sets (with the names from the ini, with that other script) and it chose...
Also without permissions in windows, git pull of symlinks that are on the bare github repo are 'text' apparently, when it's supposed that git will turn them into the local...
I still think a check like this is a good idea, but the actual problem was that the application the person was using (github desktop) apparently is very bad and...
There was a better way to fix it. When you notice that the git pull had broken symlinks, you can apparently just do `git reset --hard HEAD` to change the...
[This is a bug in the github application.](https://github.com/desktop/desktop/issues/14937) Try to remove the file before replacing it, or doing it in two commits, ie: removing; commit, adding, commit. I think that...
I have absolutely no opinion but i also think that symlinks lower 'accessibility' both because of this bug and because changing a symlink target is tricky (if you rename a...
But also i will comment that one of the main reasons for symlinks is to try to prevent carelessness of people updating images, and not replacing all copies of the...
I tested it out and the command to remove symlinks that works is `find . -type l -readable -execdir bash -c 'cp -f --remove-destination "$(readlink -nv "$0")" "$0"' "{}" \;`...