| Operator | Description |
|---|---|
link:url |
Shows other pages that link to that URL. |
related:url |
Finds pages that are related to the specified URL. |
site:domain |
Restricts search results to the specific domain. |
define:word |
Provides a definition of the word. |
allinurl:terms |
Shows only pages with all specified terms in the URL. |
inurl:term |
Shows pages where the next term appears in the URL. |
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
| ```zsh | |
| # ~/.zshrc - Cleaned & Optimized | |
| # Command execution time printed RIGHT-ALIGNED between prompts (seconds with ms precision) | |
| # ------------------------------------------------- | |
| # 0. REQUIRED MODULES | |
| # ------------------------------------------------- | |
| # Needed for $EPOCHREALTIME |
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
| # Show a message in the status bar when Prefix is active | |
| set -g status-left " #[fg=green,bold][#S] #{?client_prefix,#[fg=red]ACTIVE ,}" | |
| set -g status-left-length 20 |
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
| # Intuitive split keys (v=vertical, h=horizontal) | |
| # -h creates horizontal split (side-by-side) | |
| bind v split-window -h | |
| # -v creates vertical split (top-bottom) | |
| bind h split-window -v | |
| # Alternative: keep the original keys too | |
| # Ctrl+b % still works | |
| bind % split-window -h | |
| # Ctrl+b " still works |
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
| Zalgo Text |
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 python3 | |
| import paramiko | |
| import time | |
| import socket | |
| import os | |
| backup_path = "/usr/local/rancid/var/SDWAN_backups/" | |
| def device_backup(hostname, username, password, command, timeout): | |
| try: |
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
| # Pull Image | |
| docker pull <image-name> | |
| # Save image to tar | |
| docker save -o <filename>.tar <image-name> | |
| # Load image in offline machine | |
| docker load -i <filename>.tar |