Hacker News
Latest
QGIS 4.0
2026-03-07 @ 08:53:47Points: 48Comments: 1
Sarvam 105B, the first competitive Indian open source LLM
2026-03-07 @ 07:43:57Points: 44Comments: 7
UUID package coming to Go standard library
2026-03-07 @ 02:03:21Points: 195Comments: 109
LLMs work best when the user defines their acceptance criteria first
2026-03-07 @ 01:17:57Points: 227Comments: 177
Show HN: Kula – Lightweight, self-contained Linux server monitoring tool
2026-03-07 @ 00:07:25Points: 55Comments: 26
Tell HN: I'm 60 years old. Claude Code has re-ignited a passion
2026-03-07 @ 00:05:06Points: 436Comments: 309
Plasma Bigscreen – 10-foot interface for KDE plasma
2026-03-06 @ 23:59:16Points: 429Comments: 125
Helix: A post-modern text editor
2026-03-06 @ 23:53:29Points: 145Comments: 54
C# strings silently kill your SQL Server indexes in Dapper
2026-03-06 @ 22:55:37Points: 100Comments: 73
this css proves me human
2026-03-06 @ 21:52:44Points: 266Comments: 88
The shady world of IP leasing
2026-03-06 @ 21:19:25Points: 112Comments: 69
Launch HN: Palus Finance (YC W26): Better yields on idle cash for startups, SMBs
2026-03-06 @ 18:26:21Points: 51Comments: 76
We were funded by YC for a consumer-focused product for higher-yield savings. But when we joined YC and got our funding, we realized we needed the product for our own startup’s cash reserves, and other startups in the batch started telling us they wanted this too.
We realized that traditional startup treasury products do much the same thing: open a brokerage account, sweep your cash into a money market fund (MMF), and charge a management fee. No strategy involved. (There is actually one widely-advertised treasury product that differentiates on yield, but instead of an MMF it uses a mutual fund where your principal is at considerable risk – it had a 9% loss in 2022 that took years to recover.)
I come from a finance background, so this norm felt weird to me. The typical startup cashflow pattern is a large infusion from a raise covering 18–24 months of burn, drawn down gradually. That's a lot of capital sitting idle for a long time, where even a modest yield improvement compounds into real money.
MMFs are the lowest rung of what's available in fixed income. Yes, they’re very safe and liquid, but when you leave your whole treasury in one, you’re giving up yield to get same-day liquidity on cash you won’t touch for six months or more. Big companies have treasury teams that actively manage their holdings and invest in a range of safe assets to maximize yield. But those sophisticated bond portfolios were just never made accessible to startups. That’s what we’re building.
Our bond portfolio holds short-duration floating-rate agency mortgage-backed securities (MBS), which are an ideal, safe, high-yielding asset for long-term startup cash reserves under most circumstances.[1]
The bond portfolio is managed by Regan Capital, which runs MBSF, the largest floating-rate agency MBS ETF in the country. Right now we're using MBSF to generate yields for customers (you can see its historical returns, including dividends, here: https://totalrealreturns.com/n/USDOLLAR,MBSF). We're working with Regan to set up a dedicated account with the same strategy, which will let us reduce fees and give each startup direct ownership of the underlying securities. All assets are held with an SEC-licensed custodian.
Based on historical returns, we target 4.5–5% returns vs. roughly 3.5% from most money market funds.[2] Liquidity is typically available in 1-2 business days. We will charge a flat 0.25% annual fee on AUM, compared to the 0.15–0.60%, depending on balance, charged by other treasury providers.
We think that startup banking products themselves (Brex, Mercury, etc.) are genuinely good at what they do: payments, payroll, card management. The problem is the treasury product bundled with them, not the bank. So rather than building another neobank, we built Palus to connect to your existing bank account via Plaid. Our goal was to create the simplest possible UX for this product: two buttons and a giant number that goes up.
See here: https://www.youtube.com/watch?v=8Q_gwSqtnxM
We are live with early customers from within YC, and accepting new customers on a rolling basis; you can sign up at https://palus.finance/.
We'd love feedback from founders who've thought about idle cash management or people with a background in fixed-income and structured products. Happy to go deep in the comments.
[1] Agency MBS are pools of residential mortgages guaranteed by federal government agencies (Ginnie Mae, Fannie Mae, and Freddie Mac). It's a $9T market with the same government backing and AAA/AA+ rating as the Treasuries in a money market fund. No investor has ever lost money in agency MBS due to borrower default.
It's worth acknowledging that many people associate “mortgage-backed securities” with the 2008 financial crisis. But the assets that blew up in 2008 were private-label MBS, bundles of risky subprime mortgages without federal guarantees. Agency MBS holders suffered no credit losses during the crisis, and post-2008 underwriting standards became even stricter. If anything, 2008 was evidence for the safety of agency MBS, not against it.
The agency guarantee eliminates credit risk. Our short-duration, floating-rate strategy addresses the other main risk: price risk. Fixed-rate bonds lose value when rates rise, but floating-rate bonds reset their coupon based on the SOFR benchmark, protecting against interest rate movements.
[2] This comes from the historical spread between MMFs and floating-rate agency MBS; MMFs typically pay very close to SOFR, while the MBS pay SOFR + 1 to 1.5%. This means that if the Federal Reserve changes interest rates and SOFR moves, both asset types will move by about the same amount, and that 1-1.5% premium will remain.
This post is for educational purposes only and does not constitute financial, investment, or legal advice. Past performance does not guarantee future results. Yields and spreads referenced are approximate and based on historical data.
Tech employment now significantly worse than the 2008 or 2020 recessions
2026-03-06 @ 17:46:45Points: 889Comments: 589
Entomologists use a particle accelerator to image ants at scale
2026-03-06 @ 15:53:32Points: 129Comments: 24
A tool that removes censorship from open-weight LLMs
2026-03-06 @ 14:27:55Points: 169Comments: 78
Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting
2026-03-06 @ 14:22:59Points: 257Comments: 140
What it does today: - Full packet layer for the classic UO client (login, movement, items, mobiles) - Lua scripting for item behaviors (double-click a potion, open a door — all defined in Lua, no C# recompile) - Spatial world partitioned into sectors with delta sync (only sends packets for new sectors when crossing boundaries) - Snapshot-based persistence with MessagePack - Source generators for automatic DI wiring, packet handler registration, and Lua module exposure - NativeAOT support — the server compiles to a single native binary - Embedded HTTP admin API + React management UI - Auto-generated doors from map statics (same algorithm as ModernUO/RunUO)
Tech stack: .NET 10, NativeAOT, NLua, MessagePack, DryIoc, Kestrel
What's missing: Combat, skills, weather integration, NPC AI. This is still early — the focus so far has been on getting the architecture right so adding those systems doesn't require rewiring everything.
Why not just use ModernUO/RunUO? Those are mature and battle-tested. I started this because I wanted to rethink the architecture from scratch: strict network/domain separation, event-driven game loop, no inheritance-heavy item hierarchies, and Lua for rapid iteration on game logic without recompiling.
CT Scans of Health Wearables
2026-03-06 @ 14:16:06Points: 218Comments: 47
Workers who love ‘synergizing paradigms’ might be bad at their jobs
2026-03-06 @ 13:30:54Points: 559Comments: 313
Hardening Firefox with Anthropic's Red Team
2026-03-06 @ 11:53:18Points: 569Comments: 154
Show HN: 1v1 coding game that LLMs struggle with
2026-03-06 @ 06:47:29Points: 22Comments: 6
It's purely a passion project with no monetization aspirations. And it's open source: https://github.com/riesvile/yare
The first version 'launched' several years ago and I got some good feedback here: https://news.ycombinator.com/item?id=27365961 that I iterated on.
The latest overhaul is a result of simplifying everything while still keeping the skill ceiling high. And at least the LLMs seem to struggle with this challenge for now (I run a small tournament between major models - results and details here: https://yare.io/ai-arena
I'd love to hear your thoughts