惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
人人都是产品经理
人人都是产品经理
博客园_首页
爱范儿
爱范儿
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
Y
Y Combinator Blog
量子位
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
月光博客
月光博客
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
three drone fleets, one airspace, no proof-of-presence
t49qnsx7qt-k · 2026-05-10 · via DEV Community

t49qnsx7qt-kpanks

may 8 - amazon prime air pushed into metro atlanta. it's the same airspace where walmart-via-zipline + alphabet's wing are already operating. three commercial drone delivery fleets, one urban airspace.

that's the moment proof-of-presence stops being theory.

the new liability question

a package was supposed to land at 1234 oak street. it landed at 1232 oak street, on the porch next door. the customer called support. the dispatcher pulled the drone's gps log. the gps log was generated by the drone itself, on the drone's own clock, signed by the drone's own (or no) key.

in a small-claims case, that log is hearsay. the operator has incentive to massage timestamps. the regulator (faa, dot, state aviation authority) is going to ask for tamper-evidence.

what gridstamp does on-device

  • captures gps coordinates at delivery moment
  • timestamps via gnss + ntp consensus
  • signs the bundle with the drone's hardware key
  • emits a hash-chained log to an off-device witness

result - a court-defensible delivery proof that survives a hostile cross-examination.

the integration

import { gridstamp } from '@gridstamp/sdk';
await gridstamp.proveDelivery({
  package_id, gps, ts,
  drone_signature, witness_endpoint
});

Enter fullscreen mode Exit fullscreen mode

four fields. one signed bundle. fits in 4kb.

why this matters this quarter

faa part 108 (bvlos final rule) is in the docket. proof-of-presence will be a regulatory requirement before it's a competitive feature. the operators that have it shipped early win contracts. the ones that don't argue about gps logs in small-claims for the rest of the year.