Let's see how you can use an SSH Tunnel to securely connect to a remote MySQL/MariaDB database server. You can also use it to take backups from the remote server with mysqldump.
Let me show you how to update a site incrementally by making use of MySQL/MariaDB binary logs. Learn how to use the mysqlbinlog/mariadb-binlog utility effectively to replicate changes to a remote database from a local staging area.
How I enabled brotli compression on my Nginx web server. Brotli is a compression algorithm for web that's more efficient than Gzip for compressing HTML, CSS, JS, and other such files.
Learn how to measure WordPress boot time and server-side execution time. Since these figures are unaffected by client-side and network-related issues, it is crucial for knowing whether WordPress, as a software, is slow or fast enough.
Quick sort is an algorithm that implements the divide-and-conquer technique. It is efficient for large arrays, but is unstable. Here is a program written in C that implements it.