yuu1ch13

↗ HN profile [ 50.1 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. I built two CLI tools to fix friction points with Claude Code: claude-remote-approver – Sends permission prompts (Bash, Write, Edit) as push notifications to your phone via ntfy.sh. Tap Approve/Deny from anywhere. Falls…

  2. Claude Code has a plan mode where it writes implementation plans before coding. I built a tool that intercepts those plans and sends them to a competing AI (Codex CLI or Gemini CLI) for adversarial review before Claude…

  3. Claude Code asks for permission before running tools (Bash, Write, Edit, etc.). If you're not at your terminal, it just waits. This tool hooks into Claude Code's PermissionRequest hook and sends each prompt as a push…

  4. I built a UI language where you describe UI as JSON, and errors are caught at compile time—not runtime. Why: When AI generates UI, JavaScript is too flexible. You get runtime errors, implicit behavior, hard-to-debug…

  5. I built a small Python library to improve WebSocket connection stability in FastAPI apps. fastapi-websocket-stabilizer wraps FastAPI’s native WebSocket with automatic heartbeat (ping/pong) handling to reduce unexpected…

  6. Hi everyone, I’ve been building a programming language called Constela. Constela lets you build web pages using JSON instead of JavaScript. UI structure, state, and events are described as a constrained JSON DSL, which…

  7. React Server Components make it easy to accidentally break server/client boundaries: Dates silently turning into strings, non-serializable values leaking across the boundary, or runtime errors when a function slips…