πΊπ³
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
| /** | |
| * Pure Feature Flag Bypass Injector (Zero Disk Writes) | |
| * | |
| * Enables swarm features by intercepting fs.readFileSync calls and injecting | |
| * the tengu_brass_pebble feature flag into the returned settings content. | |
| * | |
| * This version: | |
| * - NEVER writes to ~/.claude/ or any global path | |
| * - NEVER writes log files to disk | |
| * - Only modifies data IN MEMORY |
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 ruby | |
| VERSION = '0.0.32' | |
| # ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| # β Homebrew Cask Real Upgrade Helper (macOS) β | |
| # β ----------------------------------------- β | |
| # β Author: Gaston Morixe <gaston@gastonmorixe.com> β | |
| # β Vibe Coded with: OpenAI o3 - Last Update May 10 2025 β | |
| # β ---------------------------------------------------- β | |
| # β Usage: `$ brew ruby this-file.rb` without extra gems β | |
| # ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
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
| from manimlib import * | |
| import random | |
| class ShadowMappingIllustration(Scene): | |
| def construct(self): | |
| # ------------------------------------------------------------- | |
| # INTRO TITLE | |
| # ------------------------------------------------------------- | |
| title = Text("Shadow Mapping: Two-Pass Technique") |