- Disable all power-saving features in BIOS/UEFI settings.
- Set a high-performance power plan in Windows:
Right-click on 'Power' icon in taskbar > 'Choose what the power button does' > 'Change settings that are currently unavailable'
| #!/bin/bash | |
| # Check if the correct number of arguments is provided | |
| if [ "$#" -ne 2 ]; then | |
| echo "Usage: $0 <hostname> <IP address>" | |
| exit 1 | |
| fi | |
| HOSTNAME=$1 | |
| IP=$2 |
Right-click on 'Power' icon in taskbar > 'Choose what the power button does' > 'Change settings that are currently unavailable'
| # wsl-vpn-arp-fix.ps1 | |
| # Fixes WSL2 connectivity after Cisco VPN reconnects by syncing ARP from Windows | |
| # Requires: Run as Administrator | |
| Write-Host "" | |
| Write-Host "=== Fix WSL VPN (Adapter-based ARP Sync) ===" -ForegroundColor Cyan | |
| # Match Cisco AnyConnect / Secure Client adapter | |
| $adapterPattern = "Cisco" |
Anthropic's Claude Code CLI source code leaked onto GitHub recently. All of it. About 1,900 files and a lot of TypeScript.
I read through the key modules. What follows is a breakdown of the surprising parts: how the system actually works, where Anthropic made clever engineering choices, and where their approach diverges from OpenAI's Codex in ways you wouldn't guess from using either tool.
Here's what happens when you type a message into Claude Code:
| """ | |
| MicroStrategy metadata lineage crawler. | |
| Produces: | |
| output/ | |
| objects.jsonl | |
| definitions/ | |
| lineage.csv | |
| errors.csv |