This document contains setup instructions and keyboard shortcuts for a Lenovo T480 (1920x1080) laptop running Linux.
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 | |
| # ANSI color codes | |
| GREEN='\033[0;32m' | |
| CYAN='\033[0;36m' | |
| YELLOW='\033[1;33m' | |
| RED='\033[0;31m' | |
| BLUE='\033[0;34m' | |
| PURPLE='\033[0;35m' | |
| NC='\033[0m' # No Color |
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 node | |
| /** | |
| * condom.js — guardrail for npm supply chain incident | |
| * Exits if any known-compromised package@version is detected. | |
| */ | |
| const { execSync } = require("child_process"); | |
| const banned = { | |
| "ansi-regex": "6.2.1", |
OlderNewer