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

推荐订阅源

A
About on SuperTechFans
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
宝玉的分享
宝玉的分享
美团技术团队
量子位
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
爱范儿
爱范儿
J
Java Code Geeks
博客园 - Franky
Last Week in AI
Last Week in AI
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
GbyAI
GbyAI
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog

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 Built a Messenger That Works Without the Internet — And...
Farshid Mahmoudi · 2026-06-25 · via DEV Community

A quiet experiment in Bluetooth, offline communication, and why we gave up too much when we handed our conversations to the cloud.

The last time I was truly unreachable, I was in a place with no cell signal and no Wi-Fi. And I realized something strange: I had no way to send a message to the person sitting three feet away from me — because every app on my phone needed the internet to do it.

That felt wrong.

We've built the most sophisticated communication technology in human history, and somehow it all routes through a handful of servers in Northern Virginia before reaching someone in the same room.

So I built Bluetoosh.

The Premise: What If the Network Was Just… You and Me?

Bluetoosh is a peer-to-peer messenger that runs entirely over Bluetooth. No internet. No servers. No accounts. No cloud storage. Just two devices, talking to each other the way devices were always capable of doing — directly.

You open the app. You see who's nearby. You start a conversation.

That's it.

No phone number required. No email verification. No terms of service asking you to agree that your metadata might be used for advertising. The only network involved is the six feet of air between you and the other person.

Why Bluetooth?

Bluetooth is one of the most underrated communication protocols we carry around every day. Your phone already has it. Your laptop has it. Most people use it for headphones and nothing else.

But Bluetooth is capable of much more. It can discover nearby devices, establish encrypted connections, and transfer data — all without touching the internet. The range is roughly 10–30 meters in open space. That covers a room, a floor, a campsite.

Bluetoosh uses both BLE (Bluetooth Low Energy) and Classic Bluetooth, plus Google Nearby Connections for mesh-style discovery. In practice, this means you can find people around you, chat, share files, and even make voice calls — all completely offline.

What It Actually Does

Here's what surprised me most while building this: offline communication doesn't have to mean limited communication.

Bluetoosh supports:

One-to-one private conversations
Group chats with admin controls
Image, video, document, and voice note sharing (chunked file transfer over Bluetooth)
Voice calls (8kHz PCM audio streaming)
Video calls — a low-fps JPEG slideshow mode at around 2 frames per second, which sounds absurd until you're in a basement with no signal and it's the only thing that works

Everything is stored locally and encrypted with AES-256-CBC. The encryption keys live in your device's secure storage — iOS Keychain or Android EncryptedSharedPreferences. There is no server that could be hacked, no database that could be subpoenaed, no company that holds your keys.

If you want to wipe everything, there's a "Delete My Data" button that permanently erases all messages, media, keys, and your profile. It plays a pixel skull animation while it does it, which I think is the correct amount of drama for the occasion.

The Aesthetic: Why 8-Bit?

This one gets asked a lot.

The app uses a retro 8-bit visual style — pixel art avatars, the "Press Start 2P" font, CRT scanline overlays. It looks like a video game from 1987.

The reasoning is simple: Bluetooth messenger apps exist in a weird cultural space. They're niche, they're technical, and they can feel cold or paranoid if you frame them wrong. The retro aesthetic makes the whole thing feel playful. It signals that this isn't a tool for people who are afraid of something — it's a tool for people who think differently about how communication should work.

Privacy doesn't have to be grim. It can be fun.

Who Actually Needs This?

More people than you'd think.

Festival attendees whose carrier networks collapse under load. Hikers and campers in areas with no coverage. People in regions with internet restrictions, where messaging apps are monitored or blocked. Security researchers and journalists who need genuine air-gap communication. Teachers who want a simple local chat for a classroom exercise. Anyone who's ever been in a basement, a bunker, a rural cabin, or a crowded stadium and needed to reach someone five meters away.

And increasingly: people who are simply tired of the assumption that every conversation must pass through someone else's infrastructure.

The Honest Trade-offs

I'm not going to pretend Bluetooth is a replacement for the internet.

The bandwidth ceiling on Classic Bluetooth is around 720 Kbps. That's why video calls run at 2fps. That's why large file transfers take longer than you'd expect. That's why this isn't going to replace WhatsApp for your daily group chat.

The range is limited. The connection setup can be finicky depending on the device. And mesh networking over Bluetooth, while genuinely possible, is still a work in progress.

But here's the thing: those limitations are also the point. Bluetoosh is for the moments when the alternative is nothing. When you're somewhere the cloud can't reach. When you'd rather communicate imperfectly than not at all — or when you'd rather communicate privately than conveniently.

It's Open Source

The full source code is on GitHub. MIT licensed. Built in Flutter (Dart 3), so it runs on Android, iOS, Windows, macOS, and web from a single codebase.

I built this because I wanted it to exist. I'm sharing it because I think more people should think about what we've quietly given up by assuming every message needs a server.

Download

🪟 Windows: Microsoft Store
🤖 Android: Google Play
💻 Source Code: github.com/6arshid/bluetoosh

No signup. No server. No nonsense.

Just Bluetooth.

If this resonated with you — or if you've thought about communication, privacy, and infrastructure in similar ways — I'd love to hear from you. That's what Substack comments are for.