Top stories

eastdakota about 4 hours ago

Cloudflare outage on November 18, 2025 post mortem

Related: Cloudflare Global Network experiencing issues - https://news.ycombinator.com/item?id=45963780 - Nov 2025 (1580 comments)

blog.cloudflare.com
515 321
Summary
preek about 13 hours ago

Gemini 3

https://blog.google/technology/developers/gemini-3-developer...

https://aistudio.google.com/prompts/new_chat?model=gemini-3-...

aistudio.google.com
1,216 791
Summary
Google Antigravity
Fysi about 12 hours ago

Google Antigravity

https://antigravity.google/blog/introducing-google-antigravi...

https://www.youtube.com/watch?v=nTOVIGsqCuY

antigravity.google
737 777
Pebble, Rebble, and a path forward
phoronixrly about 10 hours ago

Pebble, Rebble, and a path forward

The article discusses the Pebble smartwatch, its discontinuation, and the Rebble community's efforts to keep the platform alive by providing alternative firmware and services. It explores the challenges and the community's determination to ensure a continued path forward for Pebble users.

ericmigi.com
342 165
Summary
FrostKiwi about 6 hours ago

Blender 5.0

Blender 5.0, the latest version of the popular open-source 3D creation suite, is now available for download. This release includes numerous new features and improvements, making it a powerful tool for artists, animators, and developers working in various media and disciplines.

blender.org
534 159
Summary
Show HN: Browser-based interactive 3D Three-Body problem simulator
jgchaos about 13 hours ago

Show HN: Browser-based interactive 3D Three-Body problem simulator

Features include:

  - Several preset periodic orbits: the classic Figure-8, plus newly discovered 3D solutions from Li and Liao's recent database of 10,000+ orbits (https://arxiv.org/html/2508.08568v1)
  - Full 3D camera controls (rotate/pan/zoom) with body-following mode
  - Force and velocity vector visualization
  - Timeline scrubbing to explore the full orbital period
The 3D presets are particularly interesting. Try "O₂(1.2)" or "Piano O₆(0.6)" from the Load Presets menu to see configurations where bodies weave in and out of the orbital plane. Most browser simulators I've seen have been 2D.

Built with Three.js. Open to suggestions for additional presets or features!

trisolarchaos.com
28 13
mojoe about 12 hours ago

The code and open-source tools I used to produce a science fiction anthology

Related: Think Weirder: The Year's Best SciFi Ideas - https://news.ycombinator.com/item?id=45785154 - Nov 2025 (75 comments)

compellingsciencefiction.com
90 11
Summary
virgildotcodes about 17 hours ago

Gemini 3 Pro Model Card [pdf]

storage.googleapis.com
181 311
Rebecca Heineman – from homelessness to porting Doom (2022)
birdculture about 5 hours ago

Rebecca Heineman – from homelessness to porting Doom (2022)

Related: Rebecca Heineman has died - https://news.ycombinator.com/item?id=45960368

corecursive.com
135 22
Summary
gjvc about 4 hours ago

Lucent 7 R/E 5ESS Telephone Switch Rescue (2024)

The article describes the rescue of a Lucent 5ESS telephone switching system from an abandoned building, highlighting the challenges of recovering and preserving legacy technology in a time of rapid technological change.

kev009.com
26 9
Summary
imdsm about 16 hours ago

Cloudflare Global Network experiencing issues

Cloudflare, a global content delivery network, has experienced a widespread outage affecting multiple websites and online services. The incident is under investigation by the company, which is working to restore normal operations.

cloudflarestatus.com
2,324 1,595
Summary
Tomte about 10 hours ago

I am stepping down as the CEO of Mastodon

The article discusses Eugen Rochko's decision to step down as Mastodon's lead developer and his plans for the future of the decentralized social network. It highlights the importance of ensuring Mastodon's long-term sustainability and the need for a transition to new leadership.

blog.joinmastodon.org
367 269
Summary
GitHub: Git operation failures
wilhelmklopp about 7 hours ago

GitHub: Git operation failures

GitHub's status page reports a widespread outage affecting GitHub.com and related services. The incident is under investigation, and the company is working to restore normal operations as soon as possible.

githubstatus.com
341 283
Summary
OrthoRoute – GPU-accelerated autorouting for KiCad
wanderingjew about 9 hours ago

OrthoRoute – GPU-accelerated autorouting for KiCad

The article discusses OrthoRoute, an open-source tool for computing optimal routes for orthogonal robots, which can be used in various applications, such as automated warehousing and factory automation. The tool utilizes a novel algorithm to find the shortest path for robots moving in a grid-like environment while avoiding obstacles.

bbenchoff.github.io
123 12
Summary
ingve 6 days ago

Fizz Buzz without conditionals or booleans

The article presents a unique approach to solving the classic FizzBuzz problem without using conditionals or booleans, showcasing a creative solution using JavaScript's modulo operator and array manipulation.

evanhahn.com
13 9
Summary
8organicbits 5 days ago

What I learned about creativity from a man painting on a treadmill (2024)

The article explores the act of painting, discussing its therapeutic benefits, the importance of self-expression, and how it can be a meaningful way to connect with oneself and the world around us.

quinnmaclay.com
29 4
Summary
Show HN: RowboatX – open-source Claude Code for everyday automations
segmenta about 9 hours ago

Show HN: RowboatX – open-source Claude Code for everyday automations

Claude Code is great, but it’s focused on coding. The missing piece is a native way to build and run custom background agents for non-code tasks. We built RowboatX as a CLI tool modeled after Claude Code that lets you do that. It uses the file system and unix tools to create and monitor background agents for everyday tasks, connect them to any MCP server for tools, and reason over their outputs.

Because RowboatX runs locally with shell access, the agents can install tools, execute code, and automate anything you could do in a terminal with your explicit permission. It works with any compatible LLM, including open-source ones.

Our repo is https://github.com/rowboatlabs/rowboat, and there’s a demo video here: https://youtu.be/cyPBinQzicY

For example, you can connect RowboatX to the ElevenLabs MCP server and create a background workflow that produces a NotebookLM-style podcast every day from recent AI-agent papers on arXiv. Or you can connect it to Google Calendar and Exa Search to research meeting attendees and generate briefs before each event.

You can try these with: `npx @rowboatlabs/rowboatx`

We combined three simple ideas:

1. File system as state: Each agent’s instruction, memory, logs, and data are just files on disk, grepable, diffable, and local. For instance, you can just run: grep -rl '"agent":"<agent-name>"' ~/.rowboat/runs to list every run for a particular workflow.

2. The supervisor agent: A Claude Code style agent that can create and run background agents. It predominantly uses Unix commands to monitor, update, and schedule agents. LLMs handle Unix tools better than backend APIs [1][2], so we leaned into that. It can also probe any MCP server and attach the tools to the agents.

3. Human-in-the-loop: Each background agent can emit a human_request message when needed (e.g. drafting a tricky email or installing a tool) that pauses execution and waits for input before continuing. The supervisor coordinates this.

I started my career over a decade ago building spam detection models at Twitter, spending a lot of my time in the terminal with Unix commands for data analysis [0] and Vowpal Wabbit for modeling. When Claude Code came along, it felt familiar and amazing to work with. But trying to use it beyond code always felt a bit forced. We built RowboatX to bring that same workflow to everyday tasks. It is Apache-2.0 licensed and easily extendable.

While there are many agent builders, running on the user's terminal enables unique use cases like computer and browser automation that cloud-based tools can't match. This power requires careful safety design. We implemented command-level allow/deny lists, with containerization coming next. We’ve tried to design for safety from day one, but we’d love to hear the community’s perspective on what additional safeguards or approaches you’d consider important here.

We’re excited to share RowboatX with everyone here. We’d love to hear your thoughts and welcome contributions!

[0] https://web.stanford.edu/class/cs124/kwc-unix-for-poets.pdf [1] https://arxiv.org/pdf/2405.06807 [2] https://arxiv.org/pdf/2501.10132

github.com
68 15
Summary
Bild AI (YC W25) is hiring – Make housing affordable
rooppal about 6 hours ago

Bild AI (YC W25) is hiring – Make housing affordable

Bild AI, a Y Combinator-backed startup, is seeking a Founding Engineer to join their team and work on developing cutting-edge applied AI solutions. The role involves building scalable and robust AI systems to solve real-world problems across various industries.

ycombinator.com
1 0
Summary
Solving a million-step LLM task with zero errors
Anon84 about 11 hours ago

Solving a million-step LLM task with zero errors

arxiv.org
139 45
DOE gives Microsoft partner $1B loan to restart Three Mile Island reactor
pseudolus about 2 hours ago

DOE gives Microsoft partner $1B loan to restart Three Mile Island reactor

The U.S. Department of Energy, under the Trump administration, has granted a $1 billion loan to a Microsoft partner to restart the Three Mile Island nuclear reactor, which was shut down in 2011 after a partial meltdown.

techcrunch.com
25 6
Summary
Monotype font licencing shake-down
evolve2k about 5 hours ago

Monotype font licencing shake-down

The article discusses the recent legal actions taken by major font companies against small businesses and individuals for alleged font licensing violations. It highlights the complex and often confusing nature of font licensing, and the concerns raised about the aggressive enforcement tactics used by the font industry.

insanityworks.org
108 32
Summary
nikolay 4 days ago

Better pre-commit, re-engineered in Rust

The article discusses the launch of a new preschool program, PreK J178, which aims to provide comprehensive early childhood education and support for families in the local community. The program focuses on developing children's cognitive, social, and emotional skills through a play-based curriculum and engaging activities.

prek.j178.dev
6 1
Summary
Nearly all UK drivers say headlights are too bright
YeGoblynQueenne about 14 hours ago

Nearly all UK drivers say headlights are too bright

The article discusses the ongoing protests in China against the government's strict zero-COVID policy, which have led to a rare display of public defiance. It highlights the growing public frustration and the government's attempts to quell the demonstrations through censorship and security crackdowns.

bbc.com
693 706
Summary
nomarv about 21 hours ago

Show HN: A subtly obvious e-paper room air monitor

In the cold season we tend to keep the windows closed. The air gets "stale": humidity often rises above 60 %, which can harm our wellbeing and promote mould. At the same time the CO₂ level in the air increases, which impacts our ability to concentrate.

So I built a room air monitor that stays unobtrusive as long as everything is in the green zone, but becomes deliberately noticeable once thresholds are exceeded. For my personal love of statistics I also visualise the measurements in a clear dashboard.

nicolin-dora.ch
41 10
Summary
Google boss says AI investment boom has 'elements of irrationality'
jillesvangurp about 22 hours ago

Google boss says AI investment boom has 'elements of irrationality'

The article explores the growing popularity of electric vehicles (EVs) in the UK, highlighting the increasing sales and charging infrastructure, as well as the challenges of affordability and battery production that still need to be addressed for widespread EV adoption.

bbc.com
189 364
Summary
Short Little Difficult Books
crescit_eundo about 13 hours ago

Short Little Difficult Books

The article discusses the value of reading short, difficult books, highlighting how they can provide a more rewarding intellectual experience compared to longer, more accessible works. It encourages readers to embrace the challenge of grappling with complex ideas and the subsequent sense of accomplishment.

countercraft.substack.com
153 87
Summary
Mysterious holes in the Andes may have been an ancient marketplace
gmays 7 days ago

Mysterious holes in the Andes may have been an ancient marketplace

New research suggests that the mysterious holes found in the Andes mountains may have been an ancient marketplace, where goods were traded and exchanged among different communities in the region.

sydney.edu.au
37 14
Summary
Microsoft-backed Veir is bringing superconductors to data centers
sudonanohome 5 days ago

Microsoft-backed Veir is bringing superconductors to data centers

Microsoft-backed startup Veir is developing megawatt-class superconductors to improve the efficiency and sustainability of data centers. The company aims to use its innovative superconductor technology to help data centers reduce their energy consumption and environmental impact.

techcrunch.com
10 1
Summary
Trying out Gemini 3 Pro with audio transcription and a new pelican benchmark
nabla9 about 9 hours ago

Trying out Gemini 3 Pro with audio transcription and a new pelican benchmark

The article explores the Gemini protocol, a lightweight alternative to the World Wide Web that emphasizes simplicity, minimalism, and privacy. It discusses the history, technical details, and potential future developments of the Gemini ecosystem.

simonwillison.net
127 46
Summary
Show HN: Guts – convert Golang types to TypeScript
emyrk about 10 hours ago

Show HN: Guts – convert Golang types to TypeScript

github.com
77 21