frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Adam Tooze on AI Regulation [video]

https://www.youtube.com/watch?v=EHU8vXCAsyo
1•verdverm•1m ago•0 comments

Sea lion found beheaded at San Francisco's Ocean Beach, prompting investigation

https://abc7news.com/post/sea-lion-found-beheaded-san-franciscos-ocean-beach-prompting-investigat...
3•mikhael•2m ago•0 comments

Time To Go – an alarm that shows how long your commute takes

https://apps.apple.com/us/app/time-to-go-departure-alarm/id6807446177
1•heejundid•3m ago•0 comments

Cackle Pop Roar Reptiles have a lot to say

https://knowablemagazine.org/content/article/living-world/2026/the-surprising-sounds-made-by-rept...
1•knowablemag•6m ago•0 comments

GLM-5.3-FlashX: Delivering inference speeds of 200 tokens/s

https://docs.z.ai/guides/vlm/glm-5.3-flash
2•theanonymousone•6m ago•0 comments

Reinventing issue tracking: Local-first and Git-native

https://blog.manganin.dev/blog/reinventing-issue-tracking/
1•birdculture•7m ago•0 comments

There's no point at which turning your brain off will work

https://danluu.com/brain-off/
3•robin_reala•7m ago•0 comments

Palantir, "Effective Software" and the Quest to Make Progress Programmable

https://arenamag.com/articles/forward-deployed
1•lefttailguy•8m ago•1 comments

Chinese AI Radicalizes

https://www.chinatalk.media/p/how-anthropic-became-chinas-goliath
1•speckx•8m ago•0 comments

The Download: AI's extinction risk and bioweapons threat

https://www.technologyreview.com/2026/09/18/1142577/the-download-ai-extinction-threat-bioweapons/
1•joozio•8m ago•0 comments

A Pattern for Portable Agent Configuration

https://cameronboehmer.com/p/portable-agent-configuration/
2•pkghost•10m ago•0 comments

Parents are interfering with teens' first jobs. Employers say it can backfire

https://www.cnbc.com/2026/09/18/parents-more-involved-in-kids-work-lives.html
2•mooreds•11m ago•0 comments

Tickrs: Realtime stock ticker data in your terminal

https://github.com/tarkah/tickrs
1•devrob•12m ago•0 comments

Code of Artificial Intelligence Offenses

https://syntheticjudiciary.com/
1•clipclopflop•12m ago•0 comments

Bringing Correctly Rounded Math to Production with LLVM-Libc

https://devblogs.microsoft.com/cppblog/bringing-correctly-rounded-math-to-production-with-llvm-libc/
1•kg•13m ago•0 comments

Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug

https://donjon.ledger.com/blog/rp2350-secure-debug-laser-fault-injection/
5•synack•16m ago•0 comments

Show HN: A Prometheus exporter for Sagemcom F3896 cable modems

https://github.com/colinedwardwood/sagemcom-docsis-exporter
2•b1shp•16m ago•0 comments

There's a startup sunsetting startups – business is booming

https://thehustle.co/newsletters/18-09-2026
2•DamnInteresting•16m ago•1 comments

Bespoke Nimble: open data, open model, open recipe for an open Jev

https://twitter.com/madiator/status/2100990591215783946
3•madiator•19m ago•0 comments

Show HN: ThumbGlance – Browser-local YouTube thumbnail preview and resize

https://thumbglance.com/
1•Austin49•19m ago•0 comments

Share an LLM endpoint over HTTPS while TLS still terminates on your machine

https://swobu.com/blog/https-routes/
1•metrofun•21m ago•0 comments

Wikivibes – Write the truth you wished existed

https://wikivibes.org/
3•tghfshdfgh•23m ago•0 comments

Let your coding agents exchange nofollow backlinks

https://getlinkbunny.com/
2•todsacerdoti•24m ago•0 comments

Dan Alistarh's Website (IST Austria Distributed Algorithms and Systems Lab)

https://daslab.ista.ac.at/
2•peter_d_sherman•24m ago•1 comments

Urban Bird Migration Hotspots: Study Reveals Role of Cities

https://www.audubon.org/magazine/nearly-half-of-us-bird-migration-hotspots-are-cities-heres-why-m...
2•speckx•26m ago•0 comments

Show HN: Jev helps you to not run malicous code

https://github.com/luantak/is-malicious
2•lu4p•26m ago•0 comments

Anti-Clockwise

https://notoneoffbritishisms.com/2026/09/18/anti-clockwise/
3•jjgreen•27m ago•0 comments

My Thoughts on AI and LLMs

3•leonardovb•27m ago•1 comments

Why Raccoons Have Been So Successful in Taking over Toronto

https://thewalrus.ca/raccoons-toronto/
2•bookofjoe•29m ago•0 comments

More than 900 killed in Gaza this year despite ceasefire

https://www.bbc.com/news/articles/c7708dy33pdo
7•Markoff•30m ago•1 comments
Open in hackernews

We made Playwright 2x faster and 80% more token efficient

https://github.com/browserbase/stagehand
10•wittydeveloper•45m ago

Comments

wittydeveloper•45m ago
We built Stagehand 2 years ago (24k stars and 4M monthly npm downloads) and recently fixed its biggest flaw: round-trip latency.

Every action performed requires a round trip between your script and the browser (short when running locally but increased when running in the cloud). We also saw multiple posts complaining about the eager token appetite of Playwright MCP.

For this reason, we rebuilt Stagehand from the ground up and shipped v4, where Stagehand controls the browser from an extension automatically loaded upon your browser startup.

Stagehand v4 comes with batch command support, dedicated token-efficient methods `act()` and `extract()`, and a brand new architecture making it 2x faster than Playwright and 80% more token efficient.

You can see for yourself by looking at our benchmarks, comparing its performance across a dozen models (frontier and open weights) and tools (Codex, Claude Code, and more): https://www.stagehand.dev/evals

Ask me anything!

cl685•24m ago
what did you lose compared to CDP (e.g. cross-origin iframes, downloads running in envs where you can't load extensions)?
wittydeveloper•22m ago
It still uses CDP but communicates from an extension within the browser instead of a script running in a separate runtime or, worse, in a separate region.
cl685•22m ago
lowk why not just do astra computer use
smpandya•5m ago
I tried this myself - my conclusion was the overhead of parsing a screenshot, generating an action, and being limited to headful mode is much less efficient than reading accessibility trees & generating CDP commands.

basically, browser automation is a closer-to-the-metal abstraction than computer use, allows more flexibility, and ends up being much cheaper at scale!

vishalanton•4m ago
Astra with computer use seems to burn a ton of tokens though. Stagehand seems more token efficient.
alyssamaru•18m ago
How much does the harness really matter for evals?
wittydeveloper•10m ago
A lot, especially for performance. That's why we built our own benchmarks that account for both the model and the harness. For example, with Claude Opus 5, the accuracy gap can be up to 3% and performance up to 200ms, depending on whether you're using Deep Agents, Eve, or Fx.

More details here: https://www.stagehand.dev/evals

vishalanton•16m ago
So for an enterprise with a 1,000 test Playwright suite, does this basically mean ~2x faster CI times? That would be huge.
dot_louis•4m ago
Do I need to pay for Browserbase to use this?