Hacker News
AI Agents Now Generate More Web Traffic Than Humans
Article URL: https://www.cnet.com/tech/services-and-software/its-official-agentic-bots-surf-the-web-more-than-real-people-do/
Comments URL: https://news.ycombinator.com/item?id=48417954
Points: 3
# Comments: 0
OpenAI wrote a guide on how to use /goal mode. I made that guide into a skill
Article URL: https://github.com/Infinite-Labs-OS/infinite-skills
Comments URL: https://news.ycombinator.com/item?id=48417952
Points: 1
# Comments: 0
OpenAI Codex Tech Lead Does AI-Assisted Engineering
Article URL: https://newsletter.eng-leadership.com/p/how-openai-codex-tech-lead-does-ai
Comments URL: https://news.ycombinator.com/item?id=48417941
Points: 1
# Comments: 0
Voyd Programming Language v0.2.0 – Effect typing improvements, trailing closures
Article URL: https://voyd.dev/docs/?p=releases
Comments URL: https://news.ycombinator.com/item?id=48417932
Points: 1
# Comments: 0
P/E Tells You the Price. Reality Gap Tells You the Delusion
Article URL: https://hstre.github.io/Reality-Gap/
Comments URL: https://news.ycombinator.com/item?id=48417927
Points: 3
# Comments: 0
Morgan Stanley Sees SpaceX's Revenue Reaching $3.4T in 2040
Article URL: https://www.wsj.com/finance/banking/morgan-stanley-sees-spacexs-revenue-reaching-3-4-trillion-in-2040-c8a7f431
Comments URL: https://news.ycombinator.com/item?id=48417926
Points: 3
# Comments: 3
Hacker News, Sans AI
Article URL: https://elijahpotter.dev/articles/hacker-news-sans-AI
Comments URL: https://news.ycombinator.com/item?id=48417916
Points: 5
# Comments: 0
We built an AI sales agent so you don't have to give every demo of your product
Article URL: https://salescloser.ai/hybrid-chat-va/
Comments URL: https://news.ycombinator.com/item?id=48417914
Points: 1
# Comments: 4
Saylor's Strategy Sells Bitcoin for First Time Since 2022
Article URL: https://www.wsj.com/finance/currencies/saylors-strategy-sells-bitcoin-for-first-time-since-2022-05a531a8
Comments URL: https://news.ycombinator.com/item?id=48417897
Points: 1
# Comments: 0
Playwright for Godot
Article URL: https://github.com/mrf/godot-stagehand
Comments URL: https://news.ycombinator.com/item?id=48417889
Points: 1
# Comments: 1
Meta backs off tracking workers' keystrokes after they revolt
Article URL: https://boingboing.net/2026/06/03/meta-backs-off-tracking-workers-keystrokes-after-they-revolt.html
Comments URL: https://news.ycombinator.com/item?id=48417882
Points: 6
# Comments: 2
Scale Kubernetes deployments to zero using KEDA
Article URL: https://mijndertstuij.nl/posts/scale-to-zero-keda-cron-scaler/
Comments URL: https://news.ycombinator.com/item?id=48417729
Points: 1
# Comments: 0
Open Source, Co-Ops and a History of Bias in Corporate America
Article URL: https://radicaltherapy.substack.com/p/open-source-co-ops-and-a-history
Comments URL: https://news.ycombinator.com/item?id=48417720
Points: 3
# Comments: 0
Nvidia DGX Spark GB10 – AI Models and Guide with vLLM and Autonomous Script
Article URL: https://github.com/omnia-projetcs/spark-dgx
Comments URL: https://news.ycombinator.com/item?id=48416815
Points: 1
# Comments: 0
What people don't get about safety at Anthropic
Article URL: https://twitter.com/kevins8/status/2062969935379513431
Comments URL: https://news.ycombinator.com/item?id=48416794
Points: 1
# Comments: 0
How Elon Musk Killed Hundreds of Thousands of People
Article URL: https://www.currentaffairs.org/news/how-elon-musk-killed-hundreds-of-thousands-of-people
Comments URL: https://news.ycombinator.com/item?id=48416791
Points: 1
# Comments: 0
S&P 500 rejects SpaceX, also blocking entry for OpenAI and Anthropic
How to Stop Shipping Low-Quality RL Environments (With Examples)
Article URL: https://www.latent.space/p/bad-envs
Comments URL: https://news.ycombinator.com/item?id=48416742
Points: 1
# Comments: 0
Show HN: Busbar – every LLM behind one URL, in a single Rust binary
I have been working on multiple projects lately involving AI endpoints (including some I run locally) and I found I needed a way to easily load balance across multiple. Sometimes my on-prem would not be able to handle to load and Id have to crank up the z.ai usage or Anthropic depending on where my credits were at the time.
One thing led to another and I ended up writing Busbar: An LLM gateway, written in Rust (I have a thing for Rust lately). You point your existing OpenAI/Anthropic/Gemini SDK at it, change the model to a pool name, and that name now load-balances across the vendors. Your client code doesn't change and never learns it even happened.
My central idea is "protocols, not providers". I implement six protocols - Anthropic, OpenAI, Gemini, Bedrock, Responses, Cohere - losslessly. You define a provider in three lines of YAML, mainly specifying the protocol that provider speaks.
Your client speaks a protocol in to Busbar and Busbar speaks a protocol out to the provider.
- Each protocol translates request and response, streamed and buffered, in both directions. Same-protocol calls pass through untouched; cross-protocol calls reconcile the awkwardness (a field one dialect requires and another makes optional).
- A circuit breaker that knows whose fault a failure is. It stops routing to a backend that's genuinely failing, but it won't penalize a model for a request that was simply too big (it retries on a larger-context model instead), and it won't blame a backend when the caller sent a bad request. A healthy model never gets pulled from rotation for something that wasn't its fault. All issues I have personally faced and wanted to fix one time in busbar vs 10x in 10 applications.
- Hand-rolled AWS implementations so I am not reliant on AWS SDK's: SigV4 and a from-scratch AWS eventstream frame decoder for Bedrock
It's 1.0.0-rc.2 — feature-complete and API-stable, with release-candidate validation underway before 1.0.0. I have been using it on my projects and its solving my problems nicely.
Solo project, AGPL-3.0. The AGPL choice is open to discussion; I know it matters for a request-path component.
Feedback very welcome, particularly on where the translation might still be lossy in edge cases. Contribution and conversation desired!
Comments URL: https://news.ycombinator.com/item?id=48416730
Points: 1
# Comments: 0
UK orders Google to allow publishers to opt out of AI scraping
Article URL: https://apnews.com/article/google-britain-ai-competition-regulation-ce2016a4519fbe234799e009bac8f120
Comments URL: https://news.ycombinator.com/item?id=48416706
Points: 3
# Comments: 0
