On Ubuntu, install the IBus Chinese engine:
sudo apt update
sudo apt install ibus-libpinyinA simple Nautilus script to add an "🔷 Open in VS Code" option to the right-click menu.
This works without installing any extra extensions or Python packages.
| #!/bin/bash | |
| DATE=$(date +"%Y%m%d") | |
| BACKUP_DIR="/backup/mysql" | |
| BACKUP_ARCHIVE_DIR="/backup/mysql_archive" | |
| LOG_DIR="/backup/backup_logs" | |
| MYSQL_USER="backup_user" | |
| MYSQL_PASSWORD="tr -cd 'a-zA-Z0-9' </dev/urandom | head -c '65' ; echo '@'" | |
| MYSQL=/usr/bin/mysql | |
| MYSQLDUMP=/usr/bin/mysqldump |
If you’ve ever started a long-running task—like a database migration— only to have your terminal or SSH connection drop, screen is your lifesaver.
It keeps processes running in the background so you don’t have to babysit your terminal.
Start a named session so you can easily reattach later:
Download Postman from: Postman x86_64
Extract it:
tar -xzf ./postman-linux-x64.tar.gz/optTo prepare your external SSD for use in Linux, you can use the following tools:
lsblk or fdisk -l to identify your external SSD device.fdisk or parted to create and manage partitions on the SSD.mkfs.ext4 to format the created partitions with the ext4 filesystem.gparted.