The Manual

Reset Wordpress Password via SQL

if you have access to the mysql database you can recover account access by resetting the password using the following SELECT ID, user_login, user_pass FROM wp_users; UPDATE wp_users SET user_pass = MD5('NEWPASSWORD') WHERE ID=1 LIMIT 1;

Install Rust on Docker

The offical way of installing rust is to call a shell script from a remote host as follows: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh As documented here: https://www.rust-lang.org/tools/install, however, I'm not comfortable trusting that script, and

Export ZFS Volume to iSCSI

To export a raw block volume from ZFS for use with iSCSI, you can use the zfs command to create a block device and then use the tgtadm command to create an iSCSI target and add the block device as a logical unit (LUN). Here's an example of

Copy Multi-Arch Docker Images

Using Skopeo DESTINATION_URI=xxxxxxxxxxx.dkr.ecr.us-west-2.amazonaws.com/mongo:6 SOURCE_URI=docker.io/mongo:6 AWS_PROFILE=profilename # Login skopeo to your registry aws ecr get-login-password --profile=${AWS_PROFILE} | skopeo login -u AWS --password-stdin $(echo $DESTINATION_URI | cut -f 1 -d '/') # Login your docker to

MySQL DB sizes in GB

SELECT table_schema AS "Database", SUM(data_length + index_length) / 1024 / 1024 / 1024 AS "Size (GB)" FROM information_schema.TABLES GROUP BY table_schema; +--------------------+------------------+ | Database | Size (GB) | +--------------------+------------------+ | db1 | 311.224670410156 | | db2 | 149.395034790039 | +--------------------+------------------+

The Manual © 2026