Controlled Bursts | TDD | TCR | 100% Coverage | Emergent Design | Extreme Ownership
Red → Green → TCR → Refactor → TCR → Done
TCR: test && commit || revert
- Pass → commit → continue
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>LiteLLM Gateway Investigation — May 2026</title> | |
| <style> | |
| :root { | |
| --bg: #0f1419; | |
| --bg-card: #1c2128; | |
| --bg-row: #161b22; |
| #!/usr/bin/env bash | |
| # Usage: ./cs "your prompt" | |
| # Runs Claude headlessly, suppresses the TUI, prints Claude's final reply on stdout. | |
| set -uo pipefail | |
| PROMPT="$*" | |
| REPLY_FILE=$(mktemp) | |
| SESSION_ID=$(uuidgen | tr 'A-Z' 'a-z') | |
| ENC_CWD=$(pwd | sed 's|/|-|g') |
| """ | |
| The most atomic way to train and inference a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| const { ApolloServer, gql } = require('apollo-server'); | |
| // Construct a schema, using GraphQL schema language | |
| const typeDefs = gql` | |
| type Query { | |
| hello: String | |
| order(orderId: String!): Order | |
| } | |
| type Order { |
I hereby claim:
To claim this, I am signing this object:
| find . -name '*.es6.js' -print0 | xargs -0 -n1 bash -c 'mv "$0" "${0/.es6.js/.js}"' |
| # First start chromedriver from the console like this | |
| chromedriver --url-base=wd/hub --verbose | |
| # Then in another tab / window: issue a command to start a new chrome session via the JSON protocol | |
| curl -XPOST http://localhost:9515/wd/hub/session -d '{"desiredCapabilities":{"browserName":"chrome"}}' | |
| # If you can see a chrome window pop up, you're all set. If not, check the chromedriver output and fix your issue |