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

推荐订阅源

The GitHub Blog
The GitHub Blog
I
InfoQ
U
Unit 42
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
月光博客
月光博客
D
Docker
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
博客园 - 聂微东
A
About on SuperTechFans
腾讯CDC
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
博客园 - 【当耐特】
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
M
MIT News - Artificial intelligence

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
Why Email Uses the @ Symbol
fluidwire · 2026-06-22 · via DEV Community

fluidwire

Look at any email address and you will find the same small character sitting in the middle of it: the @ sign. It is so ordinary that almost nobody asks where it came from or why it is there. Yet that symbol was a deliberate engineering decision made by one person in 1971, and the convention has now survived more than fifty years of relentless change in computing. For anyone who builds connected systems, from a web app to an IoT sensor in Parañaque, the story is a small masterclass in durable design.

The engineer who sent the first networked email

In 1971, an engineer named Ray Tomlinson was working at Bolt, Beranek and Newman (BBN), one of the firms building ARPANET, the research network that would eventually grow into the internet. People could already leave messages for each other, but only on the same shared computer. Tomlinson was experimenting with a program that could move a message from one machine to a different machine across the network. When he succeeded, he had effectively sent the first email between two separate computers, which happened to be sitting side by side in his lab and connected through ARPANET.

That achievement created a brand-new problem. If a message was going to travel to another machine, the system needed a way to say not just who the recipient was, but which computer they were on. Tomlinson needed a single, unambiguous way to write "this user, at that host."

Why the @ symbol won

Tomlinson looked down at his Teletype Model 33 keyboard for a character he could borrow. His requirements were strict and practical. The symbol could not be something that already appeared in people's names or in the names of host computers, or the address would be impossible to parse. It also had to be a character the system would not confuse with a command.

The @ sign fit perfectly. It was already on the keyboard, it was rarely used for anything else in computing at the time, and, conveniently, it literally meant "at" in commercial and accounting usage. So user @ host read almost like plain English: this person, at this machine. The format stuck immediately and became the template every email system has used since. A choice made in a single afternoon now routes billions of messages every day.

What this teaches about building connected systems

The lasting lesson is not really about email. It is about the value of simple, unambiguous conventions in systems that have to interoperate. Tomlinson did not invent a complicated new addressing scheme; he picked an existing character that carried no conflicting meaning and gave it one clear job. That clarity is exactly why it scaled.

The same principle runs straight through modern IoT and embedded work. When you design how devices identify themselves on a network, how a firmware update names its target, or how a sensor publishes to an MQTT topic, you are making the same kind of decision Tomlinson made. A naming scheme that is clean, collision-free, and human-readable will quietly keep working as your fleet grows from one prototype to thousands of units. A clever but ambiguous one becomes a tax you pay forever. The best addressing decisions, like the @ sign, are the ones nobody ever has to revisit.

Build on durable foundations

At Fluidwire we build IoT and web systems from silicon to cloud, and that means caring about the unglamorous decisions, such as how devices are addressed, how data is structured, and how firmware talks to the cloud, as much as the features users see. Good plumbing is what lets a product last. If you are turning a connected-device idea or a thesis prototype into something real, take a look at our services or get in touch and we will help you build it on foundations that hold up.

The next time you type an @ into an address bar, remember it is a fifty-year-old engineering shortcut that simply refused to break.