video script for sre ops and record
Delivery: Jobs cadence throughout — short lines, long air, numbers that stop the room. The pauses are the content. Never rush a landing. Say every number slowly.
[0:00–0:35] THE PLEDGE — a normal night
| bmad-install() { npx bmad-method install --directory . --modules bmm,cis,tea --tools claude-code,codex,github-copilot --user-name "$(whoami)" --communication-language English --document-output-language English --output-folder _bmad-output --yes; } |
| #!/bin/sh | |
| # Global commit-msg hook: strip Co-authored-by trailers added by AI agents | |
| COMMIT_MSG_FILE="$1" | |
| grep -v "^Co-authored-by:.*" "$COMMIT_MSG_FILE" > "$COMMIT_MSG_FILE.tmp" && mv "$COMMIT_MSG_FILE.tmp" "$COMMIT_MSG_FILE" | |
| exit 0 |
| monit -t | |
| systemctl restart monit | |
| sleep 5 | |
| monit unmonitor docker_containers_cpu_high | |
| monit monitor docker_containers_cpu_high | |
| sleep 5 | |
| monit status docker_containers_cpu_high |
| Metric | Why It Matters 💡 | Wails (Go) | Tauri (Rust) | Winner |
|---|---|---|---|---|
| Project Init Time | How fast can I start building | ~8s | ~5s | ⚖️ Draw |
| Initial Full Build | First full prod build | 1m 22s | 39m | 🟡 Wails |
| JS Change Rebuild | Simulates a small UI tweak | 7.3s | 73s | 🟡 Wails |
| Backend Change Rebuild | Simulates updating logic | 5.0s | 70s | 🟡 Wails |
| CPU Usage | CPU % used during launch (from gtime) |
14% | 14% | ⚖️ Draw |
| Memory Usage (RAM) | Max during runtime | ~60 MB | ~57 MB | 🔴 Tauri |
| Binary Size (.app) | Final output for distribution | 7.4 MB | 8.3 MB | 🟡 Wails |
| Context Switches (invol) | How busy the OS gets during runtime | 28k | 14k | 🔴 Tauri |
| const scanner = window.scanditBarcodeScanner; | |
| const LICENSE_KEY = | |
| "AnSVvQefIof8PZzE4w4ouQA2MPRnE2eCEUNBLdEjIQ42QfhP02onvypIppy8DyBLqCv4O65DqbCxZVcEBVZVW+M45Ma5UF1rwUU0jUUi9zPTeMvPPClia5Vpm2AZI82ztiFQX4xx0XIfQV/kfUEFLtl0WYHJLc9pahG3lv8luaswHIOuanNjocR5xlqnH8dMNDUzycoiOlWpGJ5mA3ka9KVIV4WIAjg+xhkRL0A/0CCxIIW8tSsg4ztzxvaJa7tNRwU3jrwKmoT7FFOQKw29UzYRF80fLZkpXhZq87gsrkASHToz1DdSA2o3mzdKIGwLniE6q+Ajlxw/ADmdwg7CgyMrw2MxJADQNGwllIxp3ILxQsDbvkTui2wFmaqba3Rol0PvX3JDSJMWdeLbhweGe1NN3jE5RGTCEUQORSEQH11+TCfkMDcl1clA4mT/UxEQG28p5Td/d3MEQiwHiD/segJ8oGWJSkr2LmV0Ix8ZD1qccVx3dUH5qHk4TtBofyjMHF3RhLNqKb7kSRlWfHEYe1ljrm4rTiPb8l2CFgh9zXyxEt7ZICOQ8fpcoV70SMtsqWavTfdu499lWpsDXQWliTV3Q9ViXtyK+0VO3scFK/byX0kXv3rxx7tRdpjjYHF4owBPdM1Ga+XHX+veOnwYXiRy933zRjO7PE7zN+9S99JdTvbgHnZ8QsRhuVq4eSYZFCvTsHZE7GvqeGotLltKVlFTeygcc1Dmci3J6X5y9NS+VECdRBZI8DlFyWeVSUMMFg2FokBYIiFyP6WQWyuIR1yjcLcO8F6HJMgsqf81rM/o9M5XlgUgDTvHVOqDgXuMJO4E59JJwPs9lAWm4r7bUm72r9djqYQv3ZCX6z7YqnqUvo37bXOVoqg5++f108eIRPgnGwjDAnphmBp0YpXVFzIjISUhp5BW |
| import lombok.AllArgsConstructor; | |
| import lombok.Data; | |
| import lombok.NonNull; | |
| import lombok.RequiredArgsConstructor; | |
| import lombok.SneakyThrows; | |
| import lombok.extern.slf4j.Slf4j; | |
| import org.apache.pdfbox.pdfparser.PDFParser; | |
| import org.apache.pdfbox.pdmodel.PDDocument; |
alias loadenv='[ -f .env ] && export $(grep -v "^#" .env | xargs) && echo ".env variables have been loaded into the current session." || echo ".env file not found in the current directory."'
| const fs = require('fs'); | |
| const xml2js = require('xml2js'); | |
| const path = require('path'); | |
| class SoapUIProjectParser { | |
| constructor() { | |
| this.parser = new xml2js.Parser(); | |
| this.SOAPUI_NS = 'http://eviware.com/soapui/config'; | |
| } |