All pastesPublic feed

Public feed

Pastes people chose to make public. Author names hidden.
  • tet

    48JjLjw6kN·text·4 B·2026-06-05 15:29 UTC
    test
  • untitled

    4KRNQpKFPC·text·11.1 KB·2026-06-04 23:45 UTC
    tl;dr is at the bottom but you will read everything or else
    
    1. I follow YB, we all do, but I do not do it blindly. where he is wrong, we can absolutely criticise and he is a big boy who will take it
  • untitled

    9NzSPMQ6dX·hew·1.3 KB·2026-06-04 22:54 UTC
    // Structured concurrency in Hew: a scope owns its child tasks and joins them
    // all before the scope expression returns. Tasks are forked with `fork { ... }`
    // and run on real OS threads; the enclos
  • untitled

    77kV6cU5B2·hew·4.8 KB·2026-06-04 06:43 UTC
    // demo-tcp-http-proxy.hew
    //
    // Architecture: TCP->HTTP transform proxy with per-connection actors.
    //
    // main - binds :7878, loops accept(); spawns one ProxyConn per client
    // ProxyC
  • untitled

    8j7gcYzjf8·hew·4.9 KB·2026-06-04 05:29 UTC
    // demo-tcp-http-proxy.hew
    //
    // Architecture: TCP->HTTP transform proxy with per-connection actors.
    //
    // main - binds :7878, loops accept(); spawns one ProxyConn per client
    // ProxyC
  • untitled

    2bw7M3FZQv·hew·5.0 KB·2026-06-04 04:06 UTC
    // demo-tcp-http-proxy.hew
    //
    // Architecture: TCP->HTTP transform proxy with per-connection actors.
    //
    // main - binds :7878, loops accept(); spawns one ProxyConn per client
    // ProxyC
  • untitled

    5hU5jZccLe·hew·3.6 KB·2026-06-04 02:38 UTC
    // Multi-actor TCP -> HTTP transform proxy (Hew, v0.5)
    //
    // A TCP server where each accepted connection is handled by its own actor in
    // "active mode": the runtime reactor reads the socket and deliv
  • m1yd

    44z4vs2SE9·text·1.6 KB·2026-06-03 14:20 UTC
    * 2x ESP32-S3 DevKit (1 uso + 1 reserva)
    * 2x Módulo Câmera OV2640 (1 uso + 1 reserva)
    * 2x Microfone Digital I2S INMP441 (1 uso + 1 reserva)
    * 2x Amplificador Digital I2S MAX98357A (1 uso + 1 reserva
  • untitled

    35EtGZDPXx·text·41.0 KB·2026-06-03 10:32 UTC
    [ebuild N ] app-editors/neovim-0.11.7::gentoo USE="nvimpager -test" LUA_SINGLE_TARGET="luajit -lua5-1" 0 KiB
    [nomerge ] virtual/package-manager-2::gentoo 
    [nomerge ] sys-apps/porta
  • Hew v0.5 — redis-style KV server (Session machine + Store actor, MULTI/EXEC)

    72Qe5sQSGf·hew·2.9 KB·2026-06-03 01:53 UTC
    // A redis-style key/value server: a Store actor owns the data, a Session
    // machine drives MULTI/EXEC transactions on the client side.
    //
    // Invariants:
    // * All key/value state lives in the Store
  • Hew v0.5 — redis-like server v2 (match dispatch, MULTI/EXEC transactions, conn state machine)

    6L33vWtDjC·hew·4.6 KB·2026-06-03 01:34 UTC
    // A redis-like server in Hew v0.5 — command parsing, key/value storage, and
    // MULTI/EXEC transactions, behind actor message-passing.
    //
    // WHAT IS REAL HERE:
    // * line-oriented command parsing (sp
  • Hew v0.5 — redis-like KV store (in-process actor + ask, RESP-style protocol)

    2XBm7c82nD·hew·2.9 KB·2026-06-03 01:23 UTC
    // In-process redis-like KV store (v0.5 Hew).
    //
    // The actor + HashMap + ask CORE a networked redis server is built on. The TCP
    // front-end is currently blocked by the D10 module-qualified-type-in-R
  • untitled

    7VJEa33wqw·text·95 B·2026-06-02 13:23 UTC
    1f:0b:35:65:df:fa:bc:4a:b7:30:7e:17:f0:15:4b:87:44:ac:df:fa:8c:fc:67:e9:74:4b:1e:b7:d4:a7:00:86
  • untitled

    52n4Wdf4AH·text·379 B·2026-05-31 21:10 UTC
    #!/bin/bash
    
    setup_uv_ast() {
     uv venv
     uv python install 3.15t
     uv python pin 3.15t
     uv pip install ast-serialize
     uv pip freeze | grep ast-serialize
    }
    
    UV_TEST_TMP=$(mktemp -d -p /tmp
  • untitled

    2XABmXg2zE·text·379 B·2026-05-31 21:09 UTC
    #!/bin/bash
    
    setup_uv_ast() {
     uv venv
     uv python install 3.15t
     uv python pin 3.15t
     uv pip install ast-serialize
     uv pip freeze | grep ast-serialize
    }
    
    UV_TEST_TMP=$(mktemp -d -p /tmp
  • untitled

    2sXZGPjPLJ·text·379 B·2026-05-31 21:09 UTC
    #!/bin/bash
    
    setup_uv_ast() {
     uv venv
     uv python install 3.15t
     uv python pin 3.15t
     uv pip install ast-serialize
     uv pip freeze | grep ast-serialize
    }
    
    UV_TEST_TMP=$(mktemp -d -p /tmp
  • untitled

    5ykNveyFWw·text·23.8 KB·2026-05-31 03:25 UTC
    """
    Knox County TN Jail — Auto Monitor
    ====================================
    Automatically checks the Knox County jail roster every 10-15 minutes
    for new inmates. When a new inmate is found, their info
  • MicroGPT in Hew v0.3

    3ZBHcfa32y·hew·19.5 KB·2026-05-30 16:15 UTC
    // microgpt.hew — MicroGPT in pure Hew (v0.3 dialect)
    // Port of Karpathy's microgpt.py — a complete GPT language model.
    // Trains on a list of names, then generates new ones.
    //
    // Architecture:
    // -
  • Welcome.

    2EREFnGBXq·plaintext·31 B·2026-05-26 23:40 UTC
    
        
  • Mitimmict

    3000768·text·432 B·2012-12-04 23:23 UTC
    When we glance at the concise explaination your message love, installing relations to a close relationship along with a further, yet for a experiencing that is certainly engendered when you have miltc

older pastes →