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
| // Update the email address below | |
| // Schedule to run every 30 minutes at https://script.google.com/ | |
| function phish() { | |
| const threads = GmailApp.search("newer_than:30m"); | |
| const totalSpammed = 0; | |
| threads.forEach((thread) => { | |
| thread.getMessages().forEach((message) => { | |
| if(message.getHeader("X-PHISHTEST") !== "") { | |
| thread.moveToSpam(); | |
| totalSpammed++; |
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
| #!/bin/bash | |
| # Test: Can we attach tc qdisc to pod-side of veth while AWS VPC CNI uses host-side? | |
| # Run with: sudo bash test-tc-veth-conflict.sh | |
| set -e | |
| NAMESPACE="test-pod-tc" | |
| VETH_HOST="veth-host-test" | |
| VETH_POD="veth-pod-test" |
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 | |
| # ╔════════════════════════════════════════════════════════════╗ | |
| # ║ 0xSTATUS v1.2 // cute and nerdy statusline for Claude ║ | |
| # ╚════════════════════════════════════════════════════════════╝ | |
| # | |
| # Requires: jq | |
| # Optional: kubectl (k8s context), git (branch) | |
| # Works with any modern monospace font (no Nerd Font required) | |
| # | |
| # Layout: |
OlderNewer