frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Claude-Native Law Firm

https://twitter.com/zackbshapiro/status/2027389987444957625
1•newy•46s ago•0 comments

Minitest-Strict 1.0.0 for Ruby

https://sferik.github.io/minitest-strict/
1•sferik•50s ago•0 comments

Praia dos Cristais – Tiny Spanish beach covered in sea glass

https://www.atlasobscura.com/places/praia-dos-cristais
1•Brajeshwar•1m ago•0 comments

Nüshu, the 19th-Century Chinese Script Only Women Could Write

https://www.atlasobscura.com/articles/nushu-chinese-script-women
1•Brajeshwar•1m ago•0 comments

Burger King's AI agent will listen to orders and 'coach' workers

https://www.nbcnews.com/business/consumer/burger-king-ai-chatbot-please-thank-you-rcna260848
1•Brajeshwar•1m ago•0 comments

I Rent My Life

https://gregmorris.co.uk/i-rent-my-entire-life/
1•speckx•2m ago•0 comments

We Built Secure, Scalable Agent Sandbox Infrastructure

https://browser-use.com/posts/two-ways-to-sandbox-agents
1•gregpr07•2m ago•0 comments

The File System Is the New Database: How I Built a Personal OS for AI Agents

https://twitter.com/koylanai/status/2025286163641118915
1•gmays•3m ago•0 comments

China's DeepSeek trained AI model on Nvidia's best chip despite US ban

https://www.reuters.com/world/china/chinas-deepseek-trained-ai-model-nvidias-best-chip-despite-us...
1•YeGoblynQueenne•3m ago•0 comments

Elon Musk Moves Against the Russians in Ukraine

https://www.theatlantic.com/national-security/2026/02/elon-musk-ukraine-russia-starlink/686155/
1•JumpCrisscross•4m ago•0 comments

Show HN: Open-source proxy to track Claude API costs by team

https://github.com/reshevyas-png/claude-usage-analytics
1•reshevyas•6m ago•1 comments

Canonical Talks Up RISC-V This Year with Ubuntu 26.04 LTS

https://www.phoronix.com/news/Ubuntu-RISC-V-2026
1•mikece•6m ago•0 comments

How Dada Enables Internal References

https://smallcultfollowing.com/babysteps/blog/2026/02/27/dada-internal-references/
1•vrnvu•7m ago•0 comments

Amazon Bedrock Leaves Builders Stuck in First Gear

https://www.proactiveops.io/archive/amazon-bedrock-leaves-builders-stuck-in-1st-gear/
1•skwashd•7m ago•0 comments

Nasal spray for flu prevention shows promising trial results

https://medicalxpress.com/news/2026-02-nasal-spray-flu-trial-results.html
1•PaulHoule•7m ago•0 comments

DevArch: AI-Assisted Development with Discipline

https://devarch.ai
1•ChicagoDave•8m ago•0 comments

Lessons from Growing a Software Leadership Team

https://www.infoq.com/news/2026/02/software-leadership-team/
1•jimminyx•8m ago•0 comments

Warrant Canary

https://en.wikipedia.org/wiki/Warrant_canary
2•_josh_meyer_•9m ago•0 comments

OpenAI raises $110B on $730B pre-money valuation

https://techcrunch.com/2026/02/27/openai-raises-110b-in-one-of-the-largest-private-funding-rounds...
3•zlatkov•10m ago•0 comments

New California law requires age verification for all OS accounts

https://www.pcgamer.com/software/operating-systems/a-new-california-law-says-all-operating-system...
1•WalterSobchak•10m ago•0 comments

Show HN: Personal AI with Dedicated Hardware and App. Everything Runs Locally

https://www.autonomynext.com
1•bvarghese•10m ago•0 comments

JavaScript DRMs Are Stupid and Useless

https://the-ranty-dev.vercel.app/javascript-drms-are-stupid
2•todsacerdoti•12m ago•0 comments

The confirmation bias trap in startup validation

https://validspark.com/blog/confirmation-bias-trap-startup
1•saas_dev•12m ago•1 comments

Show HN: loopmaster – Code Music

https://loopmaster.xyz
1•stagas•12m ago•0 comments

Show HN: AI video editor for real estate

https://maggi.homes/explore
1•xavdeboisredon•12m ago•0 comments

David Ungar is working on a new Self IDE

https://lists.selflanguage.org/archives/list/self-interest@lists.selflanguage.org/message/T5533RW...
1•trashburger•13m ago•0 comments

Yafukkinhoo Chat v1.0

https://retrochat-4.emergent.host/
1•mr_fuker•17m ago•1 comments

Is GenAI Making Code Generators Obsolete?

https://coding-mischief.com/?p=41
1•luca_takahashi•18m ago•0 comments

I shipped 1000 PRs in a year, AMA

https://pauldambra.dev/2026/02/deca-hundy.html
1•speckx•19m ago•0 comments

Pakistan Strikes Afghanistan in 'Open War' Against Taliban Government

https://www.nytimes.com/2026/02/26/world/asia/pakistan-afghanistan-taliban.html
1•JumpCrisscross•20m ago•0 comments
Open in hackernews

Show HN: Bypassing Stripe's 20-item limit for multi-model AI billing

1•markaroo•1h ago
We’ve been building out the usage-based billing for Tonic Fabricate, and I ran into a Stripe limitation that isn’t really advertised but can completely break your checkout flow if you’re doing multi-model AI billing.

Like many AI-native applications, Fabricate supports a variety of LLMs (Sonnet, Haiku, Opus, etc.) for various agents and tasks. Users pay for usage by the token. We’d love to use Stripe Billing Meters to charge users by the token — I trust Stripe’s math more than my own when it comes to floating point arithmetic with very large numbers.

But Stripe caps subscriptions at 20 items. Each meter requires its own price, which in turn consumes one of those 20 item slots.

This becomes a problem fast with AI. If you multiply 4-5 models by 5 token types (input, output, cached input, and ephemeral cache tiers), you’re already at 20+ meters. Adding even one more model exceeds the limit.

The workaround we settled on was to move the pricing logic entirely into Fabricate and report abstract "billing units" to Stripe instead of raw tokens.

The setup is pretty simple:

1. We created one single meter in Stripe with a fixed price of $0.00000001 per unit.

2. Internally, we assigned an integer multiplier to every model/token combination (e.g., Sonnet input might be 350 units per token, while Haiku cached input is 10).

3. At reporting time, we do the integer math: (tokens * multiplier) for each category, sum them up, and send that one aggregate number to Stripe.

This effectively decouples our model list from Stripe’s API constraints. We can add as many models or token tiers as we want without ever touching Stripe configuration again.

The obvious downside is that the Stripe dashboard just shows a massive number of "units" rather than a breakdown of what the customer actually used. We decided we didn't care. We have our own internal telemetry for usage analytics; Stripe’s only job is to multiply a number by a price and generate a valid invoice.

If you’re setting up usage-based billing with more than a few dimensions, I’d recommend abstracting your units from day one. It’s much easier than trying to migrate your billing architecture once you’ve already hit that 20-item ceiling. And of course if you're Stripe (hi, Stripe!), I really recommend making changes to your product to offer native support for this very popular use case.