All pastesPublic feed

Public feed

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

    6aD5JV8EYF·text·24.9 KB·2026-06-25 14:49 UTC
    # vim: ft=swayconfig
    #
    # Default config for scroll
    #
    # Copy this to ~/.config/scroll/config and edit it to your liking.
    #
    # Read `man 5 scroll` for a complete reference.
    
    ### Variables
    #
    # Logo key. U
  • untitled

    5a4yaJyaxk·text·685.7 KB·2026-06-25 14:38 UTC
    00:00:00.000 [INFO] [sway/main.c:308] Scroll version 1.13-dev
    00:00:00.000 [INFO] [sway/main.c:309] wlroots version 0.21.0-dev
    00:00:00.001 [INFO] [sway/main.c:78] FreeBSD MiWiFi-RD04v2-srv 15.0-RELEA
  • untitled

    9YJXXU2Y8R·text·221.4 KB·2026-06-24 17:26 UTC
    {
     "groups": [
     {
     "borderColor": "#FFFFFF",
     "color": "#FFFFFF",
     "id": "gq",
     "isExpanded": true,
     "name": "Quality"
     },
     {
     "color": "#96CEB4",
     "id": "
  • untitled

    2VM85LwtVd·text·5.2 KB·2026-06-24 06:12 UTC
    ## ✅ 本周完成 (Done)
    
    - 围绕 no-testcase code pipeline 的 test case generation 做了质量复盘和问题归因。
     - 当前数据不能简单按 stdio pipeline 全量处理,passed 数量不能直接代表可用训练数据规模。
     - 主要风险集中在 empty output、polluted/demo output、no-stdin/i
  • untitled

    5gGkgEzUDW·text·2 B·2026-06-23 12:18 UTC
    cx
  • untitled

    5eN9KcqgKm·text·71.2 KB·2026-06-22 02:12 UTC
    mixed-port: 7890
    allow-lan: true
    mode: rule
    log-level: info
    ipv6: true
    external-controller: 127.0.0.1:9090
    dns:
     enable: true
     listen: 0.0.0.0:1053
     ipv6: true
     enhanced-mode: fake-ip
     fake-ip-ra
  • dvwa_test

    6NnpUYdKw5·text·27 B·2026-06-13 09:36 UTC
    <script>alert("1")</script>
  • Hew metrics aggregation demo

    9GkN25dHc6·hew·2.8 KB·2026-06-11 04:02 UTC
    //! A small metrics aggregation service: sources push samples to a
    //! collector actor, a periodic ticker counts snapshots, and asks read
    //! the aggregates back out.
    
    type Sample {
     name: string;
  • untitled

    6g8S94dQ66·text·10.5 KB·2026-06-08 07:05 UTC
    /\n/mg
    /api
    /api/${o}
    /api/appoints/alipay/pay
    /api/appoints/appointbill/appointmentSubmit
    /api/appoints/appointbill/cancleAppointBill
    /api/appoints/appointbill/instrumentPrice-export
    /api/appoints/ap
  • 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
  • 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
  • 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 →