Libretro vs MAME romset mapping

Libretro Core NameMAME VersionNotes
MAME (current)LatestAlways requires the matching newest ROM set (e.g., 0.260)
MAME20160.174Good compatibility, supports newer games
MAME20150.160Slightly older, still good coverage
MAME20100.139Very stable, moderate compatibility
MAME2003-PlusBased on 0.78 + backportsEnhanced compatibility, best for Raspberry Pi / low power
MAME20030.78Very common, used in many older builds
MAME2003-Midway0.78 + Midway hacksSpecialized for Midway games (MK, NBA Jam)
MAME20000.37b5Very old, used for very weak hardware only

Fix WordPress update not completing

I tried recently to update WordPress to release 6.3 but it was constantly failing in my setup with nginx/php-fpm7.4.

Easiest way to fix it is to find this part of your site config in nginx:

        location ~ \.php(?:$|/) {
                include snippets/fastcgi-php.conf;
                fastcgi_pass php;
        }

and append it with fastcgi timeout settings:

        location ~ \.php(?:$|/) {
                include snippets/fastcgi-php.conf;
                fastcgi_read_timeout 600;
                fastcgi_send_timeout 600;
                fastcgi_connect_timeout 600;
                fastcgi_pass php;
        }

dietpi fstab network

Here is what I use to mount:

sshfs#[email protected]:/mnt/HD/HD_a2/owncloud /mnt/dietpi_userdata/owncloud_data fuse defaults,allow_other,_netdev,x-systemd.automount 0 0
192.168.0.X:/mnt/HD/HD_a2 /mnt/backup nfs nofail,noauto,x-systemd.automount
//192.168.0.X/USBDisk1_1 /mnt/torrents cifs cred=/var/lib/dietpi/dietpi-drive_manager/mnt-torrents.cred,iocharset=utf8,uid=dietpi,gid=dietpi,file_mode=0666,dir_mode=0777,vers=1.0,nofail,noauto,x-systemd.automount