Skip to content
View mavdol's full-sized avatar

Block or report mavdol

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. capsule capsule Public

    ⚙️ A secure, durable runtime for AI agents. Run untrusted code in isolated WebAssembly sandboxes.

    Rust 175 9

  2. npc-neural-affect-matrix npc-neural-affect-matrix Public

    🧠 Emotional intelligence for NPCs

    Rust 71 4

  3. Notes on sandboxing untrusted code -... Notes on sandboxing untrusted code - why Python can't be sandboxed, comparing Firecracker/gVisor/WASM approaches
    1
    # Sandboxing Untrusted Python
    2
    
                  
    3
    Python doesn't have a built-in way to run untrusted code safely. Multiple attempts have been made, but none really succeeded.
    4
    
                  
    5
    Why? Because Python is a highly introspective object-oriented language with a mutable runtime. Core elements of the interpreter can be accessed through the object graph, frames and tracebacks, making runtime isolation difficult.