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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
GbyAI
GbyAI
M
MIT News - Artificial intelligence
美团技术团队
罗磊的独立博客
雷峰网
雷峰网
量子位
博客园 - 【当耐特】
Last Week in AI
Last Week in AI
D
Docker
小众软件
小众软件
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
WordPress大学
WordPress大学
V
V2EX
博客园_首页
腾讯CDC
The Cloudflare Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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: Net worth tracker to replace your spreadsheet, E...
pedromlsreis · 2026-06-24 · via HN's home page

I started tracking my net worth when I started working in 2019 and I used a spreadsheet for that. But, having accounts in multiple currencies and updating it every month got old. I wanted to look at the numbers on my phone in a queue, but ended up rebuilding formulas at my laptop every month. Also, I didn't want to hand my bank logins to a third-party aggregator to get there. So I built the tool I've always wanted: without bank connections, syncing the same dashboard on every device, and making sure the data was encrypted in my browser so the server can't read it.

You submit your balances or start by uploading an Excel file, and Quantive gives you the things a spreadsheet makes you fight for, like the constantly evolving allocation by asset type and liquidity, drawdown stats and forecasts, and multi-currency totals where a balance from 3 years ago is valued at that day's FX rate (not today's). It syncs across devices, so you can now check those numbers also from your phone.

The part I cared most about was for your portfolio to be encrypted in your browser with a key derived from your password before anything reaches the server. The server only stores ciphertext, so a passive database leak reveals nothing about your financials, and there's no third-party aggregator on my side. XChaCha20-Poly1305 and Argon2id (via libsodium), an optional 24-word recovery code, and the crypto module is MIT. The full threat model, including what I deliberately do not defend against can also be found in the design doc below. That's the part I'd most like critique on.

Live: https://usequantive.app

Try it on a mock portfolio with no sign-up: https://usequantive.app/demo

Repo: https://github.com/pedromlsreis/quantive (crypto module MIT; the rest source-available under PolyForm Noncommercial 1.0.0)

Design doc, with the threat model and what's tested vs not: https://github.com/pedromlsreis/quantive/blob/main/docs/secu...

The Free tier will remain forever, and I will never be cutting down on usability. Pro adds full history, forecasting, benchmarks against EU inflation and the S&P 500, a PDF report, and CSV/Excel exports. Also, in line with the privacy philosophy, all the existing analytics are opt-in and anonymous - everything disclosed in the /privacy page. I'd be happy to hear your comments, especially from anyone who has wrestled with this in a spreadsheet before.