| categories | project | people | resume | date | ||
|---|---|---|---|---|---|---|
|
|
claude --resume b9db3a88-ec96-4277-b3b1-f9e7339e4fdc |
2026-03-04 |
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 | |
| # Show processes spawned from wezterm, with detailed view of gamma dev stack | |
| WEZTERM_PID=$(ps -eo pid,command | grep "[w]ezterm-gui" | awk '{print $1}') | |
| if [[ -z "$WEZTERM_PID" ]]; then | |
| echo "wezterm not running" | |
| exit 1 | |
| fi |
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
| import { z } from 'zod' | |
| import { | |
| s, | |
| defineCollection, | |
| createMockClients, | |
| StorageConfig, | |
| } from './index' | |
| // === Primitives === |
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
| import { z } from 'zod' | |
| import { | |
| s, | |
| defineCollection, | |
| createMockClients, | |
| StorageConfig, | |
| } from './index' | |
| // === Primitives === |
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
| version: '0.5' | |
| log_level: info | |
| log_location: /Users/jordan/.gamma/logs/process-compose.log | |
| log_configuration: | |
| disable_json: true | |
| fields_order: ['level', 'time', 'message'] | |
| timestamp_format: '2006-01-02 15:04:05' | |
| add_timestamp: true | |
| flush_each_line: true |
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 python3 | |
| """ | |
| CLI to query Claude Code tool usage stats. | |
| Usage: | |
| claude-tools # list repos | |
| claude-tools <repo> # show tool counts | |
| claude-tools <repo> --perms # show permission strings (for allowlisting) | |
| claude-tools <repo> --raw # show recent raw entries | |
| claude-tools <repo> --since 7 # last 7 days |
This file has been truncated, but you can view the full file.
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
| { | |
| "chatId": "buddy-xctvfvk2gnf6so6-nrEUOblO", | |
| "messagesVersion": "v5", | |
| "messages": [ | |
| { | |
| "id": "current-deck-GhNSqtiRH_h8Gas6o9lep", | |
| "role": "user", | |
| "parts": [ | |
| { | |
| "type": "text", |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>EditCard2 Error Analysis</title> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; |
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
| STREAM_DATA = [ | |
| 'data: {"id":1,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null}]}\n\n', | |
| 'data: {"id":2,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"content":"<section"},"finish_reason":null}]}\n\n', | |
| 'data: {"id":3,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"content":">\\n"},"finish_reason":null}]}\n\n', | |
| 'data: {"id":4,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"content":"<h"},"finish_reason":null}]}\n\n', | |
| 'data: {"id":5,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"content":"1"},"finish_reason":null}]}\n\n', | |
| 'data: {"id":6,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0," |
NewerOlder