Hacker News

Latest

DJB Netstrings (1997)

2026-07-16 @ 05:33:50Points: 8Comments: 5

The lost joy of music piracy

2026-07-16 @ 04:46:21Points: 135Comments: 60

Stop saying that AI is just a tool and it only matters how it is used

2026-07-16 @ 04:31:01Points: 60Comments: 38

My Throw Decides My Aim

2026-07-16 @ 03:51:25Points: 17Comments: 6

If you want to create a button from scratch, you must first create the universe

2026-07-16 @ 03:48:43Points: 71Comments: 27

Making 768 servers look like 1

2026-07-16 @ 03:36:42Points: 45Comments: 9

1,300 Beautiful Wildlife Illustrations from the 19th Century Now Restored

2026-07-16 @ 03:12:47Points: 49Comments: 7

Open Source, Free Tier Capable Whispr Using Cloudflare AI

2026-07-16 @ 02:57:30Points: 12Comments: 7

Can LLMs Perform Deep Technical Comprehension of Computer Architecture Papers

2026-07-16 @ 02:17:31Points: 30Comments: 2

The Tokio/Rayon Trap and Why Async/Await Fails Concurrency

2026-07-16 @ 02:06:36Points: 43Comments: 32

Bluesky Trademarks ATProto

2026-07-16 @ 01:21:04Points: 75Comments: 28

Show HN: One More Letter

2026-07-15 @ 23:10:10Points: 65Comments: 43

Metal-Organic Frameworks, Chemistry's New Miracle Materials (2018)

2026-07-15 @ 23:00:31Points: 50Comments: 12

SQLite should have (Rust-style) editions

2026-07-15 @ 22:42:58Points: 221Comments: 81

LLM Networking with MikroTik

2026-07-15 @ 22:23:27Points: 74Comments: 33

Governments, companies, nonprofits should invest in free, open source AI [pdf]

2026-07-15 @ 21:16:36Points: 158Comments: 55

Show HN: Firefox in WebAssembly

2026-07-15 @ 21:00:17Points: 182Comments: 94

Here are a few things you might find interesting:

- This is fully end to end encrypted! We use the WISP protocol for TCP-over-websockets.

- There is a novel WASM->JS JIT for experimental site speedup

- This port cost over 25k in opus/fable tokens for debugging and JIT research

This was just a fun experiment to push the boundaries of WebAssembly. For a more usable "browser in browser" experience, we also built https://github.com/HeyPuter/browser.js that eats a bit less RAM.

Grok Build is open source

2026-07-15 @ 20:24:58Points: 391Comments: 417

Inkling: Our Open-Weights Model

2026-07-15 @ 18:12:45Points: 896Comments: 221

Launch HN: Coasty (YC S26) – An API for computer-use agents

2026-07-15 @ 15:51:20Points: 32Comments: 7

https://coasty.ai/computer-use). We’re building computer-use agents that can complete workflows inside legacy desktop software and web applications without usable APIs.

Developers send Coasty a natural-language task either through our consumer app or through our API, select a machine or browser environment, and any relevant credentials or files. The agent then operates the interface through screenshots, mouse, and keyboard input, verifies the result, and returns a structured run record with screenshots, actions, outputs, and errors.

Here is a raw demo of an agent completing a workflow in a legacy application(It’s a mockup): https://drive.google.com/file/d/1ZghU_3vsAYhHVz1bsvE0pkvZYk7...

A lot of important software is still difficult to automate. Healthcare teams submit prior authorizations through payer portals, accounting teams enter data into desktop applications, and operations teams move information between internal systems, spreadsheets, and remote desktops. Many of these applications have no API, incomplete APIs, or integrations that take months to build.

The usual alternative is RPA, record a sequence of clicks and replay it. That works when the interface and workflow are predictable, but it often breaks when a button moves, a pop-up appears, a page loads slowly, or the application enters an unexpected state.

Coasty takes a different approach. The agent observes the current screen, decides what action to take, executes it, and then observes the resulting state before continuing. It does not require DOM access, an accessibility tree, selectors, or an application-specific integration, so the same API can operate browsers, remote desktops, and older Windows applications.

A simplified request looks roughly like this:

  run = coasty.runs.create(
      environment="vm_123",
      task="""
      Open the patient record in the billing portal.
      Enter the attached authorization data.
      Do not submit if the member ID or procedure code does not match.
      Return the confirmation number.
      """,
      files=["authorization.pdf"],
      approval_required=["final_submission"]
  )
The response includes the final status, extracted outputs, a replay URL, and a timestamped event log:

  {
    "status": "completed",
    "output": {
      "confirmation_number": "PA-184392"
    },
    "replay_url": "...",
    "events": [
      {
        "type": "verification",
        "field": "member_id",
        "result": "matched"
      }
    ]
  }
The API can also pause a run for human approval, retry from a checkpoint, or return control to the developer when it encounters a condition the workflow did not anticipate.

We started working on this last summer, because we saw that models were getting better at vision but kept seeing a gap between computer-use demos and the reliability needed for production workflows. Getting an agent to complete a task once is fairly straightforward. Getting it to repeat that task, recover from unexpected states, avoid silently entering incorrect data, and produce evidence of what it did is much harder.

We built several layers around the underlying computer-use model. The system tracks the expected state of the workflow, detects when the application has diverged from that state, and can re-plan instead of continuing blindly. Developers can define invariants such as “the patient name must match the source document” or “never submit without approval,” and the agent checks those conditions during the run.

Each run happens in an isolated virtual machine. We expose APIs for provisioning environments, uploading files, starting tasks, streaming events, inserting human approvals, and retrieving the full replay and audit trail. Environments can be kept alive across runs when the application has a long login flow or persistent local state.

One problem we are still working through is the tradeoff between speed and reliability. The agent can move faster by taking fewer observations and verification steps, but that becomes risky in workflows involving patient records, payments, or regulatory filings. We currently bias toward slower execution with more checks and let developers configure approval points and verification policies.

We are initially working with healthcare operations teams because their workflows combine many of the hardest conditions: payer portals, EHRs, PDFs, spreadsheets, remote desktops, and actions where quiet mistakes are expensive. We also expose the same infrastructure through the developer API for teams building their own agents and vertical automation products.

We currently charge based on agent runtime and workflow volume, with separate pricing for dedicated environments and enterprise deployments.

We’d especially appreciate feedback from people who have built and/or used browser agents, RPA systems, desktop automation, or agent infrastructure. We’re curious which parts of the API you would want direct control over, where you would prefer higher-level abstractions, and which failure modes have been hardest in your own automation systems.

If you've hit weird failure modes automating software like this, we want to hear about them. We'll be here all day answering questions and taking notes!

Running Gemma 4 26B at 5 tokens/sec on a 13-year-old Xeon with no GPU

2026-07-15 @ 15:34:05Points: 274Comments: 178

Stripe and Advent have made a joint offer to acquire PayPal – sources

2026-07-15 @ 03:32:45Points: 419Comments: 229

High-Bandwidth Flash offers efficient storage for model weights

2026-07-15 @ 02:04:12Points: 31Comments: 10

I also filed the corners off my MacBook

2026-07-14 @ 19:25:41Points: 130Comments: 34

Job queues are deceptively tricky

2026-07-14 @ 08:27:56Points: 64Comments: 16

The Last Picture Show: A Conversation with George Lucas

2026-07-14 @ 06:35:40Points: 15Comments: 2

Command Line Interface Guidelines

2026-07-12 @ 13:28:31Points: 109Comments: 24

Rebuilding My Homelab with Compose, Ruby, IPv6, and No Kubernetes

2026-07-11 @ 13:47:47Points: 12Comments: 7

G# – A modern .NET language with Go, Kotlin, and Swift ergonomics

2026-07-11 @ 13:04:46Points: 82Comments: 44

CatchCat – Pokémon Go for Cats, IRL

2026-07-10 @ 17:15:29Points: 40Comments: 8

Archives

2026

2025

2024

2023

2022