به Nostr بپیوندید
2026-07-06 05:25:15 CEST

Kuba Suder 🇵🇱🇺🇦 on Nostr: Testing code blocks in posts: ```rb def process_operation(op) case op.type when ...

Testing code blocks in posts:

```rb
def process_operation(op)
  case op.type
  when :plc_operation
    verify_handles(op.did, op.handles, op.pds_endpoint)
  when :plc_tombstone
    Handle.where(did: op.did).delete_all
  else
    log "PLC: unrecognized operation type: " + op.type
  end
end
```