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

推荐订阅源

T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
博客园 - Franky
罗磊的独立博客
宝玉的分享
宝玉的分享
博客园_首页
腾讯CDC
The GitHub Blog
The GitHub Blog
D
DataBreaches.Net
IT之家
IT之家
D
Docker
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
V
V2EX
月光博客
月光博客
N
Netflix TechBlog - Medium
爱范儿
爱范儿
I
InfoQ
P
Proofpoint News Feed

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
I Stopped Writing My Phone Number on My Car Windshield — ...
Profile Tap · 2026-06-19 · via DEV Community
Cover image for I Stopped Writing My Phone Number on My Car Windshield — and Built a QR Sticker Instead

Profile Tap

For two years, my windshield had a laminated card: "In case of blocking, call 98XXXXXXXX."
It made sense. I park in tight lanes — someone always needs to move my car. A number on the dashboard solves that.
It also created a problem I didn't see coming until the spam started.

The problem wasn't the sticker. It was the number.
Once your personal mobile is sitting on a windshield in a public lot, it isn't private anymore. Anyone can copy it. I started getting loan spam, a late-night "saw your car" message, random WhatsApp adds.

And I couldn't take it back. Every photo someone snapped of my dashboard still had my number on it. That's the part nobody talks about: a contact detail printed into the real world never expires.

What I actually wanted
A way for a stranger to reach me about my car without ever seeing my real number.

So I built a small thing: a QR sticker for the rear windshield.

Stranger scans QR
→ opens vehicle profile (no number shown)
→ taps "Call" or "WhatsApp Owner"
→ routed through a proxy
→ owner's real number stays hidden

Change the destination number anytime. The sticker never changes.

The privacy layer was the real work — not the QR
Generating a QR is three lines. The actual engineering was the masked contact routing:

Call masking: the button dials a proxy that forwards to me. The
scanner sees the proxy, never my SIM.
WhatsApp first: in India nobody wants a cold call about a parked car — they want to fire off a quick "gaadi hata do" message. So WhatsApp had to be primary, masking on top.
Revocable: sell the car, detach the profile. The contact was never baked into the physical tag.

If you've built anything with personal data in India, the lesson is familiar: **privacy can't be bolted on later. It has to be the foundation. **The moment "hide the number" became the core instead of an add-on, the whole design got simpler.

India-specific things I had to get right

WhatsApp is the channel, call is secondary. Build the masked WhatsApp flow first or you've built the wrong product.
Monsoon-proofing: UV-resistant vinyl + laminate coat, QR recessed so the print survives sun and rain.
No app for the scanner. The person scanning your car will never download anything. QR opens in any default camera; budget Androids mostly don't do NFC.

What I'd do differently
Build the privacy layer first — before the profile UI, before the sticker. I made the page look nice and retrofitted masking, which is backwards. In India, the privacy layer is the product.
I eventually folded this into ProfileTap's vehicle profile, since the same masked-contact idea applies to pets, luggage, and family tags too — anywhere a stranger needs to reach you without owning your number forever.

If you've shipped anything that puts contact data into the physical world — a tag, sticker, NFC card — how did you handle the "this is now permanent and public" problem? Curious how others think about it for the Indian market.