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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

HN's home page

Rainbow Query Language | Hacker News Exec into Node via Kubectl An AI native hedge fund The Seven-Action Documentation Model | Hacker News Package Manager for Kubectl Plugins Tongan Castaways | Hacker News Tech overlords plan for conscious AI to conquer the cosmos. What could go wrong? Data Breach Disclosure Lag Is Getting Worse How LLMs Work | Hacker News I Dropped PRDs for Shape Up Go Experiments Explained | Hacker News FCA's Palantir deal could expose UK financial data to Trump's US, critics fear WebXR BCI for Neural-Adaptive Avatar Control in Mixed Reality The first murder conviction via DNA analysis Tom Interviews Theo de Raadt of the OpenBSD Project (2019) [video] Show HN: Replace shell commands with bun shell typescript scripts Quay.io Is Down | Hacker News AI driven analysis of brokerage account fees in the UK Bill Gates Spent Years Crafting His Image. Now It's Cracking Using LLMs to secure source code Wi-Fi 8 in the Lab [video] The household battery revolution that could change energy bills and the world Is Python Becoming Pinyin? | Hacker News Livia – Executive Assistant | Hacker News FindMyPipe – Query Apple Find My from Linux for AI Agents Show HN: Agent skill for creating product launch videos with Remotion RecruitMyself – AI job search copilot for resumes and applications AI coding agents and the erosion of system understanding The 'Resting' Generation and South Korea's Youth Recession AMD Computex 2026: 10 Years of AM4, AM5 Support Through 2029
Show HN: Engye – transfer files between any two devices b...
psafronov · 2026-06-28 · via HN's home page

Early in April I needed to print some tax forms at the library, first time in forever, and I began to wonder: what's the easiest way to get a file onto a public computer?

There are many ways, but most of them involve creating an account somewhere or plugging in a thumb-drive. I use a password manager, so my passwords are long and complicated, not easily typed. I don't want to plug anything into a public computer, nor do I fancy uploading my taxes to some random website.

I thought about what a helpful product would looks like, and in about an hour I spun up the first version, https://gitlab.com/PavelSafronov/engye/-/tree/09f6ca401246b2...: a static Vite TS site, hosted on GitLab Pages, which uses a QR code to connect two instances of the website using WebRTC.

Now all I had to do was navigate to a URL on the library computer, scan the generated QR code, choose the tax file on my phone, and the library computer instantly downloaded it.

After the library trip, I looked further into this space, and found that no one solved the specific combination of cross-network, no install, no account, no cloud. Snapdrop and PairDrop are similar sites but are LAN-only or require a public room. LocalSend requires installing software on both devices, which makes that impractical for public devices. And other solutions were either hardware locked (AirDrop, Quick Share), required uploading files to the cloud (Google Drive, Dropbox), or sent data through their own servers (Wormhole).

So with some determination, night and weekend coding, and plenty of scope creep, we have...

Engye, pronounced "an-jee" like the name Angie, is available at https://engye.fuzzyworld.net and can be used to do a whole lot with just a QR code and no accounts: - send a file: users download it from your browser tab - collect files: users upload files to your browser/desktop - clipboard share: users share a single text box, good for sharing short text - virtual drive: Engye Drive allows you to create and attach a virtual thumb drive

Think I may have gotten carried away with that last one. ¯\_(ツ)_/¯

My honest hope with this was to make thumb drives obsolete for MOST uses. (Almost named this project "We Break Thumb(drive)s" as a reference to the Simpsons, but couldn't get the name to work out.) It's 2026, it should be trivially simple to transfer a document from one device to another!

So I decided to make this obvious and simple project, and I think it can be quite helpful for a lot of people. It's not practical to use this app for transferring 4K movies (a large file would crash the browser, since we load the data into memory twice), but for most people's use-cases of transferring a handful of pictures and documents here and there, this project should simplify things a lot.

Engye Drive was a fun, nerdy addition after I got the basics working. I really wanted to be able to connect a virtual drive just by scanning a QR code. The web app provides full access to an Engye Drive, and by installing an npm package you can even auto-mount the drive in Finder or Explorer.

For security the app uses AES-256-GCM and new IV per each request, so your data is always encrypted between browsers. If TURN or other relays are used, they never see the plaintext, so you're safe from a MITM attack. The encryption key is in the QR code, so only people who scan your code can share data with you.

There are no accounts, and closing the browser terminates the connection. If you do need a longer session or offline usage, you can install Android/iPhone apps that run Engye in the background.

This project also served as a personal experiment in agentic coding. I designed the app, instructed Claude to implement it, then iteratively developed the app by chatting with Claude over the course of about three months.

Code’s on GitLab, AGPL-3.0 — free to use and self-host: https://gitlab.com/PavelSafronov/engye

Happy to hear what others think.