frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: SubSmith – Turn your own videos into language-learning material

https://subsmith.app
33•IbrahimF96•3h ago•38 comments

Show HN: Talos – An AI agent with a permission kernel between model and shell

https://talos-agent.ch/
14•kurdman_007•2h ago•4 comments

Show HN: OpenTIE and OpenXWA, Modern Ports of Tie Fighter and X-Wing Alliance

https://github.com/elyosh/OpenTIE/
198•elyosh•16h ago•49 comments

Show HN: dmx – MCP server for adding configurable, gated loops to coding agents

https://dmx.deepmodel.ai/
2•hpieris•29m ago•1 comments

Show HN: GoodSaaS – Now with per-product pages (Recommended)

https://goodsaas.xyz
2•its_ajseven•35m ago•0 comments

Show HN: Texttile, a multiplayer blog engine for people who write together

https://www.texttile.blog/
6•klausbreyer•2h ago•1 comments

Show HN: We built open OpenRouter that turns usage into a better model

https://github.com/experientiallabs/experiential
199•SilenN•17h ago•41 comments

Show HN: Free Domain Intelligence Engine

https://dnsniffer.com
2•itrinity•1h ago•0 comments

Show HN: OnlyBots.chat – a chatroom where AI pays to post for humans

https://onlybots.chat
3•jonnyasmar•1h ago•4 comments

Show HN: cdai cli – cd with Intent

https://github.com/franzenzenhofer/cdai
2•franze•1h ago•0 comments

Show HN: Text editor and light-weight publishing platform

https://kraa.io/about?s=hn
2•levmiseri•1h ago•0 comments

Show HN: LLM Inference Calculator – Estimate VRAM, Latency, and Throughput

https://llm-inference-calculator-delta.vercel.app/
5•popopanda•1h ago•0 comments

Show HN: Forth MCP – give any remote AI client access to your local MCP servers

https://www.forthmcp.com/
3•eladhefetz•1h ago•0 comments

Show HN: I built a tool showing how AI providers (should) throttle their models

https://throttle.staffinganalytics.io/?src=hn
5•eliotho•1h ago•0 comments

Show HN: Voronoi Go

https://voronoigo.com/
150•igpay•20h ago•22 comments

Show HN: SudoReport – best tech aggregator edited by AI

https://sudoreport.com/
3•ataturkle•2h ago•0 comments

Show HN: Loofah, meeting transcription into a local Markdown vault

https://github.com/bart6114/loofah
4•bart6114•2h ago•0 comments

Show HN: The load-bearing vocabulary of Claude

https://louisabraham.github.io/load-bearing/
619•Labo333•1d ago•298 comments

Show HN: Wolfpack – private browser control for coding-agent terminals

https://get-wolfpack.netlify.app/
3•wolfmaster•2h ago•0 comments

Show HN: FnScribe – Open-source, offline dictation for macOS

https://github.com/AlgorithmicResearchGroup/fnscribe
19•modagent•7h ago•9 comments

Show HN: Sitemap.site – Free XML sitemap generator, checker, and validator

https://sitemap.site
2•gingermanymph•2h ago•0 comments

Show HN: Watches user sessions, finds bugs that matter, and fixes them

https://github.com/opslane/opslane
32•aray07•22h ago•6 comments

Show HN: HTML5 port of Civilization 2: MGE

https://wan0.net/civ2/
4•wan0net•3h ago•0 comments

Show HN: A lightweight, stateless database for agent memory

https://polign.com/blog-edge-agent-memory
33•anuptalwalkar•1d ago•12 comments

Show HN: My Claude quota ran out in 10 minutes, so I made a tool to find out why

https://github.com/kelviq/tare
84•sachinneravath•21h ago•60 comments

Show HN: Restoredrill – proves your Postgres backups restore

https://github.com/ahmadpiran/restoredrill
45•ahmadpiran•1d ago•22 comments

Show HN: IndexFlow – Open-source indexing infrastructure built with Rust

https://github.com/IndexFlowing/IndexFlow-core
22•mandarinclips•11h ago•6 comments

Show HN: Scheduled Claude Code agents that cost nothing on a quiet day

https://github.com/shadok-ai/shadok-ai
3•gnarco2•6h ago•1 comments

Show HN: RealDiff – runtime behavior diffing for pull requests (six languages)

https://github.com/issacnitin/RealDiff
40•issacnitin•1d ago•9 comments

Show HN: Pi-Black – Use Your Claude Max (Or Pro) Subscription with Pi

https://github.com/paoloanzn/pi-black
6•paoloanzn•13h ago•0 comments
Open in hackernews

Show HN: I built a tool showing how AI providers (should) throttle their models

https://throttle.staffinganalytics.io/?src=hn
5•eliotho•1h ago
OP here: this project was born out of the frustration/paranoia that AI providers are throttling their models when their server load is too high. So, I set out to model and study the problem mathematically to understand what was happening, what I found was quite surprising.

The idea seems natural: as the data center demand increases momentarily through the day, throttling their models (either using quantized versions, reducing the context window or lowering the tier of the model to a smaller one) seems appealing as the replacement model in principle uses less electricity. The problem is that this can cause the opposite effect: as users are trying to solve a question, if the degraded AI model gives a bad answer, the user is likely to keep re-asking. On the AI provider side this looks paradoxical: throttling to a lower model creates in fact more demand for their data center.

This problem is even worse for agentic workflows, as these are more likely to create a re-ask storm, and maybe explains the outages and anecdotal experiences of users that feel the models are degraded.

The model: I used mainly queueing theory arguments solving the optimal scheduling serving for an AI fleet with heterogeneous users solving a finite horizon Dynamic Programming optimization problem.

Insights: The industry standard practice of throttling once the number of users in system exceeds a given threshold is in fact what’s causing the problem, the optimal rule implies separating users that won’t feel degradation as much with users that are very sensitive to it (agents and power users vs users doing simple tasks).

Limitations: The visualization and paper examples are a toy example to illustrate the problem, only the providers have enough data to properly calibrate these instances. In the paper there are some interesting calibrated instances.

Technical Details: The visualization is around 100 lines of flask plus js frontend (LLM assisted with ground truth based on the original numerical example of the paper).

Paper with proofs/theory: https://arxiv.org/abs/2608.23986