Using AutoHotkey to Emulate macOS Cmd + ` Window Switching on Windows OS

As a long-time Windows user, I experienced the convenience of Cmd+` after getting a MacBook Air M1. Especially when switching between different windows within the same application, this shortcut is incredibly smooth. For Windows users, this feature isn't as straightforward—typically, you need to use Alt+Tab to switch between all applications, without limiting it to just a single app. This guide will show you how to achieve a similar operation using AutoHotkey 1.0, allowing you to quickly switch between windows within the same program. Download and Install AutoHotkey 1.0 Visit the AutoHotkey Website: Open your browser and go to the AutoHotkey... To read more, click here

Import data to PowertoysRunTOTP from Aegis Authenticator

This article will introduce how to export plain JSON data from Aegis Authenticator and convert it into the format required by PowertoysRunTOTP, helping you import two-factor authentication (2FA) accounts from Aegis into the PowerToys Run TOTP extension. Warning: Do not keep plain JSON files on your computer for an extended period. It is recommended to store them in encrypted storage, such as pCloud Crypto, or use 7zip to compress and set a secure password to protect the files. Step 1: Export Plain JSON from Aegis Authenticator First, export your 2FA account data from Aegis Authenticator. Ensure the exported file is... To read more, click here

WordPress Docker Maintenance and Deployment Notes

Docker Compose If you're worried that using latest will pull new versions that could break your setup, you can specify a suitable version number. version: "4.5" services: tsumugi-db: image: mariadb:latest volumes: - tsumugi-mariadb_data:/var/lib/mysql restart: always environment: MARIADB_ROOT_PASSWORD: your-mariadb-root-pwd MARIADB_DATABASE: your-wordpress-db MARIADB_USER: yourDbUserForWp MARIADB_PASSWORD: yourMariaDbPassword tsumugi-wordpress: depends_on: - tsumugi-db #links: # - mariadb:mysql image: wordpress:latest volumes: - tsumugi-wordpress_data:/var/www/html - tsumugi-wordpress_php:/usr/local/etc/php restart: always environment: WORDPRESS_DB_HOST: tsumugi-db WORDPRESS_DB_USER: yourDbUserForWp WORDPRESS_DB_PASSWORD: yourMariaDbPassword WORDPRESS_DB_NAME: your-wordpress-db zunda-db: image: mariadb:latest volumes: - zundamon-mariadb_data:/var/lib/mysql restart: always environment: MARIADB_ROOT_PASSWORD: some-mariadb-root-pwd MARIADB_DATABASE: zundamon-wordpress MARIADB_USER: zundamochi114514 MARIADB_PASSWORD: some-mariadb-password zundamon-wordpress: depends_on: - zunda-db image: wordpress:latest volumes: - zundamon-wordpress_data:/var/www/html - zundamon-wordpress_php:/usr/local/etc/php restart: always... To read more, click here

How to Fix the Black Screen Issue When Switching to Desktop Mode on Steam Deck

When you encounter a black screen while attempting to switch to Desktop Mode on your Steam Deck, it can be frustrating. However, there is a simple solution to help resolve this issue. Here is a step-by-step guide to solve the problem: Solution Switch Accounts: First, log in to a new Steam account through the game interface. Use this new account to switch to Desktop Mode. If the switch is successful, delete all files (excluding folders) located at Home/.local/share/kscreen and Home/.local/share/kscreen/outputs. For safety, you may choose to cut and back up these files to another location before deleting them from the... To read more, click here

One-Click Solution to Transfer iOS Illustail Images to Synology NAS

Requirements and Target Audience Users of Illustail iOS, or people who frequently download images from Booru and Twitter. Have a Synology NAS. Insufficient storage space on iOS devices. What is Illustail Illustail is an iOS app designed for browsing, downloading, and searching images on Booru sites. You can use it on iPhone, iPad, or Mac, and easily save images to your device or cloud storage. Illustail supports various image sites, including TINAMI, Danbooru, Tumblr, Twitter, Misskey, and Mastodon. It also comes with an iOS widget that can be used to decorate your home screen. In short, Illustail is a tool... To read more, click here