added
This commit is contained in:
parent
fe8c9f0f56
commit
a8741ebad1
|
|
@ -183,3 +183,27 @@ These will accumulate value into your system over years.
|
||||||
|
|
||||||
Even inside your system, set up so the pieces talk to each other via API, rather than tight coupling so that modules can be upgraded, replaced, outsourced, etc.
|
Even inside your system, set up so the pieces talk to each other via API, rather than tight coupling so that modules can be upgraded, replaced, outsourced, etc.
|
||||||
|
|
||||||
|
## Code
|
||||||
|
|
||||||
|
Stay Python-First For:
|
||||||
|
|
||||||
|
AI pipelines
|
||||||
|
agents
|
||||||
|
orchestration
|
||||||
|
APIs
|
||||||
|
content processing
|
||||||
|
ingestion
|
||||||
|
automation
|
||||||
|
research tooling
|
||||||
|
|
||||||
|
Add Go/Rust Selectively For:
|
||||||
|
|
||||||
|
high-performance services
|
||||||
|
distributed networking
|
||||||
|
edge infrastructure
|
||||||
|
heavy concurrency
|
||||||
|
secure execution sandboxes
|
||||||
|
streaming systems
|
||||||
|
future NetworkSIG infrastructure
|
||||||
|
low-memory edge compute
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -136,6 +136,8 @@
|
||||||
|
|
||||||
[Turbopuffer](#turbopuffer)
|
[Turbopuffer](#turbopuffer)
|
||||||
|
|
||||||
|
[e2a](#e2a)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
This doc is a list I maintain of anything interesting to me that I find
|
This doc is a list I maintain of anything interesting to me that I find
|
||||||
|
|
@ -405,3 +407,12 @@ How lakebase architecture delivers 5x faster Postgres writes
|
||||||
|
|
||||||
# **Turbopuffer**
|
# **Turbopuffer**
|
||||||
How to build a distributed queue in a single JSON file on object storage
|
How to build a distributed queue in a single JSON file on object storage
|
||||||
|
|
||||||
|
# **e2a**
|
||||||
|
Authenticated email gateway for AI agents. Receive emails as webhooks or via WebSocket, send emails through an HTTP API, and verify the identity of every sender — humans and other agents alike.
|
||||||
|
|
||||||
|
Authenticated transport — SPF/DKIM verified on inbound; HMAC-signed X-E2A-Auth-* headers on every delivery
|
||||||
|
Two delivery modes — webhook (cloud agents) or WebSocket (local agents, no public URL needed)
|
||||||
|
Outbound API — agents send to other agents (SMTP relay) or humans (upstream SMTP, e.g. SES, Resend)
|
||||||
|
Human in the loop — opt-in approval gate that holds outbound mail until a reviewer approves via dashboard, magic-link email, or CLI
|
||||||
|
CLI + SDKs — TypeScript and Python SDKs, plus a e2a CLI for everyday agent ops
|
||||||
Loading…
Reference in New Issue
Block a user