Skip to content

Instantly share code, notes, and snippets.

View emareg's full-sized avatar

Emanuel Regnath emareg

View GitHub Profile
@vladolaru
vladolaru / claude-safe-yolo-design-gist.md
Last active May 13, 2026 08:17
claude-safe-yolo: Sandboxed YOLO Mode for Claude Code — design doc with settings, function, battle test results, and known limitations

claude-safe-yolo: Sandboxed YOLO Mode for Claude Code

Date

2026-02-22

Problem

Claude Code's --dangerously-skip-permissions ("YOLO mode") bypasses all interactive permission prompts, enabling fully autonomous execution. While productive, it introduces risks: arbitrary code execution, data exfiltration, and destructive filesystem operations. The built-in sandbox exists but isn't automatically enabled with YOLO mode, and allowUnsandboxedCommands defaults to true, letting Claude retry blocked commands outside the sandbox without approval.

@rylev
rylev / rust-in-large-organizations-notes.md
Last active June 12, 2025 16:06
Rust in Large Organizations Notes

Rust in Large Organizations

Initially taken by Niko Matsakis and lightly edited by Ryan Levick

Agenda

  • Introductions
  • Cargo inside large build systems
  • FFI
  • Foundations and financial support
@fnky
fnky / ANSI.md
Last active June 13, 2026 12:14
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27