skip to main content
pastebin.ca
All pastes Public feed

Public feed

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

    6NnpUYdKw5·text·27 B·2026年06月13日 09:36 UTC
    <script>alert("1")</script>
  • untitled

    3ATTCfayNE·text·1.4 KB·2026年06月13日 07:24 UTC
    background #1B1A1C
    color0 #1B1A1C
    color1 #EE49DC
    color2 #FFBAC0
    color3 #FFDDE6
    color4 #95ABD7
    color5
  • untitled

    5EV6SPH7NU·text·584.0 KB·2026年06月13日 00:56 UTC
    [Event "Live Chess"]
    [Site "Chess.com"]
    [Date "2026年06月13日"]
    [Round "-"]
    [White "cobybrian67"]
    [Black "WordSurgeon"]
    [Result "0-1"]
    [CurrentPosition "2k5/ppp1r1pp/n4p2/8/3P4/P2P1P2/P4KPP/4R3 b - - 1 23
  • untitled

    2Ugdq67zQr·text·4.9 KB·2026年06月12日 00:43 UTC
    Improved Mission Timer
    We've updated the mission timer to better communicate what's happening during a run.
     Overall clearer timer feedback and readability
    The last section is now visually distin
  • untitled

    97UWpSa48A·text·1.0 KB·2026年06月11日 12:09 UTC
    certificate="@ByteArray(-----BEGIN CERTIFICATE-----\nMIICvzCCAaegAwIBAgIBADANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhOVklE\nSUEgR2FtZVN0cmVhbSBDbGllbnQwHhcNMjYwMzEwMDAyNjU3WhcNNDYwMzA1MDAy\nNjU3WjAjMSEwHwY
  • 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

    2WGMmNGaDg·text·82.5 KB·2026年06月10日 12:54 UTC
    import { ArcRotateCamera } from "@babylonjs/core/Cameras/arcRotateCamera";
    import { Engine } from "@babylonjs/core/Engines/engine";
    import { HighlightLayer } from "@babylonjs/core/Layers/highlightLaye
  • untitled

    6QuKQ3yQqN·text·2.5 KB·2026年06月10日 01:05 UTC
    [SYS] 2026年06月10日 - 08:52:05 | panic detected: runtime error: invalid memory address or nil pointer dereference 
    2026年06月10日 08:52:05 [Recovery] 2026年06月10日 - 08:52:05 panic recovered:
    runtime error: i
  • untitled

    8pAksxLHXG·text·204 B·2026年06月09日 22:00 UTC
    https://www.bilibili.com/h5/upower/v2/gift-receive?navhide=1&native.theme=1&code=TVRRWHVE23R4T&share_source=weixin&share_medium=android&bbid=8163206F-24F6-607A-B233-B84C475445A158111infoc&ts=178100390
  • 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

    3MSuBT8uyJ·text·6.9 KB·2026年06月07日 16:11 UTC
    # 数学试卷
    ## 一、选择题
    本题共 8 小题,每小题 5 分,共 40 分。在每小题给出的四个选项中,只有一项是符合题目要求的。
    **1.** 样本数据 \(6\),\(8\),\(4\),\(5\),\(12\) 的中位数为
    - A. \(5\)
    - B. \(6\)
    - C. \(8\)
    - D. \(9\)
    **2.** 已知平面向量 \(\boldsymbol{a}\),\(
  • 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:
    // -

older pastes →

AltStyle によって変換されたページ (->オリジナル) /