Linux
Understand Vim: The Editor as a Language
The problem with learning Vim is not that it's hard to do—it's that you have to keep doing it. Daniel Miessler
Linux
The problem with learning Vim is not that it's hard to do—it's that you have to keep doing it. Daniel Miessler
CLI
Generate a public/private key pair and copy the public key to the remote host. # generate public/private keys ssh-keygen -b 2048 -t rsa -C "your_username" -f filename # copy key to remote host cat ~/.ssh/filename.pub | ssh username@remote_host "mkdir -p ~/.ssh &
CLI
Vim is available on almost every Linux distribution and remains one of the most powerful terminal-based text editors. While the default configuration works well, a few small adjustments can significantly improve usability.
Linux
Whether I'm developing locally, managing remote Linux servers over SSH, or running long-running processes, tmux allows me to keep everything organized and running—even if my SSH connection drops.