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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
博客园 - 【当耐特】
量子位
有赞技术团队
有赞技术团队
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
C
Check Point Blog
B
Blog RSS Feed
M
MIT News - Artificial intelligence
H
Help Net Security
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
腾讯CDC

V2EX

我用 AI 写代码,但终端管理反而成了累赘——于是我做了 codux [调研] 各位在公司都用什么 ide 和 agent 写代码? 老运维 share 一个运维平台 看到有公司考核 token 指标,很好奇大家上个月的 AI 账单是多少 GLM-Coding 调用持续报错: z.ai 的 Lite 套餐几乎无法使用,官方 Pro/Max 是否稳定? 现在还有什么渠道可以稳定安全地使用 Claude 吗? 上海漕河泾内推,本组有 2 个 hc,一个后端,一个前端,预算都是 20k 左右,不打卡,氛围好 如果 V2EX 上有一组不永久保存聊天记录(比如只保存 7 天或者 24 小时)的聊天室,那么会开启哪些有用或者有趣的可能? gemini cli 貌似挂了,一直返回 403 第一次在自媒体上赚到钱 收集了最近在使用的低价 GPT, Gemini,邮箱等 AI 会员的小店合集 讨论个大实话:现在企业还在说 AI 编程提效 20%, 30%的,真的太落后,没用懂 AI。因为包括很多前沿公司,已经狂奔到提效 200%-500%的情况 [招聘][远程][币安] 前端/后端/QA/iOS/Android 至少 3 年以上经验 目前有大量 HC 欢迎投递 Chatgpt Pro 用量用不完的可以开这些设置 面试的时候好像遇到钓鱼了,给各位避个坑 cursor 年续费 22 号到期, 自动续费是否还是老的计次套餐呢 被两件破事毁掉的一下午,琐碎的内耗消磨人的精力 使用 Planet 存储 Codex 的会话或者重要信息 如果业务部门领导不要你开发功能,而是要求你教会它用 claude code 开发功能,你会怎么做? 分享一个 MacOS 接绿联 CM818 USB 转 DP 转接器使用感受 我的 HR 朋友 10 年老 Java ,非全大专,大家帮忙看看简历 开源了一个 AI 口语练习工具,音素级发音评分,完全免费可自部署 V2EX 上有哪些你觉得很有趣、印象深刻的妹纸? 字节为啥不出个国内版 Vercel? 有在大马的朋友吗? 问个运营商问题 你们在有领导的公司大群发过的最大胆的消息是什么 公司裁员,目前没有工作。想试试摆摊,做一个移动鲜啤打酒车 我的硬盘 Memblaze Pblaze 5 Linux 下不识别,给 Linux 内核提交了补丁, AI 说有望被合并 只有我一个人觉得 codex 不好用?
[开源] ReMemory:防备意外的数字遗产工具,基于 Shamir 分割...
eljojo · 2026-03-01 · via V2EX

Hi, I'm José, a developer from Canada. Writing in English since my Chinese isn't up to the task. A community member saw the project on GitHub and invited me here.

大家好,我是 José,来自加拿大的开发者。中文写不好,所以用英文发帖。一位社区成员在 GitHub 上看到了这个项目,邀请我来到 V2EX 。

I ride my bike a lot and I've hit my head before. That got me thinking: what if I can't remember my passwords one day? I don't want to hand one person the keys to everything. ReMemory encrypts your files and splits the decryption key using Shamir's Secret Sharing (any 3 of 5 can recover, nobody alone). Each person gets a self-contained bundle that works in any browser, offline.

我经常骑自行车,也摔伤过头。这让我想到:万一有一天我忘了自己的密码怎么办?我不想把所有密钥交给一个人。ReMemory 会加密你的文件,然后用 Shamir 秘密分享把解密密钥分给你信任的朋友(比如 5 个人中任意 3 个可以恢复,但任何一个人单独无法解密)。每个人会收到一个独立的 bundle ,在任何浏览器中离线即可使用。

recovery interface collecting shares

printed PDF with recovery words and QR code

Architecture / 架构:

  • Bundle creation uses Go → WASM for Hashicorp Vault's Shamir implementation, age encryption, PDF generation, and ZIP packaging 创建 bundle 使用 Go → WASM ,包括 Hashicorp Vault 的 Shamir 实现、age 加密、PDF 生成和 ZIP 打包

  • Recovery is pure JS. Started as Go WASM too but a contributor pointed out it wasn't necessary. Smaller bundles, fewer dependencies for the part that needs to work decades from now 恢复端是纯 JS 。最初也是 Go WASM ,但有贡献者指出没必要。更小的 bundle ,更少的依赖——这部分需要在几十年后依然能用

  • Timelocks use drand (League of Entropy) as decentralized time oracle. Only part needing internet 时间锁使用 drand ( League of Entropy )作为去中心化时间预言机,是唯一需要联网的部分

  • Self-hostable with Docker, but self-hosting is optional since recovery has no backend 支持 Docker 自托管,但自托管是可选的,因为恢复过程没有后端

  • Apache-2.0 license / Apache-2.0 开源协议

The app is in active development and the architecture keeps evolving based on feedback (like the WASM → pure JS change for recovery). I'd love to know what would make this more useful to you. Is there something missing, or something that doesn't fit how you'd actually use it?

项目还在活跃开发中,架构也在根据反馈不断调整(比如恢复端从 WASM 迁移到纯 JS )。很想听听大家的想法:还缺什么功能?有什么地方不符合你的实际使用场景?

Try it / 试试看:download the demo bundles from the releases page, open recover.html, drag in 3 of the 5 share folders. 从 releases 页面下载 demo-bundles.zip ,打开 recover.html ,拖入 5 个分享文件夹中的任意 3 个即可体验。

The project currently has Traditional Chinese (中文(台灣)) and several other languages. 目前项目已有繁体中文(中文(台灣))及其他多种语言。

GitHub: https://github.com/eljojo/rememory
Overview: https://eljojo.github.io/rememory/about.html

Greetings from Canada! 來自加拿大的問候!