Skip to content
View blackboxprogramming's full-sized avatar

Highlights

  • Pro

Block or report blackboxprogramming

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
    ____  __    ___   ________ __ ____  ____  ___    ____
   / __ )/ /   /   | / ____/ //_// __ \/ __ \/   |  / __ \
  / __  / /   / /| |/ /   / ,<  / /_/ / / / / /| | / / / /
 / /_/ / /___/ ___ / /___/ /| |/ _, _/ /_/ / ___ |/ /_/ /
/_____/_____/_/  |_\____/_/ |_/_/ |_|\____/_/  |_/_____/

I build systems from scratch. Compilers, quantum simulators, AI infrastructure, fleet orchestration.

CI Python C99 Shell


Projects

RoadC — Programming Language

A custom language with Python-style indentation, built from scratch. Lexer, parser, AST, tree-walking interpreter in Python. Zero-dependency C99 compiler. Supports functions, recursion, pattern matching, type annotations.

fun fibonacci(n: int) -> int:
    if n <= 1:
        return n
    return fibonacci(n - 1) + fibonacci(n - 2)

Quantum Math Lab — Quantum Circuit Simulator

Pure-Python state-vector simulator. Hadamard, Pauli-X, CNOT, custom unitaries, measurement with configurable RNG. Companion catalog of 10 unsolved problems in mathematics.

circuit = QuantumCircuit(2)
circuit.hadamard(0)
circuit.cnot(0, 1)          # Bell state: |00> + |11>
circuit.probabilities()      # {'00': 0.5, '11': 0.5}

The Trivial Zero — Computational Philosophy

675-section research paper with 20+ supporting Python demos. SHA-256 hash chains, Godel incompleteness, Riemann zeta zeros, DNA encoding, Lorenz chaos. Published to npm. Live evidence explorer and VR app.

Universal Computer — Turing Machine Simulator

Universal Turing machine implementation. Dictionary-based infinite tape, JSON machine descriptions, configurable step limits. Included machines: binary incrementer, parity checker, palindrome detector.

Lucidia CLI — Terminal Operating System

Full TUI application built on Textual/Rich. Terminal web browser with HTML parser, sandboxed virtual filesystem, Ollama AI agents with multi-personality council mode, background process manager.

blackroad-scripts — Fleet Automation

400+ shell scripts managing a 5-node Raspberry Pi cluster. WireGuard mesh networking, Cloudflare tunnel orchestration, Docker Swarm, automated health monitoring, deployment pipelines.


Infrastructure

Cluster        5x Raspberry Pi 5 (4x 8GB + 1x Pi 400)
AI             2x Hailo-8 accelerators (52 TOPS), 16 Ollama models
Networking     WireGuard mesh, 48 domains, 18 Cloudflare tunnels
Storage        1TB NVMe, Gitea (207 repos), MinIO S3
Orchestration  Docker Swarm, systemd fleet, cron autonomy
Monitoring     Custom health agents, power optimization, thermal management

All self-hosted. No cloud compute dependency.


Stats

Languages      Python, C, Shell, TypeScript, JavaScript, SQL
Repos          49 public, 207 on self-hosted Gitea
Scripts        400+ production shell scripts
Test Suites    pytest, Playwright, shellcheck
CI/CD          GitHub Actions across all active repos

Alexa Amundsonblackroad.ioamundsonalexa@gmail.com

Popular repositories Loading

  1. blackroad blackroad Public archive

    BlackRoad — Core web assets and brand materials.

    HTML 1

  2. alexa-amundson-portfolio alexa-amundson-portfolio Public

    Technical Portfolio — 899,160+ LOC, 125 deployments, 79 live projects. Full-stack engineering + AI + quantum.

    HTML 1

  3. blackroad-apps blackroad-apps Public

    50 production-ready Progressive Web Apps for the BlackRoad OS ecosystem.

    HTML 1

  4. roadchain roadchain Public

    RoadChain — Layer-1 blockchain in Python. secp256k1 ECDSA, SHA-256 proof-of-work, Bitcoin-compatible headers, SHA-2048 agent identity, 27s blocks, 21M supply cap.

    Python 1

  5. codex-infinity codex-infinity Public archive

    Codex Infinity — AI code generation with infinite context window experiments.

    Shell

  6. codex-agent-runner codex-agent-runner Public

    Codex Agent Runner — Automated AI code generation pipeline with task execution and validation.

    HTML