| date | 2026-03-28 | |||
|---|---|---|---|---|
| category | research | |||
| labels |
|
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 | |
| // Copies Chrome localStorage entries from one origin to another. | |
| // Chrome must be closed before running. | |
| // | |
| // Usage: | |
| // node migrate.js <old-origin> <new-origin> [chrome-profile-path] | |
| // | |
| // Examples: | |
| // node migrate.js https://old.example.com https://new.example.com | |
| // node migrate.js https://old.example.com https://new.example.com "/path/to/Chrome/Default" |
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"> | |
| <title>ATC Analytics — 3-Day Snapshot</title> | |
| <style> | |
| * { box-sizing: border-box; margin: 0; padding: 0; } | |
| body { | |
| font-family: Georgia, 'Times New Roman', serif; |
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 | |
| # UserPromptSubmit hook: block when the prompt cache is stale, warn when close. | |
| # Anchored to the last `type: "user"` entry in the transcript — those are the | |
| # cache-refresh events on Anthropic's side. Falls back to file mtime on parse | |
| # failure. Fails open on any error. | |
| set -e | |
| INPUT=$(cat) | |
| TRANSCRIPT=$(printf '%s' "$INPUT" | jq -r '.transcript_path // empty') | |
| [ -z "$TRANSCRIPT" ] || [ ! -f "$TRANSCRIPT" ] && exit 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
| <!DOCTYPE html> | |
| <html lang="en" data-theme="radar"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>ATC — Action Traffic Control UI Explorer</title> | |
| <style> | |
| /* ============================================ | |
| OKLCH COLOR SYSTEM | |
| Neutral ramp driven by --hue. Switching |
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>ATC Top Bar Layout Exploration</title> | |
| <style> | |
| /* ATC OKLCH Design System — Radar theme (default) */ | |
| :root { | |
| --hue: 155; |
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>ATC — Action Traffic Control UI Explorer</title> | |
| <style> | |
| :root { | |
| --bg: #0a0e14; | |
| --bg2: #131820; |
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>Olivia — CPAP Sleep Analysis Dashboard</title> | |
| <style> | |
| :root { | |
| --bg: #1a1a2e; | |
| --bg2: #16213e; |
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>Loupe — Rendered-Mode Re-Anchoring States</title> | |
| <style> | |
| *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } | |
| :root { |
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>Loupe — Comment Re-Anchoring States</title> | |
| <style> | |
| *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } | |
| :root { |
NewerOlder