Scope: Real two-party negotiation markets where TEE attestation is structurally necessary — not just nice to have. Tina's bar applied throughout: only counts if party A's move in round N materially changes party B's move in round N+1.
No competitors to DealProof found. Closest analogs: Enclave Markets (TEE for crypto block trading, no agents, no πCreds), Cybersettle (double-blind insurance claims, no TEE, suspended), Zycus ANA (AI procurement agent, no TEE). None have the full stack: TEE + dual agents + DCAP attestation + πCreds conduct layer + escrow.
WPRC NYC : Multiplayer Agents & the A2A Protocol : Shashank (Ekai Labs) 30 Jun 2026
//1 Liner: Agents are going multiplayer. We read the A2A protocol (agent-to-agent communication, Google then Linux Foundation) as the anchor, with two shipping examples (@Claude in Slack, Paradigm's open-source Centaur). The real question: when agents go multiplayer, who owns the agent, what can it access, and can it go multiplayer ACROSS organizations? Two regimes split the room: trusted settings (inside or between known companies, shipping now) and trus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // check version | |
| node -v || node --version | |
| // list locally installed versions of node | |
| nvm ls | |
| // list remove available versions of node | |
| nvm ls-remote | |
| // install specific version of node |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| numerals = {"I":1, "V":5, "X":10, "L": 50, "C": 100, "D": 500, "M": 1000 } | |
| def convert_roman(input_number): | |
| range_flag = None | |
| for symbol, integer in numerals.items(): | |
| if integer == input_number: return symbol | |
| if input_number > integer: | |
| range_flag = symbol | |
| remaining = input_number - numerals[range_flag] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| from datetime import datetime | |
| from datetime import timedelta | |
| def calc_diff(delta): | |
| delta = abs( delta ) | |
| return { | |
| 'year' : int(delta.days / 365), | |
| 'month' : int(delta.days % 365) / 30, | |
| 'day' : int(delta.days % 365) % 30, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import json | |
| import cv2 | |
| addr = 'http://localhost:5000' | |
| test_url = addr + '/api/test' | |
| # prepare headers for http request | |
| content_type = 'image/jpeg' | |
| headers = {'content-type': content_type} |
NewerOlder