set t_Co=256
source /path/to/<theme-file>.vim| Category | Command | Action |
|---|---|---|
| Movement | gg / G |
Top / Bottom of file |
| Movement | 0 / $ |
Start / End of line |
| Movement | ^ |
First non-space character of line |
| Movement | f / F + <char> |
Find character forward / backward |
| Movement | t / T + <char> |
Till character forward / backward |
| Movement | ; |
Repeat last f or t jump |
| Category | Shortcut / Command | Action |
|---|---|---|
| Sessions | tmux new -s <name> |
Start a new named session |
| Sessions | tmux ls |
List all active sessions |
| Sessions | tmux rename-session -t <name> <new name> |
Rename a session |
| Sessions | tmux attach-session -t <name> |
Connect/Re-attach to a session |
| Sessions | Ctrl + b, then d |
Detach (Keep everything running in background) |
| Windows | Ctrl + b, then c |
Create a new full-screen window |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Find the fastest mirror from a list of servers | |
| # Tests HTTP(S) response time using curl's time_connect + time_starttransfer | |
| TIMEOUT=5 | |
| PARALLEL=8 # max concurrent jobs | |
| SERVERS=( | |
| adectra.com | |
| akane.network |
sudo apt purge --autoremove -y \
gnome-software gnome-software-plugin-deb gnome-software-plugin-fwupd \
"libreoffice*" "mythes-*" "hyphen-*" "hunspell-*" \
"fcitx*" "mozc*" "anthy*" ibus-anthy "hdate*" \
"dict-*" "goldendict*" \
"mlterm*" xiterm+thai \
thunderbird yelp \
gnome-calendar gnome-weather gnome-contacts gnome-maps gnome-dictionary \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CVE-2024-25600 (Bricks Builder RCE) | |
| import requests | |
| import sys | |
| import urllib3 | |
| import re | |
| urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | |
| def fetch_nonce(target_url): |
NewerOlder