Home

Temporal: A nine-year journey to fix time in JavaScript
robpalmer about 8 hours ago

Temporal: A nine-year journey to fix time in JavaScript

The article discusses the Temporal API, a new JavaScript standard that simplifies date and time manipulation. It provides an overview of the Temporal API's features, including its ability to handle time zones, calendars, and various date/time formats.

bloomberg.github.io
429 148
Summary
The dead Internet is not a theory anymore
hubraumhugo about 3 hours ago

The dead Internet is not a theory anymore

The article explores the concept of the 'Dead Internet Theory,' which suggests that a significant portion of the internet's content is generated by artificial intelligence and bots, rather than real human users. The author examines the potential implications of this phenomenon on the way we perceive and interact with online information.

adriankrebs.ch
291 200
Summary
BitNet: 100B Param 1-Bit model for local CPUs
redm about 11 hours ago

BitNet: 100B Param 1-Bit model for local CPUs

BitNet is an open-source project by Microsoft that aims to provide a scalable and efficient blockchain network for decentralized applications. The project explores novel consensus mechanisms and optimization techniques to address the performance and scalability challenges of traditional blockchain platforms.

github.com
280 146
Summary
Google closes deal to acquire Wiz
aldarisbm about 8 hours ago

Google closes deal to acquire Wiz

Previously: Google to buy Wiz for $32B - https://news.ycombinator.com/item?id=43398518 - March 2025 (845 comments)

wiz.io
182 125
Summary
Show HN: I built a tool that watches webpages and exposes changes as RSS
vkuprin about 7 hours ago

Show HN: I built a tool that watches webpages and exposes changes as RSS

I built Site Spy after missing a visa appointment slot because a government page changed and I didn’t notice for two weeks.

It watches webpages for changes and shows the result like a diff. The part I think HN might find interesting is that it can monitor a specific element on a page, not just the whole page, and it can expose changes as RSS feeds.

So instead of tracking an entire noisy page, you can watch just a price, a stock status, a headline, or a specific content block. When it changes, you can inspect the diff, browse the snapshot history, or follow the updates in an RSS reader.

It’s a Chrome/Firefox extension plus a web dashboard.

Main features:

- Element picker for tracking a specific part of a page

- Diff view plus full snapshot timeline

- RSS feeds per watch, per tag, or across all watches

- MCP server for Claude, Cursor, and other AI agents

- Browser push, Email, and Telegram notifications

Chrome: https://chromewebstore.google.com/detail/site-spy/jeapcpanag...

Firefox: https://addons.mozilla.org/en-GB/firefox/addon/site-spy/

Docs: https://docs.sitespy.app

I’d especially love feedback on two things:

- Is RSS actually a useful interface for this, or do most people just want direct alerts?

- Does element-level tracking feel meaningfully better than full-page monitoring?

sitespy.app
123 37
Summary
Show HN: Klaus – OpenClaw on a VM, batteries included
robthompson2018 about 8 hours ago

Show HN: Klaus – OpenClaw on a VM, batteries included

We are Bailey and Robbie and we are working on Klaus (https://klausai.com/): hosted OpenClaw that is secure and powerful out of the box.

Running OpenClaw requires setting up a cloud VM or local container (a pain) or giving OpenClaw root access to your machine (insecure). Many basic integrations (eg Slack, Google Workspace) require you to create your own OAuth app.

We make running OpenClaw simple by giving each user their own EC2 instance, preconfigured with keys for OpenRouter, AgentMail, and Orthogonal. And we have OAuth apps to make it easy to integrate with Slack and Google Workspace.

We are both HN readers (Bailey has been on here for ~10 years) and we know OpenClaw has serious security concerns. We do a lot to make our users’ instances more secure: we run on a private subnet, automatically update the OpenClaw version our users run, and because you’re on our VM by default the only keys you leak if you get hacked belong to us. Connecting your email is still a risk. The best defense I know of is Opus 4.6 for resilience to prompt injection. If you have a better solution, we’d love to hear it!

We learned a lot about infrastructure management in the past month. Kimi K2.5 and Mimimax M2.5 are extremely good at hallucinating new ways to break openclaw.json and otherwise wreaking havoc on an EC2 instance. The week after our launch we spent 20+ hours fixing broken machines by hand.

We wrote a ton of best practices on using OpenClaw on AWS Linux into our users’ AGENTS.md, got really good at un-bricking EC2 machines over SSM, added a command-and-control server to every instance to facilitate hotfixes and migrations, and set up a Klaus instance to answer FAQs on discord.

In addition to all of this, we built ClawBert, our AI SRE for hotfixing OpenClaw instances automatically: https://www.youtube.com/watch?v=v65F6VBXqKY. Clawbert is a Claude Code instance that runs whenever a health check fails or the user triggers it in the UI. It can read that user’s entries in our database and execute commands on the user’s instance. We expose a log of Clawbert’s runs to the user.

We know that setting up OpenClaw is easy for most HN readers, but I promise it is not for most people. Klaus has a long way to go, but it’s still very rewarding to see people who’ve never used Claude Code get their first taste of AI agents.

We charge $19/m for a t4g.small, $49/m for a t4g.medium, and $200/m for a t4g.xlarge and priority support. You get $15 in tokens and $20 in Orthogonal credits one-time.

We want to know what you are building on OpenClaw so we can make sure we support it. We are already working with companies like Orthogonal and Openrouter that are building things to make agents more useful, and we’re sure there are more tools out there we don’t know about. If you’ve built something agents want, please let us know. Comments welcome!

klausai.com
102 60
Summary
Physicist Astrid Eichhorn is a leader in the field of asymptotic safety
tzury about 8 hours ago

Physicist Astrid Eichhorn is a leader in the field of asymptotic safety

The article explores the work of theoretical physicist Natalie Wolchover, who is investigating the possibility that space-time may be made of fractals, rather than strings. Wolchover's unconventional approach to understanding the fundamental nature of reality challenges the traditional string theory framework.

quantamagazine.org
98 14
Summary
I'm glad the Anthropic fight is happening now
emschwartz about 4 hours ago

I'm glad the Anthropic fight is happening now

The article discusses the relationship between Dow Chemical Company and Anthropic, a leading AI research company. It explores Dow's investment in Anthropic and the potential collaboration between the two organizations in advancing AI technology and sustainability initiatives.

dwarkesh.com
96 96
Summary
Show HN: Open-source browser for AI agents
theredsix about 9 hours ago

Show HN: Open-source browser for AI agents

Hi HN, I forked chromium and built agent-browser-protocol (ABP) after noticing that most browser-agent failures aren’t really about the model misunderstanding the page. Instead, the problem is that the model is reasoning from a stale state.

ABP is designed to keep the acting agent synchronized with the browser at every step. After each action (click, type, etc), it freezes JavaScript execution and rendering, then captures the resulting state. It also compiles the notable events that occurred during that action loop, such as navigation, file pickers, permission prompts, alerts, and downloads, and sends that along with a screenshot of the frozen page state back to the agent.

The result is that browser interaction starts to feel more like a multimodal chat loop. The agent takes an action, gets back a fresh visual state and a structured summary of what happened, then decides what to do next from there. That fits much better with how LLMs already work.

A few common browser-use failures ABP helps eliminate: * A modal appears after the last Playwright screenshot and blocks the input the agent was about to use * Dynamic filters cause the page to reflow between steps * An autocomplete dropdown opens and covers the element the agent intended to click * alert() / confirm() interrupts the flow * Downloads are triggered, but the agent has no reliable way to know when they’ve completed

As proof, ABP with opus 4.6 as the driver scores 90.5% on the Online Mind2Web benchmark. I think modern LLMs already understand websites, they just need a better tool to interact with them. Happy to answer questions about the architecture, forking chrome or anything else in the comments below.

Try it out: `claude mcp add browser -- npx -y agent-browser-protocol --mcp` (Codex/OpenCode instructions in the docs)

Demo video: https://www.loom.com/share/387f6349196f417d8b4b16a5452c3369

github.com
90 27
Summary
Hisense TVs force owners to watch intrusive ads
CharlesW about 4 hours ago

Hisense TVs force owners to watch intrusive ads

Hisense TVs are displaying intrusive ads to users when they switch inputs, visit the home screen, or change channels, causing outrage among consumers. The electronics company denies any wrongdoing, but the practice has drawn significant criticism from disgruntled customers.

tomshardware.com
72 31
Summary
I was interviewed by an AI bot for a job
speckx about 5 hours ago

I was interviewed by an AI bot for a job

https://archive.ph/DEwy7

schwarztech.net
62 59
Summary
UK MPs give ministers powers to restrict Internet for under 18s
robtherobber about 9 hours ago

UK MPs give ministers powers to restrict Internet for under 18s

The article discusses the UK government's plans to grant ministers the power to restrict access to the entire internet, as part of the Online Safety Bill. This move has raised concerns about censorship and the potential for abuse of these broad powers.

openrightsgroup.org
61 46
Summary
Britain is ejecting hereditary nobles from Parliament after 700 years
divbzero about 2 hours ago

Britain is ejecting hereditary nobles from Parliament after 700 years

The UK House of Lords has voted to expel all remaining hereditary peers, marking the end of a centuries-old tradition. This move aims to make the upper chamber more representative and accountable, as the government continues its efforts to reform the House of Lords.

apnews.com
51 23
Summary
Fungal Electronics (2021)
byt3h3ad about 7 hours ago

Fungal Electronics (2021)

This article presents a novel framework for training large language models in a more efficient and scalable manner, using a technique called 'LoRA' (Low-Rank Adaptation). The authors demonstrate significant performance improvements on a range of natural language processing tasks while requiring only a small fraction of the original model's parameters to be updated.

arxiv.org
50 6
Summary
Elevated errors on login with Claude Code
zurfer about 8 hours ago

Elevated errors on login with Claude Code

The article discusses a status update on an incident affecting the Claude AI service, providing details on the incident, the response, and the current status of the service.

status.claude.com
37 18
Summary
Many SWE-bench-Passing PRs would not be merged
mustaphah about 2 hours ago

Many SWE-bench-Passing PRs would not be merged

The article discusses how many software engineering benchmarking pull requests that pass tests would not be merged into the main codebase, highlighting the challenges of balancing automated testing and human review in software development.

metr.org
33 1
Summary
Where did you think the training data was coming from?
speckx about 10 hours ago

Where did you think the training data was coming from?

The article discusses the origins of the training data used by Meta (Facebook) to develop their AI-powered smart glasses. It examines how Meta acquired and used data from various sources, including social media platforms, to train their computer vision algorithms for the glasses.

idiallo.com
30 3
Summary
What Is a Tort?
bookofjoe about 3 hours ago

What Is a Tort?

The article examines the concept of tort law, exploring its evolution, core principles, and the ongoing debate surrounding its role in modern society. It discusses the historical foundations of tort law and its current applications in addressing civil wrongs and providing remedies for individuals harmed by the actions of others.

harvardlawreview.org
19 21
Summary
Wired headphone sales are exploding. What's with the Bluetooth backlash?
billybuckwheat about 4 hours ago

Wired headphone sales are exploding. What's with the Bluetooth backlash?

This article compares the advantages and disadvantages of wired and Bluetooth headphones, highlighting that wired headphones offer better sound quality and reliability, while Bluetooth headphones provide more convenience and flexibility.

bbc.com
14 2
Summary
We Were Right About Havana Syndrome
Bender about 3 hours ago

We Were Right About Havana Syndrome

The article discusses the latest developments in the investigation of 'Havana Syndrome', a mysterious medical condition affecting U.S. government personnel worldwide. It suggests that the initial hypothesis of a directed-energy attack was correct, and that the Biden administration's efforts to uncover the cause and perpetrator of these incidents have been making progress.

warontherocks.com
14 3
Summary